View Single Post
  #4  
Old 06-17-2009, 03:28 AM
Stream Recorder
 
Posts: n/a
Default

Re: Flazr - open source RTMP stream saver


Script for downloading from oxy.videolectures.net with flazr
this is the simplest example, if you know the host and the values for the "app" and "play" params you can use this
Code:
import com.flazr.*

def host = 'oxy.videolectures.net'
def app = 'video'
def playParam = '2008/active/iswc08_karlsruhe/swcbtc/iswc08_swcbtc_01'
def saveAs = 'test.flv'

def session = new RtmpSession(host, 1935, app, playParam, saveAs)

RtmpClient.connect session
Reply With Quote