Search found 18 matches

Go to advanced search

by passionggg
19 Oct 2010 10:14
Forum: VLC stream-output (sout)
Topic: How to delay the ""--sout=#duplicate"???
Replies: 0
Views: 569

How to delay the ""--sout=#duplicate"???

Hi,everyone I am a freshman in the development of VLC. i use the vlc lib to read the rtsp streaming data from an IP camera. The method is to setup a MFC project and libvlc. And then using the parameter "--sout=#duplicate{dst=file,dst=std{dst="C:\movie.avi"}}" to record the stream...
by passionggg
05 Sep 2010 04:23
Forum: VLC stream-output (sout)
Topic: Main video output warning:late picture skipped?
Replies: 0
Views: 305

Main video output warning:late picture skipped?

Now i use libvlc to get the rtsp stream from one IP camera. But in the logger there are always warnings like "main video output warning:late picture skipped (****) > (*****)".
if anyone knows the problem, please help me! Thanks very much!!!
by passionggg
24 May 2010 03:32
Forum: VLC media player for Windows Troubleshooting
Topic: Does VLC support assembly language?
Replies: 4
Views: 282

Re: Does VLC support assembly language?

Thanks for VLC_help's answer!
But how to use it? I mean what's the standard syntax?
like "_asm_ _volatile_ ();"???
Hope for answers. Thanks!
by passionggg
22 May 2010 04:57
Forum: VLC media player for Windows Troubleshooting
Topic: Does VLC support assembly language?
Replies: 4
Views: 282

Does VLC support assembly language?

I have compiled vlc1.0.0 successfully and do some changes in the vlc codes, then "make package-win32-base" to get vlc.exe. I use vlc to display the rtsp stream. But the use of CPU achieved 25%. I want to use SIMD assembly language to displace the memory read in vlc. Does vlc support this? ...
by passionggg
20 May 2010 08:12
Forum: Development around libVLC
Topic: MFC and libvlc,rtsp
Replies: 4
Views: 2382

Re: MFC and libvlc,rtsp

Thanks j-b.
Now i have succeeded to do this work according your advice that is to use vmem module. and see some example in the forum about the Qt codes, that is to invoke the lock and unlock callback function.
Thank to all every one's help!
by passionggg
19 May 2010 07:47
Forum: Development around libVLC
Topic: Get each frame data from rtsp stream using libvlc???
Replies: 9
Views: 4577

Re: Get each frame data from rtsp stream using libvlc???

Thanks every body.
i used vmem and the Qt example which can be searched in the forum and succeed to display the rtsp stream.
by passionggg
19 May 2010 07:44
Forum: VLC media player for Windows Troubleshooting
Topic: fread harddisk files and crash problem!?
Replies: 6
Views: 382

Re: fread harddisk files and crash problem!?

Thanks vlc_help and everyone.
now i have solved this problem using vmem video output. and see the Qt example.!
by passionggg
18 May 2010 02:55
Forum: VLC media player for Windows Troubleshooting
Topic: fread harddisk files and crash problem!?
Replies: 6
Views: 382

Re: fread harddisk files and crash problem!?

Yes, i used gdb. But when give a breakpoint in the file /modules/codec/avcodec/video.c, the program can not run to this point, and a problem occured that i don't understand. Now i do not go this way. I want to use the libvlc which i complied myself. I set up an MFC project in VS2008 by using libvlc ...
by passionggg
17 May 2010 04:32
Forum: VLC stream-output (sout)
Topic: How to get the decoded data using rtsp and libs
Replies: 1
Views: 465

Re: How to get the decoded data using rtsp and libs

if anyone knows how to get each frame rtsp stream data, please help me. very appreciated!!! In the logger, I can see how the program run. (1)first open the path from rtsp; (2)then use LIVE555 to read rtsp stream; (3)then search decoder and get avdecoder(ffmpeg) to decode the video data; (4)last disp...
by passionggg
17 May 2010 04:14
Forum: Development around libVLC
Topic: Get each frame data from rtsp stream using libvlc???
Replies: 9
Views: 4577

Re: Get each frame data from rtsp stream using libvlc???

Would you please give me an example for how to use vmem video output. i am a freshmen for using libvlc. Thanks very much!
by passionggg
17 May 2010 04:09
Forum: VLC media player for Windows Troubleshooting
Topic: fread harddisk files and crash problem!?
Replies: 6
Views: 382

Re: fread harddisk files and crash problem!?

"SIZE" is the size of "data.DAT" that is malloc a memory space to place the data.DAT from harddisk.
and the "Size" is the "table" size.
for example, SIZE is (sizeof(int)*1280*720), Size is (1280*720).
Thanks
by passionggg
16 May 2010 07:42
Forum: VLC media player for Windows Troubleshooting
Topic: fread harddisk files and crash problem!?
Replies: 6
Views: 382

fread harddisk files and crash problem!?

hi,all today, i writed several codes in the file /modules/codec/avcodec/video.c to read a harddisk file into the memory. But crashed. the codes is as follows: File *f; char *path="F:/data.DAT"; int *table; f=fopen(path,'rb'); tabel = malloc(SIZE); fread(table,sizeof(int),Size,f); then comp...
by passionggg
16 May 2010 06:43
Forum: Development around libVLC
Topic: Get each frame data from rtsp stream using libvlc???
Replies: 9
Views: 4577

Get each frame data from rtsp stream using libvlc???

hi,all now i has set up my own project using libvlc(which got in the dir /vlc.1.0.0/sdk and plugins after make package-win32-base) to read IP camera rtsp stream and display the video in real time. and the problem: is there a callback or register function in the libvlc while getting each frame data f...
by passionggg
14 May 2010 07:50
Forum: VLC stream-output (sout)
Topic: How to convert to/stream MPEG4 SP?
Replies: 4
Views: 1420

Re: How to convert to/stream MPEG4 SP?

Hi,Treze you said you have wrote a c# program that grabs a steam and converts it with the libvlc. Now i has a problem. i want to do some modifies of the raw stream data before display it with libvlc. but i can not find how to get the decoded stream data with libvlc. my steam data is a h264 encoded v...
by passionggg
10 May 2010 07:51
Forum: VLC stream-output (sout)
Topic: How to get the decoded data using rtsp and libs
Replies: 1
Views: 465

How to get the decoded data using rtsp and libs

hi,every body now i has set up a MFC project in VS2008 to use libvlc.lib, libvlccore.lib and the plugins. it used to read rtsp data in real time and display it in my window. the main code is as follows: char path[100]; this->GetDlgItemText(IDC_EDIT1, path, 100); //path is " rtsp://192.168.1.1:6...
by passionggg
10 May 2010 04:47
Forum: Development around libVLC
Topic: MFC and libvlc,rtsp
Replies: 4
Views: 2382

Re: MFC and libvlc,rtsp

i want to get the raw data through rtsp and libvlc and the plugins. is it using the function libvlc_event_attach or others to give a callback function? i found the decoded raw data in the pointer p_pic of the function DecodeVideo in /module/codec/avcodec/video.c. i want to do some changes of the raw...
by passionggg
08 May 2010 08:34
Forum: Development around libVLC
Topic: MFC and libvlc,rtsp
Replies: 4
Views: 2382

MFC and libvlc,rtsp

hi,every body now i has set up a MFC project in VS2008 to use libvlc.lib, libvlccore.lib and the plugins. it used to read rtsp data in real time and display it in my window. the main code is as follows: char path[100]; this->GetDlgItemText(IDC_EDIT1, path, 100); //path is "rtsp://192.168.1.1:60...

Go to advanced search