Skip to content

Instantly share code, notes, and snippets.

@rohitrangan
rohitrangan / README.md
Created October 23, 2012 11:16
Modifies the metadata of all mp3's in the given directory

mp3TagModifier

Requirements

  • eyeD3 v0.6.18.
  • Python 2.7
  • Mac OSX, any version of Linux. (Specific parts of the program can be used on Windows)

Instructions

@rohitrangan
rohitrangan / JoinMP4.py
Created October 5, 2012 17:37
Combining multiple mp4's to become a single mp4.
#!/usr/bin/env python
import sys
import time
from subprocess import check_output
for i in range(1, len(sys.argv)):
print sys.argv[i],
fname = "Part" + str(i) + ".mpg"
print fname