This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Line graph over time with multiple data points using SVG and d3.js</title> | |
<script src="http://mbostock.github.com/d3/d3.v2.js"></script> | |
<style> | |
body { | |
font-family: "Helvetica Neue", Helvetica; | |
} | |
/* tell the SVG path to be a thin blue line without any area fill */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf8 -*- | |
import os | |
import subprocess | |
def create_prelisten_ogg(mp3, ogg): | |
""" | |
Run en-code for a single file | |
Do 48 kbit files for prelisten. | |
""" |