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.
The following command used to work for downloading a portion of a youtube video....
ffmpeg -i $(youtube-dl -f 22 --get-url https://www.youtube.com/watch?v=ZbZSe6N_BXs)
-ss 00:00:10 -t 00:00:30 -c:v copy -c:a copy
happy.mp4
Now with latest youtube-dl it errors with the following:
-ss: No such file or directory
Have checked to make sure there are no whitespaces,and such in the command.
Any ideas?
Thank You.