talklib 3.5.2__tar.gz → 3.5.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {talklib-3.5.2/src/talklib.egg-info → talklib-3.5.3}/PKG-INFO +13 -2
- {talklib-3.5.2 → talklib-3.5.3}/README.md +12 -1
- {talklib-3.5.2 → talklib-3.5.3}/pyproject.toml +1 -1
- {talklib-3.5.2 → talklib-3.5.3/src/talklib.egg-info}/PKG-INFO +13 -2
- {talklib-3.5.2 → talklib-3.5.3}/LICENSE.txt +0 -0
- {talklib-3.5.2 → talklib-3.5.3}/requirements.txt +0 -0
- {talklib-3.5.2 → talklib-3.5.3}/setup.cfg +0 -0
- {talklib-3.5.2 → talklib-3.5.3}/src/talklib/__init__.py +0 -0
- {talklib-3.5.2 → talklib-3.5.3}/src/talklib/cli.py +0 -0
- {talklib-3.5.2 → talklib-3.5.3}/src/talklib/ev.py +0 -0
- {talklib-3.5.2 → talklib-3.5.3}/src/talklib/ffmpeg.py +0 -0
- {talklib-3.5.2 → talklib-3.5.3}/src/talklib/notify.py +0 -0
- {talklib-3.5.2 → talklib-3.5.3}/src/talklib/pod.py +0 -0
- {talklib-3.5.2 → talklib-3.5.3}/src/talklib/show.py +0 -0
- {talklib-3.5.2 → talklib-3.5.3}/src/talklib/utils.py +0 -0
- {talklib-3.5.2 → talklib-3.5.3}/src/talklib.egg-info/SOURCES.txt +0 -0
- {talklib-3.5.2 → talklib-3.5.3}/src/talklib.egg-info/dependency_links.txt +0 -0
- {talklib-3.5.2 → talklib-3.5.3}/src/talklib.egg-info/entry_points.txt +0 -0
- {talklib-3.5.2 → talklib-3.5.3}/src/talklib.egg-info/requires.txt +0 -0
- {talklib-3.5.2 → talklib-3.5.3}/src/talklib.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: talklib
|
|
3
|
-
Version: 3.5.
|
|
3
|
+
Version: 3.5.3
|
|
4
4
|
Summary: A package to automate processing of shows/segments airing on the TL
|
|
5
5
|
Author-email: Ben Weddle <ben.weddle@gmail.com>
|
|
6
6
|
Maintainer-email: Ben Weddle <ben.weddle@gmail.com>
|
|
@@ -116,12 +116,23 @@ Use Python 3.10 or higher.
|
|
|
116
116
|
Make sure to select "add to PATH" during installation.
|
|
117
117
|
|
|
118
118
|
### -[FFmpeg](https://www.ffmpeg.org/download.html#build-windows)
|
|
119
|
-
You need both FFmpeg & FFprobe installed on the PC and added to the PATH
|
|
119
|
+
You need both FFmpeg & FFprobe installed on the PC and added to the PATH.
|
|
120
120
|
|
|
121
121
|
To repeat, **this package will not work without FFmpeg and FFprobe**.
|
|
122
122
|
|
|
123
123
|
FFmpeg and FFprobe should be two separate binaries.
|
|
124
124
|
|
|
125
|
+
The easiest way to install FFmpeg (and FFprobe) on Windows is with WinGet:
|
|
126
|
+
````bash
|
|
127
|
+
winget install Gyan.FFmpeg
|
|
128
|
+
````
|
|
129
|
+
|
|
130
|
+
This should install both FFmpeg & FFprobe. After WinGet completes installation, test to ensure FFmpeg is installed:
|
|
131
|
+
````bash
|
|
132
|
+
ffmpeg -version
|
|
133
|
+
````
|
|
134
|
+
You should see some output from FFmpeg. If you see an error, it was not installed correctly.
|
|
135
|
+
|
|
125
136
|
### -[Twilio](https://www.twilio.com/)
|
|
126
137
|
Twilio is used for SMS and phone call notifications.
|
|
127
138
|
|
|
@@ -32,12 +32,23 @@ Use Python 3.10 or higher.
|
|
|
32
32
|
Make sure to select "add to PATH" during installation.
|
|
33
33
|
|
|
34
34
|
### -[FFmpeg](https://www.ffmpeg.org/download.html#build-windows)
|
|
35
|
-
You need both FFmpeg & FFprobe installed on the PC and added to the PATH
|
|
35
|
+
You need both FFmpeg & FFprobe installed on the PC and added to the PATH.
|
|
36
36
|
|
|
37
37
|
To repeat, **this package will not work without FFmpeg and FFprobe**.
|
|
38
38
|
|
|
39
39
|
FFmpeg and FFprobe should be two separate binaries.
|
|
40
40
|
|
|
41
|
+
The easiest way to install FFmpeg (and FFprobe) on Windows is with WinGet:
|
|
42
|
+
````bash
|
|
43
|
+
winget install Gyan.FFmpeg
|
|
44
|
+
````
|
|
45
|
+
|
|
46
|
+
This should install both FFmpeg & FFprobe. After WinGet completes installation, test to ensure FFmpeg is installed:
|
|
47
|
+
````bash
|
|
48
|
+
ffmpeg -version
|
|
49
|
+
````
|
|
50
|
+
You should see some output from FFmpeg. If you see an error, it was not installed correctly.
|
|
51
|
+
|
|
41
52
|
### -[Twilio](https://www.twilio.com/)
|
|
42
53
|
Twilio is used for SMS and phone call notifications.
|
|
43
54
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: talklib
|
|
3
|
-
Version: 3.5.
|
|
3
|
+
Version: 3.5.3
|
|
4
4
|
Summary: A package to automate processing of shows/segments airing on the TL
|
|
5
5
|
Author-email: Ben Weddle <ben.weddle@gmail.com>
|
|
6
6
|
Maintainer-email: Ben Weddle <ben.weddle@gmail.com>
|
|
@@ -116,12 +116,23 @@ Use Python 3.10 or higher.
|
|
|
116
116
|
Make sure to select "add to PATH" during installation.
|
|
117
117
|
|
|
118
118
|
### -[FFmpeg](https://www.ffmpeg.org/download.html#build-windows)
|
|
119
|
-
You need both FFmpeg & FFprobe installed on the PC and added to the PATH
|
|
119
|
+
You need both FFmpeg & FFprobe installed on the PC and added to the PATH.
|
|
120
120
|
|
|
121
121
|
To repeat, **this package will not work without FFmpeg and FFprobe**.
|
|
122
122
|
|
|
123
123
|
FFmpeg and FFprobe should be two separate binaries.
|
|
124
124
|
|
|
125
|
+
The easiest way to install FFmpeg (and FFprobe) on Windows is with WinGet:
|
|
126
|
+
````bash
|
|
127
|
+
winget install Gyan.FFmpeg
|
|
128
|
+
````
|
|
129
|
+
|
|
130
|
+
This should install both FFmpeg & FFprobe. After WinGet completes installation, test to ensure FFmpeg is installed:
|
|
131
|
+
````bash
|
|
132
|
+
ffmpeg -version
|
|
133
|
+
````
|
|
134
|
+
You should see some output from FFmpeg. If you see an error, it was not installed correctly.
|
|
135
|
+
|
|
125
136
|
### -[Twilio](https://www.twilio.com/)
|
|
126
137
|
Twilio is used for SMS and phone call notifications.
|
|
127
138
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|