 Re: help to know about ffmpeg /ffmplay streaming
You can grab the url you need with Firefox and its console window. Take for example ABC Word News videos. I can use the console (crtl+shift+k) to get the m3u8 address and then i can pass that to ffmpeg to grab the video in question,
In a cmd prompt for ffmpeg:
ffmpeg -i "m3u8 url goes here" -c copy file.mkv
|