diff --git a/video-player/media/video-player-thumbnail.jpg b/video-player/media/video-player-thumbnail.jpg deleted file mode 100644 index dfc1ace..0000000 Binary files a/video-player/media/video-player-thumbnail.jpg and /dev/null differ diff --git a/video-player/package/DEBIAN/control b/video-player/package/DEBIAN/control deleted file mode 100644 index 12076c0..0000000 --- a/video-player/package/DEBIAN/control +++ /dev/null @@ -1,13 +0,0 @@ -Package: tooloop-video-player -Version: 1.0.0 -Maintainer: Tooloop Multimedia -Homepage: https://www.tooloop.de -Bugs: https://github.com/Tooloop/Tooloop-Packages -Section: tooloop/presentation -Architecture: all -Depends: mplayer -Name: Video Player -Description: A simple looping video player - The tooloop video player is using mplayer to loop over all videos it find in `/assets/data`. -Thumbnail: video-player-thumbnail.jpg - diff --git a/video-player/package/assets/data/Tooloop Greeter Intro.mp4 b/video-player/package/assets/data/Tooloop Greeter Intro.mp4 deleted file mode 100644 index 5728097..0000000 Binary files a/video-player/package/assets/data/Tooloop Greeter Intro.mp4 and /dev/null differ diff --git a/video-player/package/assets/data/Tooloop Greeter Loop.mp4 b/video-player/package/assets/data/Tooloop Greeter Loop.mp4 deleted file mode 100644 index 5e9794d..0000000 Binary files a/video-player/package/assets/data/Tooloop Greeter Loop.mp4 and /dev/null differ diff --git a/video-player/package/assets/presentation/LICENSE.md b/video-player/package/assets/presentation/LICENSE.md deleted file mode 100644 index 0fc5698..0000000 --- a/video-player/package/assets/presentation/LICENSE.md +++ /dev/null @@ -1,14 +0,0 @@ -# Super simpler video player - -The super simple video player is an example of how to use the Tooloop media -server and provide apps for it. - -It's in the public domain. - - -# MPlayer - -[MPlayer](http://www.mplayerhq.hu) is available under the [GNU General Public -License version 2](https://www.gnu.org/licenses/old-licenses/gpl-2.0.html). -It is not available under any other licensing terms, not even for substantial -amounts of money. If you have questions about the GNU GPL, consult the GPL FAQ. diff --git a/video-player/package/assets/presentation/README.md b/video-player/package/assets/presentation/README.md deleted file mode 100644 index a05d77e..0000000 --- a/video-player/package/assets/presentation/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# Super simple video player - -In this example we are using [mplayer](http://mplayerhq.hu) to play and loop a list of videos in fullscreen. - -## Customizing - -Check out the start script if you want to fiddle with some mplayer options. [Here's the docs](http://www.mplayerhq.hu/design7/documentation.html). diff --git a/video-player/package/assets/presentation/start-presentation.sh b/video-player/package/assets/presentation/start-presentation.sh deleted file mode 100644 index 87e24ca..0000000 --- a/video-player/package/assets/presentation/start-presentation.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash - -mplayer -fs -zoom /assets/data/Tooloop\ Greeter\ Intro.mp4 /assets/data/Tooloop\ Greeter\ Loop.mp4 -loop 0 & - -exit 0 diff --git a/video-player/package/assets/presentation/stop-presentation.sh b/video-player/package/assets/presentation/stop-presentation.sh deleted file mode 100644 index 0e122f2..0000000 --- a/video-player/package/assets/presentation/stop-presentation.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash - -# here comes everything, you need to stop the running presentation -# basically kill or stop everything you started in `start-presentation.sh` - -kill $(pidof mplayer) - -exit 0