you are missing a lot of muxers. I find the reason g726 cannot be record is that Muxer cannot add the G726 stream. the vlc uses avi muxer defautly, and in the file avi.c , the avi muxer not deal with VLC_CODEC_ADPCM_G726. so i add below in avi.c, my G726 is 32bit. case VLC_CODEC_ADPCM_G726: p_wf->w...
thanks. The log is as below, i cannot find the bug... this logs start from the start of recording,stop at when the file is saved. 01-02 14:00:39.421 23261-23261/ D/VLC/VideoPlayerActivity﹕ takeVideoRecord start 01-02 14:00:39.421 23261-23867/ D/VLC﹕ main stream output: using sout chain=`record{dst-p...
Happy new Year!Happy 2014! I want record video from rtsp which transforms H264. so I add the function "Add new API to libvlc to record the current media to either an application-specified file or a file " from https://patches.videolan.org/patch/606/ it works, but the function seems missin...
I add a function to record video on vlc android,but it works not well. i just can start record,but cannot stop record. what i have done is like bellow: first, in include\vlc\libvlc_media_player.h,i add a function header: VLC_PUBLIC_API int libvlc_video_toggle_record( libvlc_media_player_t *p_mi,cons...
I want to snapshot on vlc_android, so I add a function in the jni libvlcjni.c to invoke libvlc_video_take_snapshot and enable-sout in the configure.sh file.After compiling, it seems not working well for the error below: 01-04 11:13:50.613: ERROR/VLC(1707): [0x22b844]: main input ES_OUT_RESET_PCR cal...