View Single Post
  #1  
Old 05-16-2012, 09:10 AM
babaganoosh babaganoosh is offline
Junior Member
 
Join Date: May 2012
Posts: 8
babaganoosh is on a distinguished road
Default

How can I record these RTMP streams?


A friend's son graduated from college last week. They asked me to see about making a copy of the video from the service.

Here's the web page with the video:

http://www.emory.edu/commencement/webcast/index.html

Here's I think the flash code related to the video. I tried saving the mp4, but it's only 73KB, I change the rtmp to http and that doesn't let you get the file. Any advice?

<script src="http://realaudio.service.emory.edu/clients/jwplayer5.9/jwplayer.js" type="text/javascript" ></script>
<div id="mediaplayer" ></div>
<script type="text/javascript">
jwplayer('mediaplayer').setup({
'id': 'playerID',
'width': '520',
'height': '316',
'provider': 'rtmp',
'streamer': 'rtmp://realaudio.service.emory.edu/EVENTS/COMMENCE/',
'file': 'commence2012.mp4',
'modes': [
{type: 'flash', src: 'http://realaudio.service.emory.edu/clients/jwplayer5.4/player.swf'},
{type: 'html5',
config: {
'file': 'http://realaudio.service.emory.edu/m3ugen/iPhone-src/EVENTS/COMMENCE/commence2012.mp4',
'provider': 'video'}
}
]
});
</script>
Reply With Quote