Skip to content

Commit

Permalink
Added documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
monksy committed Feb 1, 2013
1 parent 287b0dd commit 7f73ced
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ogg2mp3
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
#! /bin/bash
# This script is based off of the flac2mp3 script floating arround on the
# internet. It's intent is to recursively triverse the current directly and
# its children to find all of the ogg files, and then convert them to mp3
# in the same directory. This uses ffmpeg. I'm sure theres a better option,
# but at the moment this works.
#

find . -type f -name "*.ogg" -print0 | while read -d $'\0' a
do
Expand Down

0 comments on commit 7f73ced

Please sign in to comment.