Skip to content

Commit 6b81026

Browse files
add contributors to credits section
1 parent ee1646e commit 6b81026

2 files changed

Lines changed: 9 additions & 7 deletions

File tree

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,14 @@ Generate representations manually:
7878
import ffmpeg_streaming
7979
from ffmpeg_streaming import Representation
8080

81-
r_144p = Representation(width=256, height=144, kilo_bitrate=95)
82-
r_240p = Representation(width=426, height=240, kilo_bitrate=150)
83-
r_360p = Representation(width=640, height=360, kilo_bitrate=276)
84-
r_480p = Representation(width=854, height=480, kilo_bitrate=750)
85-
r_720p = Representation(width=1280, height=720, kilo_bitrate=2048)
81+
r_144p = Representation(width=256, height=144, kilo_bitrate=95)
82+
r_240p = Representation(width=426, height=240, kilo_bitrate=150)
83+
r_360p = Representation(width=640, height=360, kilo_bitrate=276)
84+
r_480p = Representation(width=854, height=480, kilo_bitrate=750)
85+
r_720p = Representation(width=1280, height=720, kilo_bitrate=2048)
8686
r_1080p = Representation(width=1920, height=1080, kilo_bitrate=4096)
87-
r_2k = Representation(width=2560, height=1440, kilo_bitrate=6144)
88-
r_4k = Representation(width=3840, height=2160, kilo_bitrate=17408)
87+
r_2k = Representation(width=2560, height=1440, kilo_bitrate=6144)
88+
r_4k = Representation(width=3840, height=2160, kilo_bitrate=17408)
8989

9090
(
9191
ffmpeg_streaming
@@ -301,6 +301,7 @@ Please **[file an issue](https://github.com/aminyazdanpanah/python-ffmpeg-video-
301301

302302
## Credits
303303
- **[Amin Yazdanpanah](https://www.aminyazdanpanah.com/?u=github.com/aminyazdanpanah/python-ffmpeg-video-streaming)**
304+
- **[All Contributors](https://github.com/aminyazdanpanah/python-ffmpeg-video-streaming/graphs/contributors)**
304305

305306
## License
306307
The MIT License (MIT). Please see **[License File](https://github.com/aminyazdanpanah/python-ffmpeg-video-streaming/blob/master/LICENSE)** for more information.

examples/hls/hls_encryption.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ def per_to_time_left(percentage):
3838
def transcode_progress(per, ffmpeg):
3939
# You can update a field in your database or can log it to a file
4040
# You can also create a socket connection and show a progress bar to users
41+
logging.debug(ffmpeg)
4142
sys.stdout.write("\rTranscoding...(%s%%) %s [%s%s]" % (per, per_to_time_left(per), '#' * per, '-' * (100 - per)))
4243
sys.stdout.flush()
4344

0 commit comments

Comments
 (0)