Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gumslone/gum_hls

HLS video streaming app for owncloud
https://github.com/gumslone/gum_hls

hls hls-live-streaming owncloud video

Last synced: about 1 month ago
JSON representation

HLS video streaming app for owncloud

Awesome Lists containing this project

README

        

# gum_hls

I have created an app for owncloud 9.0.2 which is 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):

$policy->addAllowedFrameDomain('\'self\'');

and add after it:

$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.