Search found 67 matches

Go to advanced search

by Jo2003
25 Jan 2019 11:24
Forum: Development around libVLC
Topic: libVLC sends DASH get_url request twice
Replies: 9
Views: 596

Re: libVLC sends DASH get_url request twice

Hi, you made the fix in 3.x branch or in 4.x branch?

Thanks!
by Jo2003
24 Jan 2019 08:43
Forum: Development around libVLC
Topic: libVLC sends DASH get_url request twice
Replies: 9
Views: 596

Re: libVLC sends DASH get_url request twice

Thank you very much! I'll test it and report the results to you.

Best regards,
Jörg
by Jo2003
23 Jan 2019 11:13
Forum: Development around libVLC
Topic: libVLC sends DASH get_url request twice
Replies: 9
Views: 596

Re: libVLC sends DASH get_url request twice

Thanks for your answer! Sounds logical. Nevertheless the question is why VLC uses the first answer (session key) for subsequent calls and not the second one. The second call invalidates the first session key. If VLC would use the last received answer for subsequent calls all would be well. Thanks, J...
by Jo2003
16 Jan 2019 09:14
Forum: Development around libVLC
Topic: libVLC sends DASH get_url request twice
Replies: 9
Views: 596

Re: libVLC sends DASH get_url request twice

Congratulations to 3 billion downloads!

Can I submit some more information so someone would have a look? How can I help?

Thanks in advance!
by Jo2003
04 Jan 2019 14:21
Forum: Development around libVLC
Topic: libVLC sends DASH get_url request twice
Replies: 9
Views: 596

libVLC sends DASH get_url request twice

Hello, Happy New Year! I have a problem when playing back some DASH video from an IPTV provider. It looks like the request to the stream description (XML) is sent twice while first answer is used to afterwards request stream parts. But the second request already invalidates the first response. Could...
by Jo2003
06 Nov 2018 14:49
Forum: Development around libVLC
Topic: DASH playback VLC vs libVLC
Replies: 3
Views: 900

Re: DASH playback VLC vs libVLC

I found the problem. I gave mrl option :run-time=3600 to the media item. With this option player stopped about one second after it has started the stream. When reading the help this options value should represent seconds. Without this option all is well.
by Jo2003
05 Nov 2018 11:43
Forum: Development around libVLC
Topic: DASH playback VLC vs libVLC
Replies: 3
Views: 900

DASH playback VLC vs libVLC

Hello, I write an IPTV player using libVLC (VLC 3) for playing the video. This works fine. Now the IPTV provider supports DASH and I try to play the stream through libVLC. Playing this stream with VLC directly works well. Doing so using libVLC the video stops after about 1 second. Status goes into S...
by Jo2003
23 Jul 2018 07:02
Forum: VLC media player for macOS Troubleshooting
Topic: Build System to build VLC 3.0.x for OSX >= 10.7
Replies: 2
Views: 553

Re: Build System to build VLC 3.0.x for OSX >= 10.7

Thank you very much for your help. I had some serious issues with the "latest and greatest" Xcode ;) . In fact I needed to manually re-install the included Xcode resource packages. After that it worked.

Best regards,
Jörg
by Jo2003
20 Jul 2018 13:23
Forum: VLC media player for macOS Troubleshooting
Topic: Build System to build VLC 3.0.x for OSX >= 10.7
Replies: 2
Views: 553

Build System to build VLC 3.0.x for OSX >= 10.7

Hi there! I try to build the VLC player 3.0.x on Mac OSX. I've read the wiki https://wiki.videolan.org/OSXCompile/. Something always goes wrong ... but as told in the wiki: Building the contribs at my own is no easy job. I want to build it as close as possible as it was the official build (means the...
by Jo2003
13 Apr 2018 10:43
Forum: Development around libVLC
Topic: Set preferred resolution for HLS.
Replies: 5
Views: 2974

Re: Set preferred resolution for HLS.

--adaptive-logic helped! Thank you very much!
by Jo2003
19 Mar 2018 14:03
Forum: Development around libVLC
Topic: Set preferred resolution for HLS.
Replies: 5
Views: 2974

Re: Set preferred resolution for HLS.

Thanks again for trying to help! I'll try to find the needed setting in command line help for viewing HLS content (not streaming) ...
by Jo2003
16 Mar 2018 14:03
Forum: Development around libVLC
Topic: Set preferred resolution for HLS.
Replies: 5
Views: 2974

Re: Set preferred resolution for HLS.

Thanks for the fast answer. I don't load any preferences at startup. I use libvlc option "--ignore-config". How to set the bandwidth?

Thanks,
Jörg
by Jo2003
16 Mar 2018 13:33
Forum: Development around libVLC
Topic: Set preferred resolution for HLS.
Replies: 5
Views: 2974

Set preferred resolution for HLS.

Hi all, I'm using libVLC (now from VLC 3.0.1) to show some HLS streams. When starting a stream, player always starts with the lowest possible bandwidth and after that changes to higher bandwidth - with a markable hickup. Version 2.2.x was starting with the highest possible quality (and since my conn...
by Jo2003
11 Oct 2017 13:43
Forum: Development around libVLC
Topic: libVLC 2.1.x opens 2 windows on a stream with 2 video tracks inside
Replies: 1
Views: 293

libVLC 2.1.x opens 2 windows on a stream with 2 video tracks inside

Hi all, I use libVLC in a Qt application, using an embedded widget to show content there. This works fine. Now I've got a video stream with 2 video tracks inside. libVLC opens one video embedded as needed, but opens an additional window for the second video stream. I found a command line option &quo...
by Jo2003
10 Apr 2017 14:49
Forum: Development around libVLC
Topic: libvlc_video_set_logо_[string|int]() parameter description
Replies: 1
Views: 259

Re: libvlc_video_set_logо_[string|int]() parameter description

OK, found it in command line help: Logo sub source Use a local picture as logo on the video --logo-file=<string> Logo filenames Full path of the image files to use. Format is <image>[,<delay in ms>[,<alpha>]][;<image>[,<delay>[,<alpha>]]][;...]. If you only have one file, simply enter its filename. ...
by Jo2003
10 Apr 2017 14:05
Forum: Development around libVLC
Topic: libvlc_video_set_logо_[string|int]() parameter description
Replies: 1
Views: 259

libvlc_video_set_logо_[string|int]() parameter description

Hi all, in a Qt desktop app (C++) I try to use libVLC function libvlc_video_set_logo_string() and libvlc_video_set_logo_int(). Could someone please explain which kind of parameter needs to be set and what they mean? libvlc_logo_enable - understood - int: 1 -> enable, 0 -> disable libvlc_logo_file - ...
by Jo2003
14 Feb 2017 15:45
Forum: Development around libVLC
Topic: Give http proxy as mrl option
Replies: 3
Views: 3917

Re: Give http proxy as mrl option

Sorry for confusion. I made a typo ... it works well. The correct option is named :http-proxy or --http-poxy but NOT http_proxy ...
by Jo2003
07 Feb 2017 12:21
Forum: Development around libVLC
Topic: Give http proxy as mrl option
Replies: 3
Views: 3917

Re: Give http proxy as mrl option

Thank you very much for your fast reply. On the command line help I read that the environment variable is used if the option is not set. I tried the command line option --http_proxy when starting VLC and it worked well. But when giving it as an mrl option (:http_proxy) to the media's mrl it will byp...
by Jo2003
06 Feb 2017 15:56
Forum: Development around libVLC
Topic: Give http proxy as mrl option
Replies: 3
Views: 3917

Give http proxy as mrl option

I'm writing an Qt desktop application (C++) which uses libVLC to play video streams. Almost everything works really well. Thanks for this - VLC is really great! I initialize libVLC without any proxy setting, but give the http proxy setting as part of the mrl in form :http_proxy=http://whatever.com:1...
by Jo2003
14 Nov 2015 12:35
Forum: Development around libVLC
Topic: libVLC get language code from audio track
Replies: 3
Views: 887

Re: libVLC get language code from audio track

OK, so I'll do it on my own. Thanks for your help!

Best regards,
Jörg
by Jo2003
13 Nov 2015 12:41
Forum: Development around libVLC
Topic: libVLC get language code from audio track
Replies: 3
Views: 887

libVLC get language code from audio track

Hi all, when playing a transport stream I can get the description to the played audio track with e.g. libvlc_audio_get_track_description(). This work fine and I get something like "[Russisch]". Is there a way to get the language code (ISO639) instead of the localized description? I tried s...
by Jo2003
13 Oct 2015 13:13
Forum: Development around libVLC
Topic: VLC media list player only plays one item in media list
Replies: 1
Views: 402

VLC media list player only plays one item in media list

Hi all, I'm using libVLC inside a Qt widget application to play some streams. I use a media list in combination with the media list player. This works fine in VLC 2.2. However with the latest git version (vlc 3.0 git) only the first item of the media list is played. Are there some changes needed for...
by Jo2003
01 Dec 2014 10:06
Forum: Development around libVLC
Topic: Libvlc with C++
Replies: 1
Views: 2005

Re: Libvlc with C++

To be honest I haven't understood all of your needs. Having a look to the C example you should always check if the things you are creating with new are really created: ... libvlc_instance_t *inst; inst = libvlc_new(0, NULL); if (inst != NULL) { ... } When running this simple test program the needed ...
by Jo2003
16 Nov 2014 18:43
Forum: Development around libVLC
Topic: set_aspect_ratio on OS X
Replies: 2
Views: 462

Re: set_aspect_ratio on OS X

I'm having the same problem with the Mac Version of the libVLC. In my tests I found out that the last version which works correctly was libVLC2.01. If you use the current version and have a look at the log of the libVLC you'll find following line when changing crop or aspect: core vout display error...

Go to advanced search