Audio/video stream recording forums
|
Attention Visitor: |
You may have to register or log in before you can post:
|
|
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
Tricky RTSPHey guys,
Having trouble capturing what should be a pretty simple .mov file. I've tried Replay media catcher, using vlc - pretty much everything I can find but no luck. It's actually an audio file that I'm after, quality is kind of important so I'm trying anything that simply isn't recording from my sound card via Audacity or something. Here is the stream: http://www.usarmyband.com/Broadcast/...sterclass.html or: http://www.usarmyband.com/Broadcast/...4/Yamamoto.mov Bloody frustrating this. I've spent the past few hours googling around and tinkering with apps trying to get it. PLEASE let me know if any of you guys have a solution. Much thanks |
#2
|
|||
|
|||
Re: Tricky RTSPJust save the one that ends with .mov and convert it to what ever you like.
In Firefox Code:
File -> Save Page As... Yamamoto.mov |
#3
|
|||
|
|||
Re: Tricky RTSPThank you for the response!
Boy, I wish it were that easy. When I view page source from here: http://www.usarmyband.com/Broadcast/...sterclass.html there is a Yamamoto.mov I can save to my computer, but when I open THAT .mov in VLC it then opens the RTSP stream - which reads (according to VLC): rtsp://stream.army.mil/army%20band/broadcast%20archives/2007/03/24/Yamamoto/yamamoto-128k.mov It is here that I am stuck and need some assistance. In theory, if something is streaming to my computer, shouldn't I be able to capture it? Why is this proving to be so difficult(!)? |
#4
|
|||
|
|||
Re: Tricky RTSPHi
I think it might only be possible to download that stream in "real time". With Windows the stream can be captured (without transcoding) using VLC-1.1.11 with a command like this:- Code:
"C:\Program Files\VideoLAN\VLC\vlc.exe" rtsp://stream.army.mil/Army%20Band/Broadcast%20Archives/2007/03/24/Yamamoto/Yamamoto-128k.mov --sout "#std{access=file,mux=mp4,dst=C:\Yamamoto.m4a}" VLC sample is here ---> http://www.mediafire.com/?hbijbwa425xbl6k FFmpeg does a better job. Like this:- Code:
ffmpeg -i "rtsp://stream.army.mil/Army%20Band/Broadcast%20Archives/2007/03/24/Yamamoto/Yamamoto-128k.mov" -c:a flac Yamamoto.flac This sounds good to me. FFmpeg sample is here ---> http://www.mediafire.com/?96q282vs67m9g4c FFmpeg from here ---> http://ffmpeg.zeranoe.com/builds/ "just pick the static builds" With VLC or FFmpeg, you can interrupt/abort after a minute or two to check the quality before you save the whole stream. If you're not comfortable with command line, go with Audacity or something. EDIT There's a problem with the flac file downloaded with FFmpeg. It plays OK and sounds good, but it's not "seekable". A way to overcome this is to convert it to mp3 like this:- Code:
ffmpeg -i Yamamoto.flac -c:a libmp3lame -b:a 128k Yamamoto.mp3 Last edited by bat999 : 12-13-2011 at 11:24 AM. |
#5
|
|||
|
|||
Re: Tricky RTSPThanks for the help, bat999. For some reason ffmpeg doesn't want to work on my rig. I tried to record in real time with Audacity but for some reason the quality isn't nearly as good as what you're getting with ffmpeg (my audacity file sounds kind of dull and lacking in upper frequencies). Might this be a settings problem? Maybe my sound card just sucks?
If anyone else has any tips/tricks I'd greatly appreciate it |
#6
|
|||
|
|||
Re: Tricky RTSPOld versions of RMC (prior to RMC becoming just rebadged jaksta) will download that rtsp link, also mass downloader (even very old versions) will download it too.
Was able to download Yamamoto-128k.mov using v3.4 of mass downloader. |
#7
|
|||
|
|||
Re: Tricky RTSPQuote:
ffmpeg -i "rtsp://stream.army.mil/Army%20Band/Broadcast%20Archives/2007/03/24/Yamamoto/Yamamoto-128k.mov" -acodec copy yamamoto-128k.mp4 reencoding is bad. even to lossless flac |
#8
|
|||
|
|||
Re: Tricky RTSPQuote:
Let FFmpeg mux straight into mp4 (or m4a). No need to transcode. |
Tags: mov, quicktime, rtsp, streaming |
Thread Tools | |
Display Modes | |
|
|