Search found 18 matches

Go to advanced search

by foruok
22 Jul 2008 07:04
Forum: VLC media player for Windows Troubleshooting
Topic: vlc0.9.x compile error...
Replies: 14
Views: 1824

Re: vlc0.9.x compile error...

I think there were some error about the pre-compiled win32 contrib package. Just guess.
Today reinstall my cygwin and I compiled 0.9.0-test3, 2008-07-22. I got the same error as I complied 0.9.0 firstly.
by foruok
19 Jul 2008 08:50
Forum: VLC media player for Windows Troubleshooting
Topic: vlc0.9.x compile error...
Replies: 14
Views: 1824

Re: vlc0.9.x compile error...

Yes I did. gcc is 3.4.4.
by foruok
17 Jul 2008 03:46
Forum: VLC media player for Windows Troubleshooting
Topic: vlc0.9.x compile error...
Replies: 14
Views: 1824

Re: vlc0.9.x compile error...

I try it, new error : gcc -mno-cygwin -std=gnu99 -shared .libs/libavcodec_plugin_la-avcodec.o .libs/l ibavcodec_plugin_la-video.o .libs/libavcodec_plugin_la-audio.o .libs/libavcodec_ plugin_la-deinterlace.o .libs/libavcodec_plugin_la-encoder.o -L/usr/win32/lib - lws2_32 /usr/win32/lib/libmp3lame.a /...
by foruok
17 Jul 2008 03:20
Forum: VLC stream-output (sout)
Topic: vlc streaming question
Replies: 3
Views: 1156

Re: vlc streaming question

Thanks olegkirillov . Sorry for my poor English, I can't exactly express myself. Your explain is close to what I want to know. In fact, I want to know that the data type VLC stream out to clients. There are several forms: First, a few video streams and an audio stream . So the raw media file must be...
by foruok
16 Jul 2008 02:52
Forum: VLC media player for Windows Troubleshooting
Topic: vlc0.9.x compile error...
Replies: 14
Views: 1824

vlc0.9.x compile error...

Below is the error message printed by cygwin. My gcc is 3.4.4, and win32 contrib is contrib-20080528-win32-bin-gcc-4.2.1-sjlj-runtime-3.13-only.tar.bz2, and sources is vlc-0.9.0-test2-20080714-0005-win32。 I follow http://wiki.videolan.org/Win32CompileCygwinNew to build. I think the error is caused b...
by foruok
15 Jul 2008 12:36
Forum: VLC stream-output (sout)
Topic: vlc streaming question
Replies: 3
Views: 1156

vlc streaming question

Hi. I want to know the streaming process of VLC. As an example, we streaming from a media file. Can anyone explain the procedures which VLC takes? Such as: read file, get codec information, split video and audio, construct a TOC of the file, ... And as a server, VLC send data block to the clients, f...
by foruok
15 Jul 2008 10:46
Forum: VLC media player for Windows Troubleshooting
Topic: vlc9.0x,the process can't quit
Replies: 2
Views: 673

vlc9.0x,the process can't quit

I download the nightly build 2008-07-14,install on my Windows XP sp2, the process can't quit if I'd ever play a movie.
And I use my test code based on libvlc, get the same result.
If I didn't play a file ,just open the vlc.exe, then click close button, it did quit .
by foruok
14 Jul 2008 10:03
Forum: VLC media player for Windows Troubleshooting
Topic: an error about nightly vlc-0.9.0-test2-20080714-0005
Replies: 0
Views: 392

an error about nightly vlc-0.9.0-test2-20080714-0005

Today I download nightly builds, vlc-0.9.0-test2-20080714-0005-win32.zip. I want to test the SDL Example: http://wiki.videolan.org/LibVLC_SampleCode_SDL . I always get error when libvlc_media_player_new_from_media is called. I try to call libvlc_media_player_new, then call libvlc_media_player_set_me...
by foruok
14 Jul 2008 08:01
Forum: VLC media player for Windows Troubleshooting
Topic: no libvlc.lib generated!
Replies: 10
Views: 3307

Re: no libvlc.lib generated!

I used LoadLibrary and GetProcAddress to accomplish my first example today.
Thanks a lot.
by foruok
14 Jul 2008 07:49
Forum: VLC media player for Windows Troubleshooting
Topic: how to get the decoded video data without display?
Replies: 6
Views: 595

Re: how to get the decoded video data without display?

I got my first example compiled today, based on the linkhttp://wiki.videolan.org/LibVLC_Tutorial_086c and 086i.
Thanks.
Now I'll try to build the nightly libvlc to run the SDLExample:http://wiki.videolan.org/LibVLC_SampleCode_SDL.
Thanks.
by foruok
12 Jul 2008 16:17
Forum: VLC media player for Windows Troubleshooting
Topic: no libvlc.lib generated!
Replies: 10
Views: 3307

no libvlc.lib generated!

Today I built vlc-0.8.6h on Windows XP use cygwin. I modify the stat.h and wchar.h, for type off_t . The compiler complained that the off_t wasn't a type. So I defined it explicitly, code: #ifndef _OFF_T_DEFINED typedef long off_t; #define _OFF_T_DEFINED #endif All went OK. I got the zip package. An...
by foruok
12 Jul 2008 16:04
Forum: VLC media player for Windows Troubleshooting
Topic: how to get the decoded video data without display?
Replies: 6
Views: 595

Re: how to get the decoded video data without display?

I looked the wiki for libvlc. There did have a list of the command-line arguments the vlc accept. But just option, no detail explain. And I'd want to get a argument list for function libvlc_new. I try to digged into the source, but it's so complex. For example, I can give "--vmem" for libv...
by foruok
12 Jul 2008 08:49
Forum: VLC media player for Windows Troubleshooting
Topic: how to get the decoded video data without display?
Replies: 6
Views: 595

Re: how to get the decoded video data without display?

Thanks to VLC_HELP!
I'm newer to VLC. I want to find some articles about libvlc's arguments rule, such as vout, vmem, etc. And Is there a full tutorial for begginner?
by foruok
11 Jul 2008 10:53
Forum: VLC media player for Windows Troubleshooting
Topic: how to get the decoded video data without display?
Replies: 6
Views: 595

how to get the decoded video data without display?

Hi, all.

I'd want to get a movie's decoded video data, but do not want it show by the default way.
In that case , I can copy the video data to a buffer, hence I can render it in my way I like, such as in a 3D scene, as a texture of a cube.

How can I do it ?
Any suggestion is appreciated.
by foruok
26 Mar 2008 01:35
Forum: VLC media player for Windows Troubleshooting
Topic: plugins linked to libvlc.dll.exe ?
Replies: 5
Views: 690

Re: plugins linked to libvlc.dll.exe ?

Is there any way to solve this problem ?
by foruok
25 Mar 2008 01:45
Forum: VLC media player for Windows Troubleshooting
Topic: plugins linked to libvlc.dll.exe ?
Replies: 5
Views: 690

plugins linked to libvlc.dll.exe ?

I compiled VLC on Windows XP with cygwin, gcc -3.4.4, contrilb-3.4.5-only, vlc-0.8.6e. All went right, I got the vlc.exe and plugins. But when I run the vlc.exe, It promt that "Cant find libvlc.dll.exe", then quit. I rename libvlc.dll to libvlc.dll.exe, All right, it work! It seems that li...
by foruok
21 Mar 2008 10:20
Forum: VLC media player for Windows Troubleshooting
Topic: Vlc compile problem at Windows XP
Replies: 5
Views: 2494

Re: Vlc compile problem at Windows XP

Thanks, I'll try next week.
by foruok
20 Mar 2008 06:40
Forum: VLC media player for Windows Troubleshooting
Topic: Vlc compile problem at Windows XP
Replies: 5
Views: 2494

Vlc compile problem at Windows XP

I'd try to compile VLC(0.8.6e) at Winows XP with Cygwin,I followed the http://wiki.videolan.org/Win32CompileCygwinNew , but I got the error:configure:3502: error: C compiler cannot create executables? Who can help me? thanks a lot. Add I want to use libvlc to develop my media player, so, Can I get t...

Go to advanced search