Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/CamTosh/ToastBox
A Cakebox Like
https://github.com/CamTosh/ToastBox
Last synced: 3 months ago
JSON representation
A Cakebox Like
- Host: GitHub
- URL: https://github.com/CamTosh/ToastBox
- Owner: CamTosh
- License: gpl-3.0
- Created: 2016-02-23T21:15:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-05-16T11:16:13.000Z (over 8 years ago)
- Last Synced: 2024-04-27T08:35:48.769Z (7 months ago)
- Language: PHP
- Size: 3.81 MB
- Stars: 4
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license
Awesome Lists containing this project
README
# ToastBox
ToastBox est un [Cakebox like](https://github.com/Cakebox/cakebox) écrit en PHP et utilisant l'API de IMDB.
Chrome a bloqué les players comme Silverlight, VLC ou encore Divx en septembre 2015. Le HTML ne supporte pas tout les formats. Je ferai surement une conversion via FFMPEG.
# L'application
## la page d'acceuil avec vos films/vidéos/séries
![1](demo/1.png "la page d'acceuil avec vos films/vidéos/séries")
## la page de lecture vidéo
![2](demo/player.png "la page de lecture vidéo")
## Features
* Naviguer entre les fichiers du répertoire
* Lire les vidéos depuis son navigateur
* Pouvoir télécharger le fichier
* Pouvoir supprimer le fichier
* Pouvoir convertir une vidéo au format mp4 (codec audio : AAC, codec vidéo : h264) à l'aide de FFMPEG
* Avoir différentes informations sur les films / séries# Comment l'installer
## Nginx par [Billred](https://mondedie.fr/profile.php?id=3963) :
```
cd /var/www/
``````
git clone https://github.com/CamTosh/ToastBox.git
``````
chown -R www-data:www-data ToastBox/
```Dans le fichier de configuration :
```
## début config ToastBox serveur ##location ^~ /ToastBox {
root /var/www;
include /etc/nginx/conf.d/php.conf;
include /etc/nginx/conf.d/cache.conf;
satisfy any;
allow all;
}## fin config ToastBox serveur ##
```