Thank you for the quick reply
I have am using a RTMP system based on Cloudfront with my files stored on S3
The videos needed to be linked as being directly in the main folder of the RTMP server
So when the jwplayer tries to play the file it looks for the file in
| Code: |
rtmp://ss93kjsfake90.cloudfront.net/cfx/st/FILE.flv
|
or
| Code: |
rtmp://ss93kjsfake90.cloudfront.net/cfx/st/FILE.mp4
|
and not
| Code: |
rtmp://ss93kjsfake90.cloudfront.net/cfx/st/videos/sd/userid/FILE.flv
|
or
| Code: |
rtmp://ss93kjsfake90.cloudfront.net/cfx/st/videos/hd/userid/FILE.mp4
|
i managed this by changing in components/com_jvideodirect/plugins/jwflvplayer/player.php
| Code: |
$pathtofile = 'videos'.DS.$vdir.DS.$v->userid.DS.$vfile;
|
to
| Code: |
$pathtofile = $vfile;
|
Apart from that for jVideoDirect to function properly is there anything I need to change in that file?
or maybe in another file, regarding uploading the videos to the s3 maybe?