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
cd "Wave Bank" | |
find . -name "*.wav" -exec ffmpeg -i {} -acodec pcm_u8 {}.conv.wav \; | |
#find . -name "*.m4a" -exec faad {} \; | |
#mmv -v -c "Wave Bank_0000*.xwma.m4a.wav.wma" "Music_#1" | |
#mmv -v -c "Wave Bank_0001*.xwma.m4a.wav.wma" "Music_1#1" | |
mmv -v -c "Wave Bank_0000*.wav.conv.wav" "Music_#1" | |
mmv -v -c "Wave Bank_0001*.wav.conv.wav" "Music_1#1" |
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
#!/usr/bin/perl | |
use warnings; | |
use strict; | |
use POE; | |
use POE::Component::IRC::State; | |
use constant CHANNEL => '#pdl'; | |
# Load the current piddlebot functions: | |
use piddlebot; | |
my $last_modified = (stat('piddlebot.pm'))[9]; |