-
Notifications
You must be signed in to change notification settings - Fork 239
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #70: Document streamable file types
- Loading branch information
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,9 +21,11 @@ Contents | |
installation | ||
readme | ||
usage | ||
troubleshooting | ||
contributing | ||
authors | ||
history | ||
|
||
|
||
.. | ||
_ modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Troubleshooting | ||
=============== | ||
|
||
Videos are not streameable in Telegram app | ||
------------------------------------------- | ||
Only mp4 videos can be played on Telegram without downloading them first. To stream your video in Telegram you must | ||
convert it before uploading it. For example you can use ffmpeg to convert your video:: | ||
|
||
$ ffmpeg -i input.mov -preset slow -codec:a libfdk_aac -b:a 128k \ | ||
-codec:v libx264 -pix_fmt yuv420p -b:v 2500k -minrate 1500k \ | ||
-maxrate 4000k -bufsize 5000k -vf scale=-1:720 output.mp4 | ||
|