Search found 753 matches

Go to advanced search

by mfkl
11 Feb 2025 06:29
Forum: Development around libVLC
Topic: Avalonia and LibVLC for Mac ARM64
Replies: 3
Views: 3981

Re: Avalonia and LibVLC for Mac ARM64

Come talk on discord, will be easier for libvlcsharp matters.
by mfkl
10 Feb 2025 05:55
Forum: Development around libVLC
Topic: libVLC with SDL example not working
Replies: 3
Views: 2080

Re: libVLC with SDL example not working

this sample is using different libvlc APIs but it works https://code.videolan.org/videolan/vlc/ ... player.cpp

Maybe this helps you with your sample, or you can switch to this one (and libvlc 4)
by mfkl
06 Jan 2025 06:08
Forum: Development around libVLC
Topic: Cannot play dvd on some machines
Replies: 10
Views: 12878

Re: Cannot play dvd on some machines

The strange thing is that the prototype on WPF DVD works without problems I can't make it work in WPF too. I'm confused, honestly. What can we do next to investigate? I guess you're using an LGPL build without DVD support? Check your dlls. Because DVD support is GPL so these Windows builds are not ...
by mfkl
19 Dec 2024 10:47
Forum: Development around libVLC
Topic: Cannot play dvd on some machines
Replies: 10
Views: 12878

Re: Cannot play dvd on some machines

First, use the SAME libvlc version in both apps, the one that works and the one that doesn't. It will allow you to figure out whether its a libvlc issue or not.
by mfkl
19 Dec 2024 10:42
Forum: Development around libVLC
Topic: Open VLC Window with LibVLC without Auto-Playing
Replies: 2
Views: 9101

Re: Open VLC Window with LibVLC without Auto-Playing

What's "the starting sample"? Link please. If LibVLC opens a window when you call mediaplayer_play, you're misusing the API. LibVLC is creating a window because none was provided to it. You're responsible to provide a target area (e.g. window) to libvlc before starting playback. And since ...
by mfkl
03 Dec 2024 10:18
Forum: Development around libVLC
Topic: How to quit in Rpi CLI
Replies: 4
Views: 9638

Re: How to quit in Rpi CLI

maybe try libvlc_video_set_key_input. Otherwise I don't know.
by mfkl
02 Dec 2024 13:15
Forum: Development around libVLC
Topic: Cannot play dvd on some machines
Replies: 10
Views: 12878

Re: Cannot play dvd on some machines

Please share a repro sample.

Also, DVD support in LibVLC requires GPL compliance (so your app must be opensource to use this feature).
by mfkl
02 Dec 2024 13:11
Forum: Development around libVLC
Topic: Android RTSP player using libVLC: how to resume play output after activity resume?
Replies: 2
Views: 13183

Re: Android RTSP player using libVLC: how to resume play output after activity resume?

Please study the vlc-android code which accounts for this use case, as you can test in the VLC Android app.
by mfkl
02 Dec 2024 13:10
Forum: Development around libVLC
Topic: How to quit in Rpi CLI
Replies: 4
Views: 9638

Re: How to quit in Rpi CLI

You're already listening to button events. So listen for 'q' being pressed specifically and run your exit code when that happens?
by mfkl
02 Dec 2024 13:05
Forum: Development around libVLC
Topic: c++ libvlc RTSP request setting header
Replies: 2
Views: 8925

Re: c++ libvlc RTSP request setting header

Hi,

please share full logs. And maybe compare your rtsp server configuration with those that work.
by mfkl
25 Nov 2024 16:14
Forum: Development around libVLC
Topic: Cannot play dvd on some machines
Replies: 10
Views: 12878

Re: Cannot play dvd on some machines

Hmm your logs are both failures cases right? Bit confusing... it works on win10 or on win11 or both sometimes?

If it's the same app, same libvlc build, it might a permission that is missing?
by mfkl
13 Nov 2024 07:06
Forum: Development around libVLC
Topic: Which DLL contains the snapshot feature?
Replies: 6
Views: 15953

Re: Which DLL contains the snapshot feature?

Glad you found it. Trial and error is one way to go.

For the other method, you need to gain an understanding of how libvlc works, which functions are needed and in which dlls they are located. This requires going through the libvlc code (not libvlcsharp).
by mfkl
12 Nov 2024 09:21
Forum: Development around libVLC
Topic: Which DLL contains the snapshot feature?
Replies: 6
Views: 15953

Re: Which DLL contains the snapshot feature?

You can either look into the code and see which file is handling the feature and make sure the resulting binary is included, or disable/enable DLLs until you find the right ones to include.

You're probably missing (at least) plugins\video_filter\libscene_plugin.dll.
by mfkl
06 Nov 2024 03:12
Forum: Development around libVLC
Topic: Which DLL contains the snapshot feature?
Replies: 6
Views: 15953

Re: Which DLL contains the snapshot feature?

does it work when you include all DLLs?
what do the logs say?
by mfkl
14 Oct 2024 06:13
Forum: Development around libVLC
Topic: Looping playback
Replies: 6
Views: 10562

Re: Looping playback

That's unknown.
by mfkl
14 Oct 2024 06:12
Forum: Development around libVLC
Topic: Libvlcsharp - VLC(Direct3D11 output) popouts
Replies: 3
Views: 10087

Re: Libvlcsharp - VLC(Direct3D11 output) popouts

That's because you're calling play() on a mediaplayer that has no target window set to draw on.

Again, either a bug in the view integration of libvlcsharp, or in your code. Until you share your code, I can't tell you more.
by mfkl
09 Oct 2024 13:38
Forum: Development around libVLC
Topic: Looping playback
Replies: 6
Views: 10562

Re: Looping playback

When the end is reached, the player is already stopped, so no point in stopping it again. Just play the next media.
by mfkl
08 Oct 2024 06:39
Forum: Development around libVLC
Topic: VLC for Unity skips first second
Replies: 5
Views: 12588

Re: VLC for Unity skips first second

If you need more precise time, I think you will need to write some custom code.
First read https://code.videolan.org/videolan/vlc/ ... uests/2312 comments and commits. Then see how to use these functions from libvlcsharp in unity.
by mfkl
08 Oct 2024 06:32
Forum: Development around libVLC
Topic: Looping playback
Replies: 6
Views: 10562

Re: Looping playback

Using LibVLC options is not supported in any way. I believe the documentation for libvlc_new() is abundantly clear. And yet, it works, likely supported during major version timelines and it's the only way to do many things until LibVLC offers a proper C API for these things. But what if we're tryin...
by mfkl
07 Oct 2024 11:13
Forum: Development around libVLC
Topic: VLC for Unity skips first second
Replies: 5
Views: 12588

Re: VLC for Unity skips first second

do you have this issue when playing a media from a URL as well?

Go to advanced search