Any idea if ITV can be restreamed with ffmpeg. Currently I get error if:
Code:
livestreamer -O "http://www.itv.com/hub/itv" best 2>NUL | ffmpeg -re -i - -sn -vcodec copy -acodec copy -f flv "rtmp://127.0.0.1/MonaClients/itv"
pipe:: Invalid data found when processing input
Thanks for any help
sebus
edit:
This works!
Code:
livestreamer "http://www.itv.com/hub/itv" best --player-external-http-port 59411
and then I can
ffmpeg -re -i http://127.0.0.1:59411 -sn -vcodec copy -acodec copy -f flv "rtmp://127.0.0.1/MonaClients/itv"