Audio/video stream recording forums
|
Attention Visitor: |
You may have to register or log in before you can post:
|
|
|
Thread Tools | Display Modes |
#1
|
|||
|
|||
re-streaming source - almost give upAfter spending more than week with testing almost give up.
Cannot find proper command for ffmpeg to restream following stream: Code:
http://inea.live.e238-po.insyscd.net/travelchannel.smil/chunklist_b2400000.m3u8 Code:
ffmpeg -re -headers 'User-Agent: bar'$'\r\n' -i http://inea.live.e238-po.insyscd.net/travelchannel.smil/chunklist_b2400000.m3u8 -acodec aac -strict -2 -vcodec libx264 -r 30 -video_size 1024x578 -b:v 2000k -b:a 128K -preset ultrafast -bufsize 3968k -f flv rtmp://livexxxxxxxx Any help, much appreciate, Koze |
#2
|
|||
|
|||
Re: re-streaming source - almost give upStream via livestreamer:
Code:
livestreamer "hls://http://inea.live.e238-po.insyscd.net/travelchannel.smil/chunklist_b2400000.m3u8" best Code:
ffmpeg -i "http://inea.live.e238-po.insyscd.net/travelchannel.smil/chunklist_b2400000.m3u8" -c copy travel.ts |
#3
|
|||
|
|||
Re: re-streaming source - almost give upThank you so much for your quick reply.
I forgot to mention that I am using linux (Debian7). Could you kindly elaborate your suggestions please. Am I able to re-steam this by using livestreamer? Thanks again, K |
#4
|
|||
|
|||
Re: re-streaming source - almost give upQuote:
http://stream-recorder.com/forum/liv...er-t19466.html |
#5
|
|||
|
|||
Re: re-streaming source - almost give upAlso, have a look at this for ffmpeg to stream via vlc. You should only need to change a couple of small things (like the m3u8 and the path to the player).
Code:
ffmpeg -i "http://server1/ch-01.m3u8" -q:v 0 -bsf h264_mp4toannexb -f mpegts - | "/Applications/VLC.app/Contents/MacOS/VLC" - && exit |
#6
|
|||
|
|||
Re: re-streaming source - almost give upI am trying to stream above link within livestreamer with following command:
Code:
root@ghjo:~# livestreamer --yes-run-as-root "hls://http://inea.live.e238-po.insyscd.net/travelchannel.smil/chunklist_b2400000.m3u8" best --player-external-http-port 4819 Code:
ffmpeg -re -i "http://localhost:4819/" -acodec aac -strict -2 -vcodec copy -b:v 2000k -b:a 128K -preset ultrafast -bufsize 3968k -f flv rtmp://xxxxxxxxxxxxxxxx Quote:
Thank you so much for your help k |
#7
|
|||
|
|||
Re: re-streaming source - almost give upLivestreamer is not a player--it streams to your player of choice (or downloads the file if you prefer it write to disc). I assumed vlc was your player of choice, but if not, then put the path to your player of choice in that ffmpeg command above.
If you are trying to download and save, rather than stream, see previous post re: capture using ffmpeg (or the more involved livestreamer equivalent). I am surprised to hear that you don't have vlc, honestly. |
#8
|
|||
|
|||
Re: re-streaming source - almost give upQuote:
I would like to re-stream rather than download and save. I want to achieve this on my Linux server. I do have VLC and using every day on my local windows computer. I am still confuse, so do I need to install VLC on my Debian? Is any way you change my commands example to be working in my case? Thank you in advance, K |
Tags: re stream |
Thread Tools | |
Display Modes | |
|
|