You are not logged in.

#1 2005-11-04 21:34:50

mpie
Member
From: 404 Not found
Registered: 2005-03-06
Posts: 649

a little helper for pydance...

dont know how many of you have used pydance but if you have and you like it there are various sources for extra file to use, unfortunately most of them use mp3's that are not yet fully compatible with pygame or if they work then you get random crashes... the answer off course is to trancode them to ogg... easy enough, then fix the link in the text files to the ogg file .
However if you have a arge archive to convert this get rather tedious sad
the answer this script smile

#! /bin/bash
IFS=$'n' #set env to escape to new line
for dirname in `ls -D `; do # find directories
cd *$dirname*
echo $dirname
mp32ogg --delete *.mp3 {} # transcode files to pygame friendly oggs
cd ..
done
find  -name '*.dwi' -exec sed -i -e"s:mp3:ogg:g" {} ;  # fix links to mp3
find  -name '*.sm' -exec sed -i -e"s:mp3:ogg:g" {} ;
find  -name '*.dance' -exec sed -i -e"s:mp3:ogg:g" {} ;
find  -name '*.step' -exec sed -i -e"s:mp3:ogg:g" {} ;
exit

this should work with most formats that are available

Offline

#2 2005-11-05 00:46:12

Cam
Member
From: Brisbane, Aus
Registered: 2004-12-21
Posts: 658
Website

Re: a little helper for pydance...

I just downloaded a 1.1GB archive of songs etc for Stepmania which using that script will work with pydance too big_smile

http://foonmix.nothing.sh/foonmix_2/

Offline

#3 2005-11-05 05:46:35

mpie
Member
From: 404 Not found
Registered: 2005-03-06
Posts: 649

Re: a little helper for pydance...

ta very much!!

have you tried here http://www.ddruk.com

the torrents are a little slow but there's plenty there

Offline

#4 2005-11-05 06:40:39

Cam
Member
From: Brisbane, Aus
Registered: 2004-12-21
Posts: 658
Website

Re: a little helper for pydance...

Haven't seen it but thanks for the link!

Offline

#5 2005-11-06 13:44:13

mpie
Member
From: 404 Not found
Registered: 2005-03-06
Posts: 649

Re: a little helper for pydance...

really worth a visit!!

there are some with real music.....

Offline

Board footer

Powered by FluxBB