https://github.com/davidcornu/radio_one
Convert Radio 1 shows into podcast feeds
https://github.com/davidcornu/radio_one
Last synced: 9 months ago
JSON representation
Convert Radio 1 shows into podcast feeds
- Host: GitHub
- URL: https://github.com/davidcornu/radio_one
- Owner: davidcornu
- Created: 2015-09-24T00:20:46.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-11-06T20:33:00.000Z (over 9 years ago)
- Last Synced: 2025-04-10T21:11:04.801Z (about 1 year ago)
- Language: Ruby
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RadioOne
A giant pile of hacks to convert BBC Radio One shows into podcasts so I don't have to deal with their terrible web player.
## Dependencies
Requires `curl` and `ffmpeg`. All other dependencies are managed by Bundler.
Steps to perform on a Ubuntu 15.04 x64 image on DigitalOcean.
- `sudo apt-add-repository ppa:brightbox/ruby-ng`
- `sudo apt-get update`
- `sudo apt-get install curl ffmpeg git ruby2.2 nginx vim`
- `sudo gem install bundler`
- `sudo ufw allow 22`
- `sudo ufw allow 80`
- `sudo ufw enable`
- `git clone git@github.com:davidcornu/radio_one.git`
- `cd radio_one`
- `bundle install --path vendor/bundle --without test development`
- `bundle exec whenever --update-crontab`
**Nginx Config**
```
server {
listen 80;
root /home/deploy/radio_one/public;
autoindex on;
}
```