Search found 130 matches

Go to advanced search

by mangokm40
24 Apr 2014 19:28
Forum: Development around libVLC
Topic: 2.2.0 and equalizer
Replies: 13
Views: 1246

Re: 2.2.0 and equalizer

equalizer = libvlc_audio_equalizer_new_from_preset(i) im getting same error on this line Pinvoke restriction: cannot return variants ============================================================ Hope I don't waste your time with this, but.... If you're declaration looks like this: "Public Share...
by mangokm40
17 Mar 2014 13:38
Forum: Development around libVLC
Topic: mute on start with vlc 2.1x
Replies: 4
Views: 793

Re: mute on start with vlc 2.1x

Maybe aout hasn't been created when you're trying to set mute/volume/audio track.
by mangokm40
09 Dec 2013 14:57
Forum: Development around libVLC
Topic: pass arguments to libvlc/jvlc
Replies: 1
Views: 1056

Re: pass arguments to libvlc/jvlc

I write in C. I've been using libvlc_video_take_snapshot() and have simply used a ".jpg" extension for the output file. I've had no problem with the images captured. After reading this thread, I examined the images and they are "png" images with "jpg" extension. Yet, I'...
by mangokm40
28 Oct 2013 12:58
Forum: Development around libVLC
Topic: C# need help
Replies: 3
Views: 499

Re: C# need help

I hope I'm not wasting your time, but....doesn't that string need double slash (h:\\musics\\music.mp3) ?
by mangokm40
18 Oct 2013 14:08
Forum: Development around libVLC
Topic: There is any way to connect events to MediaPlayer instance?
Replies: 1
Views: 364

Re: There is any way to connect events to MediaPlayer instan

Can you use the "libvlc_MediaPlayerEndReached" event?
by mangokm40
07 Oct 2013 17:07
Forum: Development around libVLC
Topic: libvlc_audio_set_volume crashes libvlccore 2.1.0
Replies: 17
Views: 5636

Re: libvlc_audio_set_volume crashes libvlccore 2.1.0

I don't use a "wrapper". My code is C/C++. I'm not having any problem with libvlc_audio_set_volume() calls during playback.
by mangokm40
07 Oct 2013 16:14
Forum: Development around libVLC
Topic: libvlc_audio_set_volume crashes libvlccore 2.1.0
Replies: 17
Views: 5636

Re: libvlc_audio_set_volume crashes libvlccore 2.1.0

I guess you can look into the delphi wrapper, then. I'm writing in C.
by mangokm40
07 Oct 2013 14:17
Forum: Development around libVLC
Topic: libvlc_audio_set_volume crashes libvlccore 2.1.0
Replies: 17
Views: 5636

Re: libvlc_audio_set_volume crashes libvlccore 2.1.0

You might need to provide more information. I'm not having any problem. I'm using:
libvlc_audio_set_volume(vlcPlayer, vol);
...where vol is int from 0 to 200.

It's compiled using 32-bit libvlc, running in WinXP (32bit) and Win7 (32 and 64bit).
by mangokm40
30 Sep 2013 16:39
Forum: Development around libVLC
Topic: Getting started with LibVLC
Replies: 4
Views: 6174

Re: Getting started with LibVLC

. I don't compile libvlc. If that's what you wanted to do, I'm sorry. I didn't realize that. . The page that has the link to download the VLC windows executable also has a link for source code tarball. . The header files I use are in that source code (the include/vlc directory). . The libvlc.dll and...
by mangokm40
27 Sep 2013 15:12
Forum: Development around libVLC
Topic: LibVLC Visualization
Replies: 6
Views: 1217

Re: LibVLC Visualization

I didn't know about this (because I've stopped using visualizations). However, I am unable to set the visualization per media, only in the instance parameters.

This thread discusses that: https://forum.videolan.org/viewtopic.php?f=32&t=98277
by mangokm40
27 Sep 2013 14:24
Forum: Development around libVLC
Topic: Volume handling in 2.1.0 onwards
Replies: 17
Views: 3641

Re: Volume handling in 2.1.0 onwards

Thanks Sherington. This thread saved me a lot of time when I was trying to upgrade my code yesterday. :)

Thanks for the idea Bunjee. The frame unlock callback is better than a Win32 timer (what I did yesterday). :)
by mangokm40
27 Sep 2013 14:22
Forum: Development around libVLC
Topic: Getting started with LibVLC
Replies: 4
Views: 6174

Re: Getting started with LibVLC

I use C++ in VS2010 for my libvlc "hobby".

If you Google "doxygen VLC", you can get the documentation page.

You can also start here: wiki.videolan.org/LibVLC.

have fun. :)
by mangokm40
16 Sep 2013 17:55
Forum: Development around libVLC
Topic: Event Manager does not dispatch events
Replies: 1
Views: 286

Re: Event Manager does not dispatch events

Not to be mean, but... Your post seems a bit too 'generic' for anyone to help.
.Which events?
.How are you adding the listener?
.How are you 'doing some action?
.etc...
by mangokm40
17 Jul 2013 14:58
Forum: Development around libVLC
Topic: LibVLC Visualization
Replies: 6
Views: 1217

Re: LibVLC Visualization

I used something like this when creating the media (audio) object: libvlc_media_t *vlcMedia = libvlc_media_new_path(vlcInstance, audioPath); libvlc_media_add_option(vlcMedia, "audio-visual=visual"); libvlc_media_add_option(vlcMedia, "effect-list=scope"); Hope you find that useful.
by mangokm40
21 Jun 2013 14:31
Forum: Development around libVLC
Topic: libvlc_media_player_stop dont return
Replies: 2
Views: 437

Re: libvlc_media_player_stop dont return

hello, I am developing with libvlc v2.0.3. sometimes when I call libvlc_media_player_stop the method don´t return. I call STOP before call PLAY (libvlc_media_player_play) What can I do? Thank you in advance The forum search feature reveals this: http://forum.videolan.org/viewtopic.php?f=32&t=10...
by mangokm40
20 May 2013 21:49
Forum: Development around libVLC
Topic: Parsing Problem with libvlc 2.1.0-pre1 on Mac OSX 10.8
Replies: 5
Views: 595

Re: Parsing Problem with libvlc 2.1.0-pre1 on Mac OSX 10.8

Isn't "libvlc_media_new_location" the one that opens an MRL?
by mangokm40
14 May 2013 15:54
Forum: Development around libVLC
Topic: Problem to get duration
Replies: 3
Views: 577

Re: Problem to get duration

I think you can read about events here:

http://www.videolan.org/developers/vlc/ ... gen/html/‎

It doesn't matter what I did. I'm a fool. You'll do it much better. :)
by mangokm40
13 May 2013 13:56
Forum: Development around libVLC
Topic: Problem to get duration
Replies: 3
Views: 577

Re: Problem to get duration

Read about events in libvlc. You might need to catch the "playing" event before calling the function that gives you duration.
by mangokm40
03 May 2013 14:03
Forum: Development around libVLC
Topic: Reliable use of new libvlc_media_tracks_get()
Replies: 2
Views: 1001

Re: Reliable use of new libvlc_media_tracks_get()

I hope it's OK to bump this, as I have the same question.

Thanks
by mangokm40
25 Feb 2013 18:11
Forum: Development around libVLC
Topic: A screenshot function exists or not?
Replies: 3
Views: 1000

Re: A screenshot function exists or not?

I used libvlc_video_take_snapshot(). Maybe it can help you. :)
by mangokm40
22 Feb 2013 18:28
Forum: Development around libVLC
Topic: Process Stuck during stopping Media player
Replies: 4
Views: 1267

Re: Process Stuck during stopping Media player

Did you already search the forum? There's a few threads on this.

Here's one:
viewtopic.php?f=32&t=106415&p=360488&hi ... op#p360488
by mangokm40
04 Feb 2013 17:56
Forum: Development around libVLC
Topic: Is switching audio tracks through libvlcapi broken in 2.0.5?
Replies: 4
Views: 815

Re: Is switching audio tracks through libvlcapi broken in 2.

"Hmm, in fact the return value is undefined on error in version 2.0.5. That will be fixed in 2.0.6. In the mean time, you'd have to check libvlc_audio_get_track() if you need to check for errors" Thank you. I will do that. "Other than that, it should work just fine. Make sure you are ...
by mangokm40
04 Feb 2013 14:41
Forum: Development around libVLC
Topic: libVLC and recording process
Replies: 4
Views: 982

Re: libVLC and recording process

You should probably use a MUCH more recent version, if you wish to get some help.
by mangokm40
04 Feb 2013 14:40
Forum: Development around libVLC
Topic: Is switching audio tracks through libvlcapi broken in 2.0.5?
Replies: 4
Views: 815

Re: Is switching audio tracks through libvlcapi broken in 2.

"Worked perfectly 2.0.0-2.0.4, 2.0.5 - not. Did API changed or what ?" I am also having an issue. In 2.0.5, libvlc_audio_set_track() is returning 0, even when it fails to change the audio track. It also fails to change to track 0. In a situation with where libvlc_audio_get_track_count() te...

Go to advanced search