https://github.com/julien-c/tube.js
https://github.com/julien-c/tube.js
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/julien-c/tube.js
- Owner: julien-c
- Created: 2015-05-02T14:48:01.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-06-05T15:14:57.000Z (about 10 years ago)
- Last Synced: 2025-02-04T04:13:10.285Z (5 months ago)
- Language: JavaScript
- Size: 387 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tube.js
## Requirements
- `youtube-dl`
- `ffmpeg` (includes `ffprobe`)
- `transmission-daemon`## How to run
- `npm install`
- `iojs --es_staging --harmony_arrow_functions app.js`## How to run in dev mode
To enable live reloading on the server and client side:
- `grunt watch & ./supervisor.sh`
## Video conversion
ffmpeg -i input.mkv -c:v copy -c:a aac -strict experimental -movflags faststart output.mp4
ffmpeg -i input.avi -c:v libx264 -c:a aac -strict experimental -movflags faststart output.mp4
(use `ffprobe`'s json output)