problem using StreamBox VCR, ASFrecorder
|
|
untheist
Newbie
|
28. February 2002 @ 08:43 |
Link to this message
|
launch (http://launch.yahoo.com/) recently started using a new technique to prevent people from ripping the streamed videos they offer. well, i've figured out how to get the real URLs of the videos, but when i try to use ASFrecorder or StreamBox VCR to capture the streams, all i get is the audio. here is an example of a url:
mms://l5.dallas.broadcast.com/wm.broadcast.com/broot3/BusShare09/launch.com/13/2642849.wmv
when you just click on that URL and let windows media player open it, it has video, but when you try to use a program to save the file, it only gets audio. does anyone know how the server is detecting the difference or how to evade this detection?
|
Advertisement
|
  |
|
I hate titles
35 product reviews
|
28. February 2002 @ 08:54 |
Link to this message
|
I guess they've just started using the latest Windows Media format and it has some tweaks that make both tools useless for downloading videos. Just an idea, not sure.
|
untheist
Newbie
|
28. February 2002 @ 10:11 |
Link to this message
|
do you know of any links to information about these tweaks? i'd be willing to try to fix the ASFrecorder source to work around the tweaks, if i knew what they were. also, i was able to rip version 8 videos from microsoft's site. i don't have the link, but they showcase the format's ability for high quality with a cristina aguilera video (:shudder:), which i was able to rip rather easily. that leads me to believe it must be a "tweak" which can be turned on or off depending on server settings, etc.
|
neworder
Newbie
|
11. April 2002 @ 10:57 |
Link to this message
|
|
untheist
Newbie
|
11. April 2002 @ 11:10 |
Link to this message
|
i can get the exact URL of any of the videos (as i did in the first post here), but i still cannot get ASFrecorder to record any video, it only records audio. i gave up on the whole thing a while ago.
This message has been edited since posting. Last time this message was edited on 11. April 2002 @ 11:11
|
wheez50
Inactive
|
16. April 2002 @ 12:34 |
Link to this message
|
Solution offered on other webites is to turn off autodetect streaming format and choose mms: over http
Good luck
WheeZ50 - IT makes a prodigity from a prodig...
|
assie
Suspended due to non-functional email address
|
25. April 2002 @ 23:39 |
Link to this message
|
Can you guys tell me how to extract those URLs from launch.com ?
Thanks
|
untheist
Newbie
|
30. April 2002 @ 15:53 |
Link to this message
|
it's a long process... start by right-clicking somewhere in the frame of the popup window which contains the video, and clicking View Source. then, somewhere in the javascript you will find the first URL. if it isn't shown in comments, then you will have to figure it out from a combination of the page's url (in "Properties" when right-click) and the javascript code. it should be explicitly given in the comments, though, unless they change the code as a result of this explanation. put that URL in a new browser window, and it should pop up a windows media player session. from that, you can get the URL of the asx file. put THAT in a new window, and then find out what the temporary asx file is on your computer. Temporary Internet Files/[random numbers/letters]/filename.asx, or wherever your browser is set to. open that asx file with Wordpad (not MS Word or notepad), and it should give you the explicit mms:// URL of the video. hope you have better luck getting the video part rather than just the sound.
|
sorbitol
Newbie
|
8. June 2002 @ 19:35 |
Link to this message
|
<%
'CopyLeft June 08,2002 by Sorbitol
'Save All Text to SomeFile.asp
'Run On Webserver
'In FormBox type Launch.yahoo.com Video ID (Hold Mouse over Link to PLay Video)
'Use Streambox to Capture Video!!
vn = Request.Querystring("vn")
Function URLDecode(Expression)
Dim strSource, strTemp, strResult
Dim lngPos
strSource = Replace(Expression, "+", " ")
For lngPos = 1 To Len(strSource)
strTemp = Mid(strSource, lngPos, 1)
If strTemp = "%" Then
If lngPos + 2 < Len(strSource) Then
strResult = strResult & _
Chr(CInt("&H" & Mid(strSource, lngPos + 1, 2)))
lngPos = lngPos + 2
End If
Else
strResult = strResult & strTemp
End If
Next
URLDecode = strResult
End Function
Function GUID()
GUID = server.createobject ("scriptlet.typelib").guid
GUID = replace(guid,"{","")
GUID = replace(guid,"}","")
GUID = replace(guid,"-","")
GUID = cstr(left(guid,len(guid)-2))
end Function
Function GetPlayString(vn)
If VN <> "" then
A1 = "http://launchtoday.launch.yahoo.com/player/medialog.asp?v="
A2 = VN & "&csi=385400072&b=300"
A3 = "&playGUID=" & GUID
A4 = "&show=p%2F3%2Exml&origin=35"
A5 = "&userGUID=" & GUID & "&clientID=1"
A6 = "&segment=2&sk=726kstguesj1g4cfb40be&z=ms.asx"
GetPlayString = A1 & A2 & A3 & A5 & A4 & A6
Else
GetPlayString = ""
End If
End Function
File = GetPlaystring(vn)
Function GetYahoo1()
If vn <> "" Then
Dim xml, Dummy
Set xml = Server.CreateObject("MSXML2.ServerXMLHTTP")
xml.Open "GET", File, False
xml.Send
GetYahoo1= xml.responseText
Set xml = Nothing
Else
GetYahoo1= ""
End If
End Function
Function GetYahoo2(Link1)
If vn <> "" Then
Dim xml
Set xml = Server.CreateObject("MSXML2.ServerXMLHTTP")
xml.Open "GET", Link1, False
xml.Send
GetYahoo2 = xml.responseText
Set xml = Nothing
Else
GetYahoo2 = ""
End If
End Function
Function YahooSid2File()
If vn <> "" Then
Dummy = "http://mediaframe.yahoo.com/buildlist.asp?"
Dummy = Dummy & "sid="
Dummy = Dummy & Replace(GetYahooVideo,"!","")
Dummy = Dummy & "&m=wmv&r=300"
YahooSid2File = Dummy
Else
YahooSid2File = ""
End If
End Function
YahooVideoFileLink = GetYahoo2(GetYahoo1)
%>
<html>
<head>
<title>Yahoo Launch Hack</title>
</head>
<body>
<form name="main">Enter the Yahoo Launch Video Number: <br>
<input type="text" name="VN" size="20"/><br>
<input type="submit" value="Create Link"/><br>
<hr>
<% If vn <> "" Then %>
<script>
function copyit(field) {
field.focus();
field.select();
document.execCommand("Copy");
copiedtext=window.clipboardData.getData("Text");
}
</script>
<textarea name="YahooVideoURL" rows="8" cols="80" readonly>
<%=YahooVideoFileLink%>
</textarea>
<br>
<INPUT TYPE="button" VALUE="Copy Text To ClipBoard" onClick="copyit(this.form.YahooVideoURL)">
<br>
<OBJECT ID="mediaPlayer"
CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"
CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab"
STANDBY="Loading Microsoft Windows Media Player components..."
TYPE="application/x-oleobject">
<PARAM NAME="fileName" VALUE="<%=YahooVideoFileLink%>">
<PARAM NAME="animationatStart" VALUE="true">
<PARAM NAME="transparentatStart" VALUE="true">
<PARAM NAME="autoStart" VALUE="false">
<PARAM NAME="showControls" VALUE="true">
</OBJECT><br>
<a href="http://www.afterdawn.com/software/audio_software/audio_tools/streambox_vcr.cfm">Streambox</a>
<% End If %>
</form>
</body>
</html>
|
sorbitol
Newbie
|
8. June 2002 @ 19:42 |
Link to this message
|
If you enjoy my above code which will give you the mms:// file for any launch.yahoo.com video please post a thank you to this message board!!
Sorbitol!
|
I hate titles
35 product reviews
|
10. June 2002 @ 00:51 |
Link to this message
|
Thanks on behalf of AfterDawn.com (even that I'm allergic to ASP :-), I bet this will ease things for at least some of our users.
|
sorbitol
Newbie
|
10. June 2002 @ 08:20 |
Link to this message
|
This message has been edited since posting. Last time this message was edited on 10. June 2002 @ 10:27
|
erif
Newbie
|
10. June 2002 @ 23:59 |
Link to this message
|
Hi,
I'd like to download the BMW Film "Follow" by director Wong Kar Wai which has been taken off the site for unexplained reasons.
I found an alternative URL but I can't download it through Media Player.
mms://a1359.m.akastream.net/7/1359/3261/v001/fallon.download.akamai.com/3261/films/maeo670cch_WMV_300k.wmv
I guess I won't be able to use the BMW Film Player to download it either.
Any suggestions? Thanks for the help.
|
barnsoir
Suspended due to non-functional email address
|
9. July 2002 @ 02:32 |
Link to this message
|
Good work with the code for the URL's - but I still only get the audio section of the file? Streambox will detect that a file is e.g. 9.6MB, but will complete downloading at 5.2MB with no video. I've tried changing the protocol from auto to MMS(TCP), MMS(HTTP) etc but no difference. Any suggestions anyone? TIA
|
untheist
Newbie
|
9. July 2002 @ 04:46 |
Link to this message
|
yeah, i said that finding the mms:// url is pretty simple (although that makes it easier), but the problem is using a program to capture the stream. i guess no one else has suggestions as to how to trick the server into believing you are really windows media player? it probably wouldn't entail too much alteration of the source code for either StreamBox or ASFrecorder, and ASFrecorder came with the source code, so i could probably alter it, or someone could.
|
barnsoir
Suspended due to non-functional email address
|
10. July 2002 @ 13:13 |
Link to this message
|
sorry, i thought the link provided would work for both audio and video. however, in the meantime I have discovered http://www.sputnik7.com/vod/index.jsp which seems to have plenty of stuff to offer and is relatively simple to work out the file name for streambox
|
DIGGLAH
Newbie
|
12. July 2002 @ 09:07 |
Link to this message
|
Thanx for the nice mms URL extraction tool sorbitol!!
Hopefully this will help me yield better results from launch.com ... because so far... it's been a rough road.
1
|
sorbitol
Newbie
|
12. July 2002 @ 16:25 |
Link to this message
|
If you have any problems with the above code, post a reply here and I will see what I can do...I have not checked it if still works with launch in about 6 weeks but it should be good....
|
DIGGLAH
Newbie
|
15. July 2002 @ 08:46 |
Link to this message
|
That asp-based app you posted seems to be a great shortcut.
However, I am experiencing the same results as untheist. It seems like the file is being recorded properly... the percentage rate slowly climbs.. but then at about 54% .. the download completes and I have no video.. only audio :(
Guess the admins at launch.com know how to foil the exploits of Streambox_VCR!?
1
This message has been edited since posting. Last time this message was edited on 15. July 2002 @ 08:47
|
rayinbend
Newbie
|
22. July 2002 @ 07:29 |
Link to this message
|
Has anyone figured out the Yahoo Launch video thing yet? I still haven't been able to get anything from them except the audio portions of the music video using ASF Recorder. The whole file downloads (or appears to), but when I play the file, all I get is audio.
|
untheist
Newbie
|
22. July 2002 @ 11:12 |
Link to this message
|
i'm sure the answer lies somewhere in the documentation for the media player or the file format. personally, i don't care enough to search through all that for verification/authentication options, but i'm sure if someone spent enough time doing it, they'd figure out what's being done, and then be able to incorporate that into the source for asf recorder (since it is distributed with source usually). anyone up for the challenge? hmmmph, doubt it. after all, laziness is a virtue of a great programmer ::grin::
|
sorbitol
Newbie
|
22. July 2002 @ 20:54 |
Link to this message
|
As of July 22, 11:00 PM MST if you use the link below:
http://www25.brinkster.com/nlamprecht/launch
and put in the launch video id that is obtain by moving your mouse over the video and then looking at the status bar (lower left browser window).
After you input the video link you will get back a mms:// stream. Copy that whole line to streambox and it will save BOTH the video and the audio.
This message has been edited since posting. Last time this message was edited on 22. July 2002 @ 20:57
|
untheist
Newbie
|
23. July 2002 @ 11:01 |
Link to this message
|
i had a post asking for the source to that hack, but now i've used it, and same problem. only audio is ripped. i can put the url into the address bar and WMP will play video and audio, but streambox vcr will only rip audio (and asfrecorder, too). is this mms:// url ripping video for anyone?
This message has been edited since posting. Last time this message was edited on 23. July 2002 @ 11:08
|
rayinbend
Newbie
|
23. July 2002 @ 12:56 |
Link to this message
|
I tried the hack and same thing...audio, no video.
|
Advertisement
|
  |
|
sorbitol
Newbie
|
23. July 2002 @ 13:16 |
Link to this message
|
What video? I just recorded the Weezer video with the muppets last night?
|