url stream is freezing

GeorgeTF

New Member
Hello im new to the forum and i want to ask something.
I have a url https://ert-live-bcbs15228.siliconweb.com/media/ert_1/ert_1.m3u8 (its a greek live stream site) and im trying to stream to facebook live but i have problem from my windows 10 pc.
when i add media search (this url) on obs after 3 sec it freezes and cannot start the stream.
default setting for everything.
BUT when im doing the same job from my mac it works perfectly.again default settings.i can stream to fb without any problem.
ofcourse i use stream key from fb.
can you tell me what i can do to stream from windows pc?
Thanks

windows 10 64bit
specs:
i5 9600k
gpu gtx 1560
16gb ram
ssd disk
 

GeorgeTF

New Member
and when im using files from my pc everything is perfect.
when i use another url from another site everything is perfect.
i have problem only with this url and only from windows pc.
 

GeorgeTF

New Member
i have a page on fb and im taking this url to stream live.
its a greek channel with news and i want to stream it to my fb account
 

GeorgeTF

New Member
guys i made it.
im using ffmpeg and the code is


ffmpeg -re -i https://ert-live-bcbs15228.siliconweb.com/media/ert_1/ert_1.m3u8 -f lavfi -re -i sine=frequency=1000:sample_rate=44100 -pix_fmt yuv420p -c:v libx264 -b:v 1000k -g 30 -keyint_min 120 -profile:v baseline -preset veryfast -c:a aac -b:a 96k -f flv "rtmps://live-api-s.facebook.com:443/rtmp

if you have any problem you can use this.
so its ok now.
Mr TryHD thanks for the info.you are great
 

TryHD

Member
I wouldn't reencode and lower the quality even more. This would be better.
Code:
ffmpeg -re -i https://ert-live-bcbs15228.siliconweb.com/media/ert_1/ert_1.m3u8 -c copy -f flv -bsf:a aac_adtstoasc rtmps://live-api-s.facebook.com:443/rtmp
 

GeorgeTF

New Member
I wouldn't reencode and lower the quality even more. This would be better.
Code:
ffmpeg -re -i https://ert-live-bcbs15228.siliconweb.com/media/ert_1/ert_1.m3u8 -c copy -f flv -bsf:a aac_adtstoasc rtmps://live-api-s.facebook.com:443/rtmp
thanks again TryHD
 
Top