Page 1 of 1

How to stream combining audio and video streams?

Posted: 25 Jun 2023 19:46
by calande
Hello,

I'd like to open this stream in VLC: http://foofootv.com/tv/m3u8/fr/?id=lci

I inspected the web page in the developer tools of the web browser, and found this stream in index_1.m3u8: https://live-lci-hls.cdn-0.diff.tf1.fr/ ... dex_1.m3u8

Problem is: When I open it in VLC, it looks like there's no audio stream (although there is audio in the web page player).

I searched for another stream in the page and found this one in index_6_0.m3u8:
https://live-lci-hls.cdn-0.diff.tf1.fr/ ... x_6_0.m3u8

Now, this stream only has audio, but no video... Oddly, there are two separate streams (audio and video!). How can I open both at the same time, without having out-of-sync issue? Is it possible to script it in a simple playlist?
Thank you.

Re: How to stream combining audio and video streams?

Posted: 29 Jun 2023 17:13
by unidan
You could try to add the second one as "input slave".

Open VLC -> ctrl + N (On windows and linux) -> paste the video URL -> click on the show more options -> enable the play another media synchronously checkbox -> paste the audio stream URL for extra-media -> hit play

It might or might not work depending on the streams.

Re: How to stream combining audio and video streams?

Posted: 29 Jun 2023 20:52
by calande
Thank you.