View Single Post
  #136  
Old 07-13-2015, 10:57 AM
bigalow bigalow is offline
Member
 
Join Date: Jan 2015
Posts: 41
bigalow is on a distinguished road
Default

Re: How to download stream from Yahoo Screen?


yahoo loops their videos. you can use ffmpeg to trim (e.g. -ss or -to or -t) the original file down to the whatever size or length you want.

example:
ffmpeg -i originalfilename.ts -acodec copy -vcodec copy -ss 00:01:00 -to 02:00:00 newfilename.ts

-ss trim to start time
-t option specifies a duration - not an end time
-to in order to end at a specified time
Reply With Quote