[Help REQ] rtmp streaming error

About encoding, codec settings, muxers and filter usage

[Help REQ] rtmp streaming error

Postby Iluvatar on Thu Jan 17, 2008 7:04 am

I am trying to stream and save a video, from the net, located at:
http://www.nttdocomo.co.jp/english/corporate/mobilelife/index.html

From the page source, the file appears to be located at:
rtmp://fcs-nttdocomo_cm.stream.co.jp/nttdocomo_cm/_definst_/cm/060317/m_life_e.flv

I have set up VLC to stream it, display locally and save to a file. However, I get the following error:

Unable to open 'rtmp://fcs-nttdocomo_cm.stream.co.jp/nttdocomo_cm/_definst_/cm/060317/m_life_e.flv'


and in the messages log:
main error: no suitable access module for `rtmp://fcs-nttdocomo_cm.stream.co.jp/nttdocomo_cm/_definst_/cm/060317/m_life_e.flv'


I was under the (mis)understanding that I could stream rtmp protocols or am I completely deluded? Can anyone enlighten and educate me? :?:

Any help would be greatly appreciated. :?
Iluvatar
New Cone
New Cone
 
Posts: 3
Joined: Sun Mar 18, 2007 6:43 am

Re: [Help REQ] rtmp streaming error

Postby j-b on Thu Jan 17, 2008 7:08 am

rtmp isn't implemented in vlc.
Jean-Baptiste Kempf
http://www.jbkempf.com/ - http://www.jbkempf.com/blog/category/Videolan
VLC media player developer and Sites administrator
If you want an answer to your question, just be specific and verbose. Don't PM.
j-b
Site Admin
Site Admin
 
Posts: 12671
Joined: Fri Jul 22, 2005 3:29 pm
Location: Cone, France

Re: [Help REQ] rtmp streaming error

Postby erezl on Tue Jan 29, 2008 10:32 am

Is there an intention to implement it?
erezl
New Cone
New Cone
 
Posts: 7
Joined: Sun Jan 13, 2008 2:30 pm

Re: [Help REQ] rtmp streaming error

Postby j-b on Tue Jan 29, 2008 7:38 pm

Yes. Someone is working on it. A patch was here today on the ml.
Jean-Baptiste Kempf
http://www.jbkempf.com/ - http://www.jbkempf.com/blog/category/Videolan
VLC media player developer and Sites administrator
If you want an answer to your question, just be specific and verbose. Don't PM.
j-b
Site Admin
Site Admin
 
Posts: 12671
Joined: Fri Jul 22, 2005 3:29 pm
Location: Cone, France

Re: [Help REQ] rtmp streaming error

Postby pt-1 on Tue Feb 19, 2008 8:05 pm

Is there any more progress with this ?

It would be nice to use VLC to play BBC UK iPlayer Streams
pt-1
New Cone
New Cone
 
Posts: 4
Joined: Mon Jan 23, 2006 1:37 pm
Location: UK / LONDON

Re: [Help REQ] rtmp streaming error

Postby Andrey.Hohutkin on Thu Feb 21, 2008 7:47 pm

There is a bit progress with rtmp.
I've already built vlc with this new module.
VLC uses ffmpeg to decode flv stream so it needs someone to patch ffmpeg too.
I've got a patch for ffmpeg too and built it.
Now I have VLC which can play rtmp stream for a 30-300 secs without sound. Only video.
I'm working on it trying to help to that brave man which wrote rtmp implementation for VLC.
It is still in development status.
Andrey.Hohutkin
New Cone
New Cone
 
Posts: 2
Joined: Thu Feb 21, 2008 7:40 pm

Re: [Help REQ] rtmp streaming error

Postby darkexcoriater on Fri Apr 04, 2008 8:41 am

Hello every one,
I have been woking on a RTMP client but cant seem to make the video run the server starts by only streaming audio
darkexcoriater
New Cone
New Cone
 
Posts: 1
Joined: Fri Apr 04, 2008 8:13 am

Re: [Help REQ] rtmp streaming error

Postby user411 on Wed Apr 09, 2008 8:10 pm

Andrey.Hohutkin, are you implying that soon we will be able to specify access=rtmp? That is, is RTMP output streaming getting worked on in VLC?

I think I have a similar problem to darkexcoriater. When I use the line associated with a streamed h.264/mp3 file:

vlc --sout "#transcode{vcodec=FLV1,acodec=mp3,samplerate=11025}:std{access=http{mime=video/x-flv},mux=ffmpeg{mux=flv},dst=0.0.0.0:8080/stream.flv}" rtsp://127.0.0.1:554/sample_h264_100kbit.mp4 --sout-transcode-hurry-up --sout-transcode-high-priority --high-priority --repeat --color -I dummy -vvv

I can receive the audio in Flash/Flex with

NetConnection nc = new NetConnection( null );
... setup nc listeners ...
NetStream ns = new NetStream( nc );
... setup ns listeners ...
ns.play( "http://127.0.0.1:8080/stream.flv" );

I never receive video, whether I specify vcodec=H264 or vcodec-FLV1 in the transcode tag above. Both ways I receive audio.

I'm running with the 3/22 nightly build on Windows.
user411
Blank Cone
Blank Cone
 
Posts: 10
Joined: Wed Mar 26, 2008 11:47 pm

Re: [Help REQ] rtmp streaming error

Postby Andrey.Hohutkin on Thu Apr 10, 2008 1:01 pm

No. Only RTMP as input source is developing now.
Andrey.Hohutkin
New Cone
New Cone
 
Posts: 2
Joined: Thu Feb 21, 2008 7:40 pm

Re: [Help REQ] rtmp streaming error

Postby jpstrikesback on Tue Apr 22, 2008 11:10 pm

Andrey,

RE: This build with RTMP input is potentilaly going to enable one to:

Stream RTMP from Flash Player 9.0.124 to VLC

Receive RTMP stream and Transcode to multiple RTSP stream outs.

Am I correct? How far off are you?

Thanks,
Jon
jpstrikesback
Blank Cone
Blank Cone
 
Posts: 10
Joined: Wed Apr 16, 2008 7:22 pm

Re: [Help REQ] rtmp streaming error

Postby dionoea on Wed Apr 23, 2008 10:59 am

You are correct. Note that a patch to implement RTMP server side has been posted to the vlc-devel@ mailing list and should be committed soon.
Antoine Cellerier
dionoea
(Please do not use private messages for support questions)
dionoea
Developer
Developer
 
Posts: 5158
Joined: Thu Dec 04, 2003 12:09 am
Location: Paris, France

Re: [Help REQ] rtmp streaming error

Postby mark.sch on Thu Jun 05, 2008 12:34 pm

Sounds promising. With this announced server patch (Nightly already available?), will VLC get the possibility to connect against running rtmp servers like Red5? Scenario: Take a stream, transcode to H.263 / VP6, act as rtmp client and connect/broadcast to a server via rtmp://myflashserver:1234/streamname ?
mark.sch
New Cone
New Cone
 
Posts: 1
Joined: Thu Jun 05, 2008 12:26 pm

Re: [Help REQ] rtmp streaming error

Postby naskoboy on Fri Jun 05, 2009 6:39 pm

Hi guys,
Is there any progress made on rtmp streams recording/playing ?
This feature would be very much appreciated by tons of people around the globe.
I wish I could contribute code but I am not into C programming :(
naskoboy
New Cone
New Cone
 
Posts: 3
Joined: Sat May 09, 2009 11:33 pm

Re: [Help REQ] rtmp streaming error

Postby naskoboy on Fri Jun 05, 2009 6:45 pm

The brave man implementing this feature could use this URL for tests:
http://bg.tv.free.bg/kanal1online.html
naskoboy
New Cone
New Cone
 
Posts: 3
Joined: Sat May 09, 2009 11:33 pm


Return to VLC stream-output (sout)

Who is online

Users browsing this forum: Yahoo [Bot] and 13 guests