Search found 14 matches

Go to advanced search

by also
08 Mar 2014 18:57
Forum: Development around libVLC
Topic: Save stream to file
Replies: 2
Views: 834

Re: Save stream to file

There is a record module available:
vlc "http://rs1.stream.org:8690/stream" --sout=#record{dst-prefix="C:/my_file_without_extension"}

it works, but this module does not support any controls like start/stop/pause. It also does not support callbacks or events.
It's very sad !
by also
08 Mar 2014 18:30
Forum: Development around libVLC
Topic: album-art
Replies: 1
Views: 427

album-art

Hi

How to prevent fetching the album art?
--album-art=0
does not work.

Thank you
by also
09 Nov 2012 13:38
Forum: Development around libVLC
Topic: libvlc_MediaSubItemAdded
Replies: 1
Views: 308

Re: libvlc_MediaSubItemAdded

ok
libvlc_media_player_set_media() calling from within a callback is freezing the player.
Calling from a async helper_function solved this problem. I did not know this.
by also
08 Nov 2012 22:21
Forum: Development around libVLC
Topic: libvlc_MediaSubItemAdded
Replies: 1
Views: 308

libvlc_MediaSubItemAdded

Hi 2.0.4 Twoflower I would like to use the playlist support for pls,m3u,asx uris 1. I create a pPlayer and enable the libvlc_MediaPlayerEndReached player_event 2. create a media_object from an uri like http://xxx.yy.zz/playlist.pls and enable the libvlc_MediaSubItemAdded media_event 3. set the media...
by also
06 Jul 2012 14:00
Forum: Development around libVLC
Topic: projectM
Replies: 3
Views: 997

Re: projectM

Probably projectM module or library are not thread-safe. Yes, you are right, that's the reason. This is really bad, because all other visualizations are unusable for player applications. Goom code is crap and other visualizations offered by module visual, for example spectrum or scope, cannot be sc...
by also
01 Jul 2012 22:01
Forum: Development around libVLC
Topic: projectM
Replies: 3
Views: 997

projectM

Multiple vlc instances with projectM running on each, vlc crashes
Two different projectM milk preset directories for each vlc does not help.
Goom does not show this behavior.

regards


** SORRY it was my fault **
same static WinProc for more instances has to crash
by also
19 Oct 2011 16:53
Forum: Development around libVLC
Topic: libvlc_media_get_tracks_info
Replies: 8
Views: 1381

Re: libvlc_media_get_tracks_info

Some muxers are asynchronous. The track infos are only available at a "certain" time after the beginning of playback.
ok, thank you for your effort
by also
19 Oct 2011 03:10
Forum: Development around libVLC
Topic: libvlc_media_get_tracks_info
Replies: 8
Views: 1381

Re: libvlc_media_get_tracks_info

You might need to play more of it.
I don't understand what you mean by "play more of it"
by also
17 Oct 2011 18:35
Forum: Development around libVLC
Topic: libvlc_media_get_tracks_info
Replies: 8
Views: 1381

Re: libvlc_media_get_tracks_info

And for other media_types?
libvlc_media_get_tracks_info does not show any problems with other types then ogg.

btw.
int64_t duration = libvlc_media_get_duration(p_media);
with type ogg shows the same bug

regards
by also
13 Oct 2011 19:39
Forum: Development around libVLC
Topic: libvlc_media_get_tracks_info
Replies: 8
Views: 1381

Re: libvlc_media_get_tracks_info

I will test the whole bunch for streaminfos over the weekend, you will get this info
by also
13 Oct 2011 16:23
Forum: Development around libVLC
Topic: Strange behaviour concerning libvlc_MediaMetaChanged event
Replies: 15
Views: 1913

Re: Strange behaviour concerning libvlc_MediaMetaChanged eve

u.media_meta_changed.meta_type has a bug and says anything but nothing Don't use it Yes, I know. I'm trying to fix that bug. I already submitted a patch , but it introduces those race conditions I was refering to. you don't really need u.media_meta_changed.meta_type Check for libvlc_Playing, if yes...
by also
13 Oct 2011 15:52
Forum: Development around libVLC
Topic: Strange behaviour concerning libvlc_MediaMetaChanged event
Replies: 15
Views: 1913

Re: Strange behaviour concerning libvlc_MediaMetaChanged eve

Try the following In the media_meta_change_event get the status of the current media_object with libvlc_media_get_state((libvlc_event_t*)event->p_obj) if this status is enum libvlc_state_t - libvlc_Playing, this media is parsed and you may read the metas in one go I see you're point, but that doesn...
by also
13 Oct 2011 15:11
Forum: Development around libVLC
Topic: Strange behaviour concerning libvlc_MediaMetaChanged event
Replies: 15
Views: 1913

Re: Strange behaviour concerning libvlc_MediaMetaChanged eve

Well, looks like I was a little too enthusiastic, as Rémi pointed out that there might be a TOCTOU race in my code. :( What I was doing to prevent unnecessary signal emission was to first check if the new and the old meta value were equal and then only perform the updating if they were not. The pro...
by also
13 Oct 2011 13:38
Forum: Development around libVLC
Topic: libvlc_media_get_tracks_info
Replies: 8
Views: 1381

libvlc_media_get_tracks_info

FYI
1.2.0-git-20111003-0029 Twoflower

libvlc_media_track_info_t *pTrackInfo;
int num_of_streams = libvlc_media_get_tracks_info(p_media, &pTrackInfo);

returns always 0 for media_type ogg

regards

Go to advanced search