Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cburmeister/fluid
Browse your local movies with IMDB data and stream them to a Chromecast.
https://github.com/cburmeister/fluid
api chromecast open-movie-database python
Last synced: 2 months ago
JSON representation
Browse your local movies with IMDB data and stream them to a Chromecast.
- Host: GitHub
- URL: https://github.com/cburmeister/fluid
- Owner: cburmeister
- License: mit
- Created: 2016-02-03T18:57:59.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-29T02:09:55.000Z (over 8 years ago)
- Last Synced: 2024-10-11T20:19:24.475Z (3 months ago)
- Topics: api, chromecast, open-movie-database, python
- Language: Python
- Homepage:
- Size: 1.25 MB
- Stars: 13
- Watchers: 6
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
fluid
===Browse your local movies with IMDB data and stream them to a Chromecast.
![Fluid](app/static/images/sample.jpg)
> The [Open Movie Database API](http://www.omdbapi.com/) is used to fetch data
> about your media files -- including the poster.## Required
- A Chromecast - specifically its name
- A directory of media - formatted like `some.title.year.quality.format`## Setup
Install the required python packages:
```bash
$ pip install -r requirements.txt
```Export a few required environment variables:
```bash
$ export CHROMECAST_IP=10.0.0.72
$ export MEDIA_PATH=/media/usbhdd/movies
$ export SECRET_KEY=,n\xa7\xdfq\x08h\xb8\x8c\x8af.B\x93y*\xd3\xf5\x10;
```Run the server:
```bash
$ python app.py --host 0.0.0.0 --port 5000 --debug
```