Changeset 364
- Timestamp:
- 10/21/08 17:52:54 (3 months ago)
- Location:
- indytube/branches/plumi-0.2.x
- Files:
-
- 3 removed
- 3 modified
-
EM-template.include (deleted)
-
include.template (deleted)
-
include.template.red5 (deleted)
-
indytube.conf (modified) (2 diffs)
-
indytube.py (modified) (1 diff)
-
plumi.template (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
indytube/branches/plumi-0.2.x/indytube.conf
r351 r364 4 4 DO_ENCODING=True 5 5 NUMBER_OF_PARALLEL_ENCODERS=1 6 ENCODER_LOCKFILE_BASE=/opt/indytube/plumidemo- encoder.lock6 ENCODER_LOCKFILE_BASE=/opt/indytube/plumidemo-testing-encoder.lock 7 7 POLLTIME=60 8 8 9 9 10 10 [mencoder] 11 MENCODER_LOCATION=/usr/ bin/mencoder11 MENCODER_LOCATION=/usr/local/bin/mencoder 12 12 13 13 # for older versions of MEncoder. … … 25 25 26 26 [paths] 27 VIDEO_FILE_DIRECTORY=/opt/ instances/PlumiDemoLive/var/files/Members28 FLV_FILE_DIRECTORY=/var/www/plumi- flv-files/29 INCLUDE_FILE_DIRECTORY=/opt/ instances/PlumiDemoLive/var/files/Members27 VIDEO_FILE_DIRECTORY=/opt/tebet-instances/testing.plumi.org/var/files/Members 28 FLV_FILE_DIRECTORY=/var/www/plumi-testing-flv-files/ 29 INCLUDE_FILE_DIRECTORY=/opt/tebet-instances/testing.plumi.org/var/files/Members 30 30 INCLUDE_FILE_SUFFIX=.flv.inc 31 INCLUDE_TEMPLATE=/opt/indytube/ template.include31 INCLUDE_TEMPLATE=/opt/indytube/include.template.testing.plumi 32 32 33 33 [urls] 34 34 FLOWPLAYER_LOCATION=http://flv.plumi.org/flowplayer/FlowPlayer.swf 35 35 VIDEO_SERVER_URL=http://flv.plumi.org/ 36 SPLASH_IMAGE_BASE=http:// demo.plumi.org/flowplayer/36 SPLASH_IMAGE_BASE=http://testing.plumi.org/Members/ 37 37 SPLASH_IMAGE_FILE=indytube.jpg 38 38 39 39 [logging] 40 LOG_FILE=/opt/indytube/plumi- wetube.log40 LOG_FILE=/opt/indytube/plumi-testing-wetube.log 41 41 LOG_LEVEL=logging.INFO -
indytube/branches/plumi-0.2.x/indytube.py
r353 r364 167 167 'videobaseurl':self.VIDEO_SERVER_URL, 168 168 'splashbaseurl':self.SPLASH_IMAGE_BASE, 169 'splashfile': self.SPLASH_IMAGE_FILE,169 'splashfile': relative_directory + '/'+f, 170 170 'cortado_location':self.CORTADO_LOCATION, 171 171 'oggfile':stem+".ogg", -
indytube/branches/plumi-0.2.x/plumi.template
r194 r364 1 2 1 <object type="application/x-shockwave-flash" data="$flowplayer_location" 3 2 width="320" height="263" id="FlowPlayer"> 4 <param name="allowScriptAccess" value=" sameDomain" />3 <param name="allowScriptAccess" value="always" /> 5 4 <param name="movie" value="$flowplayer_location" /> 6 5 <param name="quality" value="high" /> 7 6 <param name="scale" value="noScale" /> 8 7 <param name="wmode" value="transparent" /> 9 <param name="flashvars" value="config={ splashImageFile: '$splashfile', videoFile: '$videofile', baseURL: '$videobaseurl',autoPlay: false , autoBuffering: false, loop:false, fullScreenScriptURL: '$videobaseurl/fullscreen.js' } " />8 <param name="flashvars" value="config={playList:[{url:'$splashbaseurl/$splashfile/thumbnailImage',type:'jpg'},{url:'$videobaseurl/$videofile'}], autoPlay: false , autoBuffering: false, loop:false, fullScreenScriptURL: '$videobaseurl/fullscreen.js' } " /> 10 9 </object> 11 12 <div style="width:320px;margin-top:5px;">Copy the following to embed the movie into another web page:</div>13 <form>14 <textarea style="overflow-x:auto;width:320px;" onclick="this.focus();this.select();">15 <object type="application/x-shockwave-flash" data="$flowplayer_location" width="320" height="263" id="FlowPlayer"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="FlowPlayer.swf" /><param name="quality" value="high" /><param name="scale" value="noScale" /><param name="wmode" value="transparent" /><param name="flashvars" value="config={splashImageFile: '$splashfile', videoFile: '$videofile', baseURL: '$videobaseurl', autoPlay: false , autoBuffering: false, loop:false, fullScreenScriptURL: '$videobaseurl/fullscreen.js'} " /></object>16 </textarea>17 </form>
