Watch videos from my cloud without to download them for extern

Hello

I think ordner, if it isnt a typo might be ordinateur, which would be french for computer.
By default it is not possible to just watch stuff on your mycloud without first downloading the whole video, through the android app, for example. Which is pretty ■■■■ in 2016 but at least I didn’t buy the thing expecting that functionality.

It can be enabled with via webdav, but it will probably only work if you have really decent internet (which i do not).

some useful info i had saved in a text file about how to get it up and running and a config file which actually works (seem to recall none of the http config i was able to find at the time I was getting it working actually worked):

http://mybookworld.wikidot.com/forum/t-338804/another-webdav-tutorial

ServerAdmin webmaster@localhost
    
  #our webdav stuff
   DocumentRoot /shares
   <Directory /shares>
   Options Indexes MultiViews FollowSymLinks
   AllowOverride None
   Order allow,deny
   allow from all
   </Directory>
   Alias /webdav /var/www/webdav
   <Location /webdav/>
   DAV On
   AuthType Basic
   AuthName "WebDAV-Realm"
   AuthUserFile /etc/apache2/passwd.dav
   Require valid-user
   </Location>
 #end of webdav stuff