Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/popcorn-time/popcorn-app
An experiment using the peerflix module of nodejs and connecting a bunch of APIs.
https://github.com/popcorn-time/popcorn-app
Last synced: 28 days ago
JSON representation
An experiment using the peerflix module of nodejs and connecting a bunch of APIs.
- Host: GitHub
- URL: https://github.com/popcorn-time/popcorn-app
- Owner: popcorn-time
- Created: 2014-02-19T15:59:58.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2020-10-01T13:17:09.000Z (about 4 years ago)
- Last Synced: 2024-02-10T11:34:37.133Z (9 months ago)
- Language: CSS
- Homepage: getpopcornti.me
- Size: 118 MB
- Stars: 5,195
- Watchers: 328
- Forks: 1,753
- Open Issues: 181
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#Popcorn time [![Dependency Status](https://david-dm.org/popcorn-time/popcorn-app.png?theme=shields.io)](https://david-dm.org/popcorn-time/popcorn-time)
# [Goodbye](https://medium.com/p/93f890b8c9f4)
**Update** *15 March 2014* : Sorry friends, but we removed issue tracking because it was being used to link elsewhere.## Idea
To allow any computer user to watch movies easily streaming from torrents, without any particular knowledge.
![Demo Screenshot](http://getpopcornti.me/images/how-ui.png)
### Status
Under development (RC1) for Mac OSX - Windows - Linux.
### APIs**Currently used:**
- ~~[RottenTomatoes](http://developer.rottentomatoes.com) for movies metadata.~~
- ~~[PirateBay](http://thepiratebay.se/browse/207/0/7/0) Recent popular movies list.~~
- [YIFY](http://yts.re/api) movie torrents API.
- [OpenSubtitles](http://trac.opensubtitles.org/projects/opensubtitles/wiki/XMLRPC) for subtitles
- [TheMovieDB](http://www.themoviedb.org/) for movies metadata.**In discussion:**
- [SubtitleSeeker](http://www.api.subtitleseeker.com/About/Api-Search/) for subtitles.## Building
### Dependencies
You will need nodejs and grunt:
$ npm install -g grunt-cli
### Build
Install the node modules:
$ npm install
Build with:
$ grunt nodewkbuild
By default it will build for your current platform however you can control that
by specifying a comma separated list of platforms in the `platforms` option to
grunt:$ grunt nodewkbuild --platforms=linux32,linux64,mac,win
You can also build for all platforms with:
$ grunt nodewkbuild --platforms=all
## Any problem?
### Regarding superagent dependency
Due to [wrong browser verification](https://github.com/visionmedia/superagent/issues/95) on a dependency, this hard fix must be applied.
Replace `node_modules/moviedb/node_modules/superagent/index.js` contents with:
```javascript
// if (typeof window != 'undefined') {
// module.exports = require('./lib/superagent');
// } else if (process.env.SUPERAGENT_COV) {
// module.exports = require('./lib-cov/node');
// } else {
module.exports = require('./lib/node');
// }
```### Regarding Video, MP4 H264 Playback
- Info: https://github.com/rogerwang/node-webkit/wiki/Support-mp3-and-h264-in-video-and-audio-tag
- Needed to build a custom build of node-webkit that adds h264 support (or you can download ready-to-go builds from https://file.ac/s4Lt3Vo6rls/)
- Alternatively, we can replace a .so and .dll file from the correspondent Chrome build to node-webkit and node-webkit.exe## Development
- Run `compass watch` in Terminal for CSS compiling and listen to future changes.
- [How to build with SublimeText](https://github.com/rogerwang/node-webkit/wiki/Debugging-with-Sublime-Text-2-and-3)
- Currently Gaze to watch all files and reload the app is disabled due to memory leaks and unstability.
- Run node-webkit from the root directory with --debug to enable debugging mode like so ```node-webkit . --debug```