do you know about some appliance (streamers, media players or so) that runs vlc on as its media player?
if so i will be happy to contact them to ask how they solved the legal issues with the GPL
Hello i want to use vlc as a part of a commercial app that i want to sell. The app have some control gui, but finally will launch vlc with some video processing plugins. VLC itself wont be compiled inside the application - rather run stand alone, and play the video stream that some other part of the...
Hey I have implemented a plugin to vlc that does what you are looking for: makes the played media start as "paused" then you can unpause by pressing the space, or by sending a special packet to the control port Can you compile it yourself, or do you want me to send you the DLL? michael koy...
i still dont understand... i see other plugins creating vars using var_CreateGetBoolCommand (for example) they never call the vlc_object_create (i guess its created outside of the plugin and passed as a parameter) is there some developers tutorial explaining how to do it? what was missing in what i ...
Hello i write a control plugin and a video filter plugin that is supposed to control the video filter params (much like the rc plugin) My question is how do i transfer data between the two what i did was [*]var_Create( p_intf, "rctm-bool",VLC_VAR_BOOL); in the Open function of the control ...
Hello Jean thanks for your answer, but i still dont understand: i was looking in src/video_output/video_output.c this is where the vout_* thread is defined, together with its constructor function vout_Create and vout_Request what i dont find is where these functions are used in a simplest flow of vl...
Hello in the standard flow, where is only one video output (no splitters) i i want to add a variable holding the vout thread (i want to have a callback for this in another filter) As far as i understand, i need the place where vout_Create is called, is it right? Is this place in the modules/video_fi...
Hello i want to find the place in vlc where in a normal playback (displaying to the screen, and not some stream_out) a decision is made whether to play a frame, delay its playing or drop it because its too old according to its i_pts can somebody refer me to the relevant file in the tree? is it in \s...
Remi, thanks for the answer
i see references to modules/video_filter/posterize.c
but its not there in the tree any more..
i saw function in modules\video_chroma? are they relevant?
Hello
I am writing a filter and i need to work in RGB domain for this so i need a yuv <-> rgb conversion
can I use filters in modules/video_chroma/ and how (references to any existing code should be enough)
or are there other ways to do it?
Hello i am looking for the fastest way to compile a plugin for VLC (for windows) i dont need to recompile the whole program for this, only some stand alone video_filter (a lot like the puzzle.c filter which doesnt have any dependencies) maybe i am stupid, but i couldnt figure out from the OutOfTheTr...
hi is it possible to stream rtp (or udp, or whatever) to a broadcast ip address like 192.168.255.255? i am streaming to two destination on my lan, and want to use as few network bandwitdth as possible and not doing something like % vlc -vvv input_stream --sout '#duplicate{dst=display, dst="tran...
Hello i would like to play simultaneously the same streamed video on two computers when i stream using vlc E:\XXY.avi :sout=#http{dst=:8080/go.mpg} there is a big lag between the two computers.. i dont know if it is because of the buffering made in the client, or this is how streaming using HTTP wor...