Owncloud 9.0.2 HLS video streaming player that streams all video formats

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Owncloud 9.0.2 HLS video streaming player that streams all video formats

    I have created an app for owncloud 9.0.2 its in early development stage, but most important features are working fine,
    this app adds a HLS streaming capability to your owncloud storage,
    you can play almost any type of video like avi, mkv in your browser,
    ffmpeg converts the videos to web playable format.
    It may not work if you have enabled encoding for your files in owncloud.
    the file /ffmpeg/ffmpeg should be executable
    the folder streamdata should be writable, chmod it to 0777.

    you need also to edit the file /apps/files/controller/viewcontroller.php

    find the line (almost at the file end):
    Code:
     $policy->addAllowedFrameDomain('\'self\'');
    and add after it:
    Code:
    $policy->addAllowedObjectDomain('\'self\'');
    $policy->addAllowedChildSrcDomain('\'self\'');
    $policy->addAllowedConnectDomain('\'self\'');
    $policy->addAllowedMediaDomain('\'self\'');
    this app is based on idea and work from https://apps.owncloud.com/content/sh...content=174642
    i have just converted it a little bit.

    It should work well on centos 7 server, have not tested it with other servers, it might work too.

    download and contribute to it here: https://github.com/gumslone/gum_hls
    Advertise your mobile site for FREE with AdTwirl

Working...
X