Search found 6 matches

Go to advanced search

by jocomau
04 Aug 2015 13:46
Forum: Development around libVLC
Topic: trying to pass parameters to vlclib
Replies: 8
Views: 1173

Re: trying to pass parameters to vlclib

I'm not contracticting me as you can see above i wrote this command line VLC.exe --config=myvlcrc that means I was using not all the default values but a specific myvlcrc with some values that override some default. And I also specified that: myvlcrc is a modified vlcrc with logging property setted ...
by jocomau
04 Aug 2015 11:55
Forum: Development around libVLC
Topic: trying to pass parameters to vlclib
Replies: 8
Views: 1173

Re: trying to pass parameters to vlclib

Thanks for your reply, I understood your point of view and that you are contrary to pass parameters to libvlc_new. The reason why i need to pass parameters is that default values don't work or don't work well for my videos and my hw configuration. So I tuned up parameters using a vlc.exe preferences...
by jocomau
03 Aug 2015 16:31
Forum: Development around libVLC
Topic: trying to pass parameters to vlclib
Replies: 8
Views: 1173

Re: trying to pass parameters to vlclib

Which question does not make sense? I read the documentation, it says: ... Version Arguments are meant to be passed from the command line to LibVLC, just like VLC media player does.... and if you refer to Warning There is absolutely no warranty or promise of forward, backward and cross-platform comp...
by jocomau
03 Aug 2015 15:00
Forum: Development around libVLC
Topic: trying to pass parameters to vlclib
Replies: 8
Views: 1173

Re: trying to pass parameters to vlclib

I don't use Mplayer , I have my own player the code is above and I call it MYPLAYER.exe just to give it a name. Found a (partial) solution: I need to pass also --no-ignore-config to MYPLAYER.exe MYPLAYER.exe --no-ignore-config --config=myvlcrc but for vlc is enough VLC.exe --config=myvlcrc Now the p...
by jocomau
03 Aug 2015 12:51
Forum: Development around libVLC
Topic: some question about snapshot
Replies: 2
Views: 596

Re: some question about snapshot

The code for libvlc_video_take_snapshot on 2.0.7 was: int libvlc_video_take_snapshot( libvlc_media_player_t *p_mi, unsigned num, const char *psz_filepath, unsigned int i_width, unsigned int i_height ) { assert( psz_filepath ); vout_thread_t *p_vout = GetVout (p_mi, num); if (p_vout == NULL) return -...
by jocomau
03 Aug 2015 11:36
Forum: Development around libVLC
Topic: trying to pass parameters to vlclib
Replies: 8
Views: 1173

trying to pass parameters to vlclib

I'm trying to do a very simple player for windows 7 in C++ on Embarcadero using vlclib 2.2.1 Below is my very simple code to initialize lib and to start the video from a streaming udp source. I run the program from command line to pass some parameters to it. void __fastcall TForm3::FormShow(TObject ...

Go to advanced search