Hi, I want ask that is there any variable of function that can return the status of vlc whether the hotkeys module or the whole vlc program has closed? currently, I try to start a sip session when the vlc program start. However, when i press the close button on the right up corner of vlc, the vlc GU...
Hi, thanks for all the advice previously. Currently I think the library i need was linked. The pjlib is pkg-config and has been sudo make install to /usr/local. I link add in the following code in the configure.ac file. dnl dnl pj plugin dnl AC_ARG_ENABLE(PJ, [ --enable-pj pj support (default enable...
Thanks for your help, Xtopher. But I'm not very good in dealing with Makefile. Can anyone give me example on how to link hotkeys module to the Pjlib? briefly give me a guide pls? I do that because I found that the liblirc.a are also in /usr/lib which have similar manner as my library, so i just foll...
It is because I want to have use the function that when I press an hotkey, then it will send a sip instant message to other sip user. So I plan to link the sip library to hotkey.c. Is any method can link both together? I'm using ubuntu 7.10 and VLC-0.8.6f.
Hi, i have the same problem in adding new library to vlc. My library is name PJlib and I try many method to link it with hotkeys.c file. however it wont works. Here is what I do: I make install the PJlib and its library, "libpjlib-util-i686-pc-linux-gnu.a" is in the folder /usr/local/inclu...
I decide to use the pjsip library as my sip library, but the problem is I do not know the proper way to include a new library into the vlc. my problem is how to modify Makefile and configure.ac
Thanks for your reply. Then is there other suitable place to insert my code so that it will run during startup? I found the i can make use of the Run() method in the hotkeys.c file. Is it suitable to do that?
Hi, everyone. I want do small modify to the libvlc.c code so that it able to "press" the F8 bookmark function in /vlc-0.8.6f/modules/control/hotkeys file when the vlc program start. Is this able to be done? Can anyone teach me how to call any function in modules/control/hotkeys when the vl...
Hi, Rémi Denis-Courmont Thanks for your remind and I found out the reason for the error. The error is cause by the missing bracket in my code. and for the use of that 2 function, currently I declare that as following and it works. playlist_item_t * p_item; playlist_t *p_playlist =(playlist_t *)vlc_o...
Hi, I'm using the vlc-0.8.6f. I want to modify the program so that I able to display the URL of the stream or the parameter of psz_uri when one of the hotkey was pressed. So, I try to add some code in the file vlc-0.8.6f/modules/control/hotkeys.c. But I dunno how to get the URL of current stream med...
Regarding to the previous problem, I found that the problem maybe is due to the libvlc.h and vlc_playlist.h file is not in the same folder with vlc.c file. Hence it have error as shown at previous post. therefore, i change to add in my program in "libvlc.c" file in function "int VLC_C...
Hi, everyone. i try to build small function for vlc. I'm using ubuntu 7.10 and VLC 0.8.6f However, now I face a big problem to compile the code. My project is to adding small tcp server function to vlc.c file. A client program will send an IPv6 address to the server and the server need to get the st...
Hi, everyone. I have a question about the _VLC__SYMBOL. I try do so some function for modified to the vlc.c file of vlc-0.6.8f, and when libvlc.h is included inside the file and make, those error come out. The error message is as below. src/libvlc.h:1177: warning: data definition has no type or stor...
Hi, everyone. I want to ask that what actually is hotkey F1-F12 do in VLC 0.8.6f version? where is the portion of source code in VLC? I want assign some function to F9 or F8 since those key seem have not been assign yet, but I afraid will affect the player. I googling around and found that some foru...