Audio/video stream recording forums

Attention Visitor:
You may have to register or log in before you can post:
  • Click the register link to sign up.
  • Registered members please fill in the form below and click the "Log in" button.
To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Audio/video stream recording forums > Streaming media recording forum > Video stream recording
Register FAQ Members List Calendar Mark Forums Read

Reply Post New Thread
 
Thread Tools Display Modes
  #1  
Old 03-22-2013, 05:49 PM
MrDream MrDream is offline
Junior Member
 
Join Date: Mar 2013
Posts: 22
MrDream is on a distinguished road
Default

an error message in youtube-dl can anybody help me please


i tried to download a live stream from youtube by youtube-dl.exe but i get this error " no conn or url_encoded_fmt_stream_map information found in video info "
7 i tired to use many programs that catch videos but no one of this program catch it
can anybody help me please
the url of the live stream now in youtube
http://www.youtube.com/watch?v=gLsLyT6uqt8
Reply With Quote
  #2  
Old 03-23-2013, 04:28 AM
synopeas synopeas is offline
Junior Member
 
Join Date: Jan 2011
Posts: 16
synopeas is on a distinguished road
Default

Re: an error message in youtube-dl can anybody help me please


There are several old threads here about capturing live youtube videos.
Just do a search for youtube and ffmpeg and you should find an answer.
Reply With Quote
  #3  
Old 03-23-2013, 04:36 AM
jz1 jz1 is offline
Junior Member
 
Join Date: Mar 2013
Posts: 3
jz1 is on a distinguished road
Default

Re: an error message in youtube-dl can anybody help me please


I was trying to rip also UMFTV.
This would help you ease up the process, created a batch script to do it little faster.

The problem with the FFMPEG method was i couldnt get audio but got it working with a seperate process to rip the audio. just make sure to mux it together in sync after and use the highest stream source.

Get the m3u8 from the page source of the youtube live page, make sure the "\/" are changed into "/".

You need a compiled ffmpeg file ofcourse and just paste it into one dir.
I've created 2 seperate batch files for audio / video. So you can check for errors and stuff if ffmpeg closes, instead of direct calling it.
:: umftvdl.bat
Code:
@echo off
ECHO. Please enter the Youtube Live URL (.m3u8):
set /p url=
ffmpeg -i "%url%"
ECHO. ------------------------------------------------------------------
ECHO. Only fill in the last parameter!
ECHO. Example: "Stream #0:3:" only fill in the number:
ECHO. 3
ECHO. ------------------------------------------------------------------
ECHO. Which Stream do u want to use for VIDEO? (Proberly 6 for 1280x720)
set /p video=
ECHO. ------------------------------------------------------------------
ECHO. Which Stream do u want to use for AUDIO? (Proberly 7 for ~256kb/s)
set /p audio=
ECHO. ------------------------------------------------------------------
ECHO. What must become the filename?
set /p name=
ECHO. ------------------------------------------------------------------
ECHO. PLEASE CHECK IF EVERYTHING RUNS WITHOUT ERRORS OTHERWAYS TRY AGAIN!!!
ECHO. ------------------------------------------------------------------
start audio.bat
start video.bat
ping -n 30 localhost>nul
EXIT
:: audio.bat
Code:
ffmpeg -i "%url%" -map 0:%audio% -c:a copy %name%.aac
pause
exit
::video.bat
Code:
ffmpeg -i "%url%" -map 0:%video% -c:v copy %name%.mp4
pause
exit
Mayby not the nicest approach with the batch, but it works fine for me and i am not a coder
Reply With Quote
  #4  
Old 03-23-2013, 06:32 AM
MrDream MrDream is offline
Junior Member
 
Join Date: Mar 2013
Posts: 22
MrDream is on a distinguished road
Default

Re: an error message in youtube-dl can anybody help me please


Quote:
Originally Posted by jz1 View Post
I was trying to rip also UMFTV.
This would help you ease up the process, created a batch script to do it little faster.

The problem with the FFMPEG method was i couldnt get audio but got it working with a seperate process to rip the audio. just make sure to mux it together in sync after and use the highest stream source.

Get the m3u8 from the page source of the youtube live page, make sure the "\/" are changed into "/".

You need a compiled ffmpeg file ofcourse and just paste it into one dir.
I've created 2 seperate batch files for audio / video. So you can check for errors and stuff if ffmpeg closes, instead of direct calling it.
:: umftvdl.bat
Code:
@echo off
ECHO. Please enter the Youtube Live URL (.m3u8):
set /p url=
ffmpeg -i "%url%"
ECHO. ------------------------------------------------------------------
ECHO. Only fill in the last parameter!
ECHO. Example: "Stream #0:3:" only fill in the number:
ECHO. 3
ECHO. ------------------------------------------------------------------
ECHO. Which Stream do u want to use for VIDEO? (Proberly 6 for 1280x720)
set /p video=
ECHO. ------------------------------------------------------------------
ECHO. Which Stream do u want to use for AUDIO? (Proberly 7 for ~256kb/s)
set /p audio=
ECHO. ------------------------------------------------------------------
ECHO. What must become the filename?
set /p name=
ECHO. ------------------------------------------------------------------
ECHO. PLEASE CHECK IF EVERYTHING RUNS WITHOUT ERRORS OTHERWAYS TRY AGAIN!!!
ECHO. ------------------------------------------------------------------
start audio.bat
start video.bat
ping -n 30 localhost>nul
EXIT
:: audio.bat
Code:
ffmpeg -i "%url%" -map 0:%audio% -c:a copy %name%.aac
pause
exit
::video.bat
Code:
ffmpeg -i "%url%" -map 0:%video% -c:v copy %name%.mp4
pause
exit
Mayby not the nicest approach with the batch, but it works fine for me and i am not a coder
thanks for answer & replay bro but i 'm not professionel in using youtube-dl i start use it from just a couples of days
i need to know what this error mean & how can i download the ultra music festival live stream on youtube in an easy way for me
i try to use many programs fro download videos like replay media capture , Web Stream Recorder , StreamTransport & coojah with blader but this programs doesn't work with the url of this stream & doesn't capture nothing
how i can download it it with youyube-dl with another way


Last edited by MrDream : 03-23-2013 at 07:16 AM.
Reply With Quote
  #5  
Old 03-23-2013, 08:33 AM
jz1 jz1 is offline
Junior Member
 
Join Date: Mar 2013
Posts: 3
jz1 is on a distinguished road
Default

Re: an error message in youtube-dl can anybody help me please


Quote:
Originally Posted by MrDream View Post
thanks for answer & replay bro but i 'm not professionel in using youtube-dl i start use it from just a couples of days
i need to know what this error mean & how can i download the ultra music festival live stream on youtube in an easy way for me
i try to use many programs fro download videos like replay media capture , Web Stream Recorder , StreamTransport & coojah with blader but this programs doesn't work with the url of this stream & doesn't capture nothing
how i can download it it with youyube-dl with another way

Use FFMPEG not youtube-dl. Don't think there is anything you can do but wait till youtube-dl does support that stream.e
Reply With Quote
  #6  
Old 03-23-2013, 08:49 AM
MrDream MrDream is offline
Junior Member
 
Join Date: Mar 2013
Posts: 22
MrDream is on a distinguished road
Default

Re: an error message in youtube-dl can anybody help me please


Quote:
Originally Posted by jz1 View Post
Use FFMPEG not youtube-dl. Don't think there is anything you can do but wait till youtube-dl does support that stream.e
thanks man but how can i use ffmpeg to download this stream ? where the codes for this ?
Reply With Quote
  #7  
Old 03-23-2013, 09:19 AM
chap chap is offline
Senior Member
 
Join Date: Feb 2011
Location: Ukraine
Posts: 1,165
chap is on a distinguished road
Default

Re: an error message in youtube-dl can anybody help me please


Quote:
Originally Posted by MrDream View Post
thanks man but how can i use ffmpeg to download this stream ? where the codes for this ?
simple use vlc
Reply With Quote
  #8  
Old 03-23-2013, 09:27 AM
MrDream MrDream is offline
Junior Member
 
Join Date: Mar 2013
Posts: 22
MrDream is on a distinguished road
Default

Re: an error message in youtube-dl can anybody help me please


Quote:
Originally Posted by chap View Post
simple use vlc
i try many times to use vlc but an error occur & vlc can't play this stream of ultra music festival on youtube

Reply With Quote
  #9  
Old 03-23-2013, 09:30 AM
chap chap is offline
Senior Member
 
Join Date: Feb 2011
Location: Ukraine
Posts: 1,165
chap is on a distinguished road
Default

Re: an error message in youtube-dl can anybody help me please


use latest vlc
Reply With Quote
  #10  
Old 03-23-2013, 02:05 PM
MrDream MrDream is offline
Junior Member
 
Join Date: Mar 2013
Posts: 22
MrDream is on a distinguished road
Default

Re: an error message in youtube-dl can anybody help me please


Quote:
Originally Posted by chap View Post
use latest vlc
i don't think that vlc will play & capture the stream of ultra music festival because i use many programs for capture & sniff the url & download the stream & no one of this program can catch the real url of the stream on youtube & download it
i don't know what is the problem with this stream ? ultra music festival make live stream very secure that the programs can catch the stream or what ?
Reply With Quote
Reply Post New Thread


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -6. The time now is 08:13 AM.


Powered by All-streaming-media.com; 2006-2011
vB forum hacked with Zoints add-ons