Audio/video stream recording forums
|
Attention Visitor: |
You may have to register or log in before you can post:
|
|
|
Thread Tools | Display Modes |
#1
|
|||
|
|||
ERROR: Closing connection: NetStream.Play.StreamNotFoundIn a flash object I have param like this:
<param name="flashvars" value="stream_url=rtmp://91.230.92.5:80/vod/ictv/2011/10/18/mp4:20111018183746.mp4&thumbnail_url=/public/images/gallery/2011/10/18/20111018183746.jpg&lnk=http://pogoda.ictv.ua&stype=rtmp&image_id=2400"> In command line I write: rtmpdump -r rtmp://91.230.92.5:80/vod/ictv/2011/10/18/mp4:20111018183746.mp4 -o rtmp.mp4 In result: INFO: Connected... ERROR: Closing connection: NetStream.Play.StreamNotFound I use Linux What I do wrong? |
#2
|
|||
|
|||
Re: ERROR: Closing connection: NetStream.Play.StreamNotFoundCode:
rtmpdump.exe -r "rtmp://91.230.92.5:80/vod/ictv/2011/10/18/mp4:20111018183746.mp4" -a "vod" -y "ictv/2011/10/18/mp4:20111018183746.mp4" -o Test.flv Code:
RTMPDump v2.4 GIT-2011-09-30 (Compiled by KSV) (c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL Connecting ... INFO: Connected... Starting download at: 0.000 kB INFO: Metadata: INFO: trackinfo: INFO: timescale 2997.00 INFO: length 697300.00 INFO: language eng INFO: sampledescription: INFO: sampletype avc1 INFO: timescale 48000.00 INFO: length 11170816.00 INFO: language eng INFO: sampledescription: INFO: sampletype mp4a INFO: audiochannels 2.00 INFO: audiosamplerate 48000.00 INFO: videoframerate 29.97 INFO: aacaot 2.00 INFO: avclevel 30.00 INFO: avcprofile 77.00 INFO: audiocodecid mp4a INFO: videocodecid avc1 INFO: width 768.00 INFO: height 576.00 INFO: frameWidth 720.00 INFO: frameHeight 576.00 INFO: displayWidth 768.00 INFO: displayHeight 576.00 INFO: framerate 29.97 INFO: moovposition 42520499.00 INFO: duration 232.73 660.476 kB / 3.84 sec (1.6%) |
#3
|
|||
|
|||
Re: ERROR: Closing connection: NetStream.Play.StreamNotFoundI am happy!!! Thank you very much!!!
|
#4
|
|||
|
|||
Re: ERROR: Closing connection: NetStream.Play.StreamNotFoundI have problem. In result audio is mixed For example: 5 sec in start i can hear in other place of video again.
Can anybody help me? Last edited by mromanp : 10-21-2011 at 11:04 AM. |
#5
|
|||
|
|||
Re: ERROR: Closing connection: NetStream.Play.StreamNotFoundQuote:
add option (-v) in your code Code:
-r "rtmp://91.230.92.5:80/vod/ictv/2011/10/18/mp4:20111018183746.mp4" -a "vod" -y "ictv/2011/10/18/mp4:20111018183746.mp4" -o Test.flv -v Last edited by chap : 10-22-2011 at 12:58 AM. |
#6
|
|||
|
|||
Re: ERROR: Closing connection: NetStream.Play.StreamNotFoundThank you! I have tested two videos with (-v) and It works very well!!!
|
#7
|
|||
|
|||
Re: ERROR: Closing connection: NetStream.Play.StreamNotFoundGuys, I have similar problem, my source is rtmp://video.intuit.ru/vod/clip939c010l001.flv and
Code:
tmpdump -r "rtmp://video.intuit.ru/vod/clip939c010l001.flv" -a "vod" -y "clip939c010l001.flv" -o Test.flv Code:
tmpdump -r "rtmp://video.intuit.ru/vod/clip939c010l001.flv" -o Test.flv Code:
RTMPDump 2.3 (c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL Connecting ... INFO: Connected... ERROR: Closing connection: NetStream.Play.StreamNotFound Although, rtmp link is alive & there's stream, because simple java code Code:
import com.flazr.rtmp.client.ClientOptions; import com.flazr.rtmp.client.RtmpClient; public class Main { public static void main(String[] args) { String URL = "rtmp://video.intuit.ru/vod/clip939c001l001.flv"; String file = "fileToSave.flv"; ClientOptions options = new ClientOptions(URL, file); RtmpClient.connect(options); } } Code:
04:34:57,333 [New I/O client worker #1-1] INFO [ClientHandshakeHandler] - connected, starting handshake 04:34:57,342 [New I/O client worker #1-1] INFO [RtmpHandshake] - using client version 09007C02 04:34:57,539 [New I/O client worker #1-1] INFO [RtmpHandshake] - server part 1 validation success 04:34:57,545 [New I/O client worker #1-1] INFO [RtmpHandshake] - initialized encryption / decryption ciphers 04:34:57,547 [New I/O client worker #1-1] INFO [RtmpHandshake] - server part 2 validation success 04:34:57,550 [New I/O client worker #1-1] INFO [ClientHandler] - handshake complete, sending 'connect' 04:34:57,555 [New I/O client worker #1-1] INFO [ClientHandler] - sending command (expecting result): [0 COMMAND_AMF0 c3 #0 t0 (0) s0] name: connect, transactionId: 1, object: {app=vod, flashVer=WIN 9,0,124,2, tcUrl=rtmp://video.intuit.ru:1935/vod, fpad=false, audioCodecs=1639.0, videoCodecs=252.0, objectEncoding=0.0, capabilities=15.0, videoFunction=1.0}, args: null 04:34:57,581 [New I/O client worker #1-1] INFO [ClientHandler] - result for method call: connect 04:34:57,581 [New I/O client worker #1-1] INFO [ClientHandler] - sending command (expecting result): [0 COMMAND_AMF0 c3 #0 t0 (0) s0] name: createStream, transactionId: 2, object: null, args: [] 04:34:57,582 [New I/O client worker #1-1] WARN [ClientHandler] - ignoring server command: [0 COMMAND_AMF0 c3 #0 t0 (0) s21] name: onBWDone, transactionId: 0, object: null, args: [] 04:34:57,595 [New I/O client worker #1-1] INFO [ClientHandler] - result for method call: createStream 04:34:57,606 [New I/O client worker #1-1] INFO [FlvWriter] - opened file for writing: /Users/rganeyev/IdeaProjects/IntuitDownloader/fileToSave.flv 04:34:57,621 [New I/O client worker #1-1] INFO [ClientHandler] - onStatus code: NetStream.Play.Reset 04:34:57,622 [New I/O client worker #1-1] INFO [ClientHandler] - onStatus code: NetStream.Play.Start |
#8
|
|||
|
|||
Re: ERROR: Closing connection: NetStream.Play.StreamNotFoundCode:
rtmpdump -r "rtmp://video.intuit.ru:1935/vod/clip939c010l001M" -o t.flv RTMPDump v2.4-75-g5c685f3 (c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL Connecting ... INFO: Connected... Starting download at: 0.000 kB INFO: Metadata: INFO: duration 5677.56 INFO: width 788.00 INFO: height 576.00 INFO: videodatarate 500.00 INFO: framerate 25.00 INFO: videocodecid 4.00 INFO: audiodatarate 96.00 INFO: audiodelay 0.03 INFO: audiocodecid 2.00 INFO: canSeekToEnd TRUE 8444.172 kB / 101.79 sec (1.7%) |
#9
|
|||
|
|||
Re: ERROR: Closing connection: NetStream.Play.StreamNotFoundCode:
K:\rtmpdump>rtmpdump -r rtmp://viki.fcod.llnwd.net/a7881/e2/541/mp4:541_high_360 p_1210030859.mp4 -o 541_high_360p_1210030859.mp4859.mp4 RTMPDump v2.3 (c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL Connecting ... INFO: Connected... ERROR: Closing connection: NetStream.Play.StreamNotFound K:\rtmpdump> |
#10
|
|||
|
|||
Re: ERROR: Closing connection: NetStream.Play.StreamNotFoundCode:
rtmpdump -r rtmp://viki.fcod.llnwd.net/a7881/e2/541/mp4:541_high_360p _1210030859.mp4 -o a.flv RTMPDump v2.4-81-g2872601 (c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license : GPL Connecting ... INFO: Connected... Starting download at: 0.000 kB INFO: Metadata: INFO: duration 2179.76 INFO: moovPosition 32.00 INFO: width 640.00 INFO: height 352.00 INFO: videocodecid avc1 INFO: audiocodecid mp4a INFO: avcprofile 100.00 INFO: avclevel 30.00 INFO: aacaot 2.00 INFO: videoframerate 29.97 INFO: audiosamplerate 48000.00 INFO: audiochannels 2.00 INFO: trackinfo: INFO: length 65390325.00 INFO: timescale 30000.00 INFO: language und INFO: sampledescription: INFO: sampletype avc1 INFO: length 104628224.00 INFO: timescale 48000.00 INFO: language und INFO: sampledescription: INFO: sampletype mp4a 5852.003 kB / 114.03 sec (5.2%) |
Tags: closing connection, error, pogoda ictv ua, pogodaictvua, rtmpdump, stream not found, streamnotfound |
Thread Tools | |
Display Modes | |
|
|