Audio/video stream recording forums
|
Attention Visitor: |
You may have to register or log in before you can post:
|
|
|
Thread Tools | Display Modes |
#11
|
|||
|
|||
Re: How can I save this stream ?Bravo. Thanks
|
#12
|
|||
|
|||
Re: How can I save this stream ?hi, i'm new here. is there anyway i can save the script from itunes festival?
i tried recording it with video capture but my computer isnt the best and the frame rate was too high so i'm looking for the best quality orginal file from the stream. https://search.itunes.apple.com/WebO...path=thescript using http sniffer i found this: http://streaming.itunesfestival.com/...cript_vod.m3u8 i tried using the deadmau5 one as template and i inputted this: ffmpeg -i "C:\Users\hails\Desktop\277228393_thescript_vod.m3 u8" -c copy "Concert.mkv" it said: invalid data found when processing input. i then tried downloading the deadmau5 file from the m3u8 on this forum. it said http error 403 forbidden... failed to open segment of playlist 0.... failed to open first segment... input/output error. the deadmau5 m3u8 file opens in itunes. it says internet songs but doesnt play. my script m3u8 does not open at all in itunes. would be really grateful for any help. thanks Last edited by babyhails : 09-29-2014 at 09:22 AM. |
#13
|
|||
|
|||
Re: How can I save this stream ?anyone know what im doing wrong? ^^
Last edited by babyhails : 09-29-2014 at 01:20 PM. |
#14
|
|||
|
|||
Re: How can I save this stream ? |
#15
|
|||
|
|||
Re: How can I save this stream ?Quote:
Thanks for the advice but it's a video stream playing through itunes, I've seen on here the stream is many .ts files in a .m3u8 playlist. I need access to that playlist file as I think that's where I'm going wrong with ffmpeg. Thanks. |
#16
|
|||
|
|||
Re: How can I save this stream ?here is a shell script I found that can save the itunes festival streams.
https://gist.github.com/TheMooseHut/...2c4fd0966babd9 I wrote a little script to generate chapter marks from song changes in file names. I also took the setlist to add the song titles for chapter marks. I have them for several shows. I adjusted them because some cut in the middle of speech, little too early or late. if anyone is interested. here is one for pharrell. http://pastebin.com/Va8RpREi if you save that as pharrellwilliams.txt you can add the chapter marks with this command. Quote:
the raw ts stream has some kind of timed id3 meta data. I haven't been able to find anything to parse these tags. If you download with ffmpeg then they are auto-stripped anyway though. I was hoping these would be song titles and/or timecodes. I am not sure. The song number change in the file titles and the segment duration in the m3u8 is enough to calculate the chapter points though |
#17
|
|||
|
|||
Re: How can I save this stream ?Quote:
I downloaded wireshark (cant get it to work), i have http sniffer and ffmpeg. I don't really care about the chapters I just want the 1hr25 concert. Any type or format would do. Thanks. i tried to create a script but .sh is for linux isn't it? i only run windows 7. this was the script i had, it was a txt file i renamed .js for windows but it says line 1 character 1 error or something like that. what am i doing wrong? this was the script: #!/bin/bash cookie=$1 day=$2 artist=$3 mkdir -p $thescript cd $thescript index=$(curl -s -b "$cookie" http://streaming.itunesfestival.com/...cript_vod.m3u8 | tail -n1) files=$(curl -s -b "token=expires=1412223303~access=/auth/*~md5=ca2f408cd8c0397c7a200a7235b327f3" http://streaming.itunesfestival.com/auth/eu1/vod/20140915/v2/$index) for i in $files; do if [[ "$i" =~ ".ts" ]]; then curl -b "$cookie" http://streaming.itunesfestival.com/auth/eu1/vod/20140915/v2//$i > $i fi done cat * > $thescript.ts mv $thescript.ts ../ cd .. rm -r $thescript Last edited by babyhails : 10-01-2014 at 01:16 PM. |
#18
|
|||
|
|||
Re: How can I save this stream ?anyone got any other ideas for saving the itunes festival stream? i really dont understand scripts and stuff like that.
thanks |
Tags: live stream http |
Thread Tools | |
Display Modes | |
|
|