Search found 7 matches

Go to advanced search

by fanfan21
10 Nov 2023 12:49
Forum: Development around libVLC
Topic: libvlc folder is copied to release.
Replies: 3
Views: 3362

Re: libvlc folder is copied to release.

Is that the debug version?
do you mean debug build when i build using VS?
as for libvlc, i use the VS nuget version.
by fanfan21
03 Oct 2023 07:17
Forum: Development around libVLC
Topic: libvlc folder is copied to release.
Replies: 3
Views: 3362

libvlc folder is copied to release.

Hi, I'm just wandering why is libvlc folder keeps being coping to my visual studio C# release folders. It is quite large compared to my actual build: 337MB. If I delete it and run the application to music is still played. Therefore I wander is I really need it and if not how can I stop copying it? T...
by fanfan21
26 May 2023 12:04
Forum: Development around libVLC
Topic: Unable to continually play songs using LibVLCSharp
Replies: 6
Views: 1550

Re: Unable to continually play songs using LibVLCSharp

Code: Select all

Task.Run(() => mediaPlayer.Play(nextMedia));
Try this. And remove all your thread.sleep from your code, this is terrible practice.
I added teh steep() because without this delay it fails to play the songs most of the time.
how then can i assure the player is ready to play?
by fanfan21
25 May 2023 18:29
Forum: Development around libVLC
Topic: Unable to continually play songs using LibVLCSharp
Replies: 6
Views: 1550

Re: Unable to continually play songs using LibVLCSharp

Please share full verbose libvlc logs and a small standalone sample on github reproducing the issue.
Did you have a chnage to look at it?

It requires these nuget:
LibVLCSharp & VideoLAN.LibVLC.Windows
by fanfan21
24 May 2023 15:54
Forum: Development around libVLC
Topic: Unable to continually play songs using LibVLCSharp
Replies: 6
Views: 1550

Re: Unable to continually play songs using LibVLCSharp

I enabled debugging using var libVlc = new LibVLC(enableDebugLogs:true); and I see this right after the media ends: [000001e3c11ae170] main input debug: Buffering 99% [000001e3c11ae170] main input debug: Stream buffering done (1018 ms in 203 ms) [000001e3c11ae170] main input debug: Decoder wait done...
by fanfan21
24 May 2023 14:42
Forum: Development around libVLC
Topic: Unable to continually play songs using LibVLCSharp
Replies: 6
Views: 1550

Re: Unable to continually play songs using LibVLCSharp

Please share full verbose libvlc logs and a small standalone sample on github reproducing the issue. Hi, there is no long or I do not know ow to enable a full log for these objects: var libVlc = new LibVLC(); var playList = new Media(libVlc, playListFile); How do I enble the logging? I created a si...
by fanfan21
23 May 2023 22:13
Forum: Development around libVLC
Topic: Unable to continually play songs using LibVLCSharp
Replies: 6
Views: 1550

Unable to continually play songs using LibVLCSharp

Hi, I'm adding VLC support for my VoiceAttck (voice recognition) plugin for a flight sim. I instantiated a Media object and start playing. The object is stored globally in Globals.vaProxy.SessionState so the user can stop/pause/next etc. What I am trying to achieve is a continues play. I cannot wait...

Go to advanced search