Search found 12 matches

Go to advanced search

by nusrat1990
06 Sep 2011 17:06
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Compiling VLC on Ubuntu
Replies: 9
Views: 9153

Re: Compiling VLC on Ubuntu

Without XCB, VLC won't be able to output video. Without avcodec, it won't be able to decode much if anything. As the error says, you need a more recent XCB version. The easiest way is to update to a more recent release of Ubuntu. I installed Ubuntu 11.04. Configuring and making VLC were done smooth...
by nusrat1990
05 Sep 2011 23:16
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Compiling VLC on Ubuntu
Replies: 9
Views: 9153

Compiling VLC on Ubuntu

Hello. I try to compile latest VLC from git on Ubuntu 10.04 LTS by using tutorial. I got an error while execute command ./configure configure: error: Could not find libavcodec or libavutil. Use --disable-avcodec to ignore this error. I add --disable-avcodec configure: error: Could not find libswscal...
by nusrat1990
03 Apr 2011 21:14
Forum: Development around libVLC
Topic: Transcoding
Replies: 8
Views: 966

Re: Transcoding

Could you provide more info/link about interprocess communication? I need to mux raw wvc1(VC-1 AP) elementary stream to ASF container. I try this: vlc k:\samples\test.vc1 --sout #std{access=file,mux=asf,dst=k:\samples\test.asf} It creates file and writes < 1kb. What do I wrong? For example, if the i...
by nusrat1990
01 Apr 2011 07:49
Forum: Development around libVLC
Topic: Transcoding
Replies: 8
Views: 966

Re: Transcoding

Yes, I worked with named pipes (WinAPI).
by nusrat1990
31 Mar 2011 21:17
Forum: Development around libVLC
Topic: Transcoding
Replies: 8
Views: 966

Re: Transcoding

Hi Jean-Baptiste Kempf. In the final, I need to do 1.1 using memory, without using files. I have a live stream (wvc1 encoded bitstream). Is there any way to do that? If yes, what mechanism is used, how client and VLC share memory and what command line params needed for VLC? There is other way: I can...
by nusrat1990
26 Mar 2011 23:13
Forum: Development around libVLC
Topic: simple streaming
Replies: 4
Views: 1495

Re: simple streaming

I have a wvc1 bitstream and i want to mux it into asf and send it to some udp/http port for further processing. Here is the piece of code: const char * const vlc_args[] ={ "-vvv" , "-I","dummy","--ignore-config", "--plugin-path=C:\\Program Files\\VideoLAN...
by nusrat1990
20 Mar 2011 15:54
Forum: Development around libVLC
Topic: simple streaming
Replies: 4
Views: 1495

Re: simple streaming

oh, two slashes...
"k:\\samples\\bbb24p_00.ts"
by nusrat1990
20 Mar 2011 12:12
Forum: Development around libVLC
Topic: simple streaming
Replies: 4
Views: 1495

Re: simple streaming

Thank you for help, but It doesn't work. const char * const vlc_args[] ={ "-vvv", "-I","dummy","--ignore-config", "--plugin-path=C:\\Program Files\\VideoLAN\\VLC\\plugins\\" }; libvlc_instance_t * inst; inst = libvlc_new(sizeof(vlc_args) / sizeof(*vl...
by nusrat1990
19 Mar 2011 18:48
Forum: Development around libVLC
Topic: Transcoding
Replies: 8
Views: 966

Re: Transcoding

Ok
by nusrat1990
18 Mar 2011 21:17
Forum: Development around libVLC
Topic: Transcoding
Replies: 8
Views: 966

Re: Transcoding

Thank you for reply. Ok,I should write vc1 advanced profile, but not wmv. http://www.microsoft.com/windows/windowsmedia/howto/articles/vc1techoverview.aspx I have already finished transcoding from mpeg2 ES -> vc1 bitstream. Now I need to: 1)mux vc1/wma into: 1.1)ASF and output should be as http 1.2)...
by nusrat1990
15 Jan 2011 00:19
Forum: Development around libVLC
Topic: Transcoding
Replies: 8
Views: 966

Transcoding

Hello. I have a client that plays network stream. const char * const vlc_argv[] = { "-I", "dummy", "--ignore-config", "--plugin-path=C:\\Program Files\\VideoLAN\\VLC\\plugins\\"}; libvlc_instance_t * inst; libvlc_media_player_t *mp; libvlc_media_t *m; inst = l...
by nusrat1990
09 Jan 2011 13:41
Forum: Development around libVLC
Topic: simple streaming
Replies: 4
Views: 1495

simple streaming

Hello.
I can create a stream server using command line:
vlc "c:\downloads\bbb24p_00.ts" :sout=#udp{dst=127.0.0.1:1234} :no-sout-rtp-sap :no-sout-standard-sap :ttl=1 :sout-keep
now I want to create the same stream programmatically.
Thanks in advance.

Go to advanced search

cron