Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Timer for streaming #19166
Timer for streaming #19166
Comments
|
I don't want to cut a video. |
|
Can you provide an example? Right now I can only guess your requirement. Assuming you have
The above command downloads the first t minutes of the video Does it work for you? |
|
This for windows ? |
|
@gioreva
gioreva <notifications@github.com> writes:
This for windows ?
No, it is not. But it can be easily changed to work for windows.
First, download youtube-dl
and ffmpeg <https://www.ffmpeg.org/download.html>.
Your example download full video, then ffmpeg cut 30 mins
I need to record on the tv, streaming is unlimitated time.
I want to recorder documentari, 30/50 minutes, from continus channel.
youtube-dl -o ufo.avi
Then run the following command:
youtube-dl.exe -o - -f best "http://tv.net:2300/user/password/channel" | ffmpeg.exe -i - -ss 0 -t 30:00 ufo.mkv
Finally, the file can be played by vlc <https://www.videolan.org/vlc/>.
… —
You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or mute the thread.
|
Just adding to the answer... Piping the output into A faster approach would be |
How can I record only a limited time, a streaming ?
30 minuts and stop.