DVR for internet radio
Go to file
dave 07ad6f2029 Update read me to remove manual db create step 2014-08-30 18:12:59 -04:00
jstemplates hid recorder status number 2014-08-29 19:56:42 -07:00
libs Remove commit line 2014-08-30 18:04:25 -04:00
static Specify jPlayer solution order 2014-08-29 17:05:39 -07:00
templates Begin adding player on files page 2014-08-28 22:11:01 -07:00
Readme.md Update read me to remove manual db create step 2014-08-30 18:12:59 -04:00
app.py Add cron step to readme, remove unused import 2014-08-30 11:02:17 -07:00

Readme.md

Streamrecord


A python3 web app to record internet radio streams and present them in a podcast

Requirements

  • python3
  • sqlite3
  • jinja2
  • cherrypy
  • uwsgi
  • mkvmerge
  • avconv

Installation

  • Checkout the source to somewhere on your system. In the examples below, the path to the root of the source is /home/streamrecord/app/. Cd to here.
  • Write the config for uwsgi, start that daemon
  • Write the config for nginx, and view the page.
  • Create a symbolic link in static/ pointing to files/output/. Command: mkdir files/ ; mkdir files/output/ ; mkdir files/temp/ ; ln -s ../files/output static/test
  • Add a cron job to call http://my.server/api/tick every minute.

Podcast usage: each schedule has a numerical id. To view the podcast, http://my.server/api/getPodcast?id=[number]

Uwsgi config

Something like:

[uwsgi]
uid = streamrecord
pid = streamrecord
plugins = python3
touch-reload = /home/streamrecord/app/app.py
chdir = /home/streamrecord/app/
wsgi-file = /home/streamrecord/app/app.py
callable = application
master = true
processes = 1
socket = 127.0.0.1:3330
pidfile = /tmp/streamrecord.pid
enable-threads = true
no-threads-wait = true
die-on-term = true

Nginx config

Something like:

server {
	listen 30000;
	listen [::]:30000 ipv6only=on;
	include uwsgi_params;
	access_log /var/log/nginx/stremrecord.log;
	location / {
		uwsgi_pass 127.0.0.1:3330;
	}
	location /streamrecord/static/ {
		autoindex off;
		alias /home/streamrecord/app/static/;
	}
}