Search found 7 matches

Go to advanced search

by WhatEver
26 Apr 2011 10:09
Forum: Development around libVLC
Topic: Python bindings SegFaults
Replies: 6
Views: 1842

Re: Python bindings SegFaults

vlc bindings are just 'not working' on 64bits OS.
by WhatEver
11 Oct 2010 15:50
Forum: Development around libVLC
Topic: libvlc_media_player stop doesn't kill sout
Replies: 6
Views: 1168

Re: libvlc_media_player stop doesn't kill sout

Here it is : diff --git a/include/vlc_input.h b/include/vlc_input.h index e548692..09302b3 100644 --- a/include/vlc_input.h +++ b/include/vlc_input.h @@ -673,6 +673,11 @@ VLC_EXPORT(void, input_resource_Release, ( input_resource_t * ) ); VLC_EXPORT(void, input_resource_TerminateVout, ( input_resourc...
by WhatEver
11 Oct 2010 13:28
Forum: Development around libVLC
Topic: libvlc_media_player stop doesn't kill sout
Replies: 6
Views: 1168

Re: libvlc_media_player stop doesn't kill sout

I finally managed to patch libvlc. I can't procure a patch file right now but here are the modifications : At the end of "src/libvlccore.sym" add : input_resource_TerminateSout At to the end of "include/vlc_input.h" add : /** * Forcefully destroys the stream output (e.g. when the...
by WhatEver
11 Oct 2010 09:54
Forum: Development around libVLC
Topic: libvlc_media_player stop doesn't kill sout
Replies: 6
Views: 1168

Re: libvlc_media_player stop doesn't kill sout

The command line I posted works fine. As far as I know, the "playlist stop" command will run "input_resource_TerminateVout" and (somehow) "input_resource_TerminateSout" whereas libvlc_media_player_stop only calls "input_resource_TerminateVout". I guess it's th...
by WhatEver
08 Oct 2010 12:13
Forum: Development around libVLC
Topic: libvlc_media_player stop doesn't kill sout
Replies: 6
Views: 1168

libvlc_media_player stop doesn't kill sout

Hi, I'm trying to save a DVB-T channel directly in an avi file. Here is the command that works in a term : vlc -vvv dvb:// :ts-es-id-pid :dvb-frequency=XXXXX :program=XX ":sout=#duplicate{dst=display,dst=std{dst=XXX.avi,mux=avi,access=file},select='program=XX'}" When closing vlc, the avi f...
by WhatEver
02 Aug 2010 11:34
Forum: Development around libVLC
Topic: Python bindings SegFaults
Replies: 6
Views: 1842

Re: Python bindings SegFaults

Sorry for delay, I already tried with two MediaPlayer in one instance, the result is the same. I recently tried with thooses versions : VLC 1.1.2 (self compiled) / 1.0.2 (ubuntu) Python 2.6.5 (ubuntu) gcc (Ubuntu 4.4.3-4ubuntu5) 4.4.3 I took the actual version of generated vlc.py (git). Results are ...
by WhatEver
12 Apr 2010 18:13
Forum: Development around libVLC
Topic: Python bindings SegFaults
Replies: 6
Views: 1842

Python bindings SegFaults

Hi, I'm having troubles with python bindings. import vlc instance1=vlc.Instance() media1=instance1.media_new(sys.argv[1]) player1=instance1.media_player_new() player1.set_media(media1) player1.play() instance2=vlc.Instance() media2=instance2.media_new(sys.argv[2]) player2=instance2.media_player_new(...

Go to advanced search