The Fine Print: The following comments
are owned by whomever posted them.
( Reply )
|
Re: mp4/aac/m4a support
by niki on Sunday 05/Jun/2005, @08:30
|
well... I had a similar problem, and finaly, I tried that...
If you change your mind about recompressing the files...
* If you find a way to play m4a with XMMS, I'm interested!
the following scripts need LAME and FAAD to work...
###########
# m4a2mp3 #
###########
#!/usr/bin/perl -w
use strict;
foreach my $file (@ARGV) {
next if ($file !~ /\.m4a$/i);
my $base = $file; $base =~ s/\.m4a$//i;
system "faad -o \"$base.wav\" \"$file\"";
system "lame -h \"$base.wav\" \"$base.mp3\"";
unlink("$base.wav");
print "$base.m4a converted to mp3.\n";
}
###########
# mp42mp3 #
###########
#!/usr/bin/perl -w
use strict;
foreach my $file (@ARGV) {
next if ($file !~ /\.mp4$/i);
my $base = $file; $base =~ s/\.mp4$//i;
system "faad -o \"$base.wav\" \"$file\"";
system "lame -h \"$base.wav\" \"$base.mp3\"";
unlink("$base.wav");
print "$base.mp4 converted to mp3.\n";
}
|
[
Reply To This | View ]
|
Re: mp4/aac/m4a support
by David on Friday 27/Apr/2007, @15:03
|
apt-get install xmms-mp4
|
[
Reply To This | View ]
|
|
Re: mp4/aac/m4a support
by MattoHippo on Saturday 13/Aug/2005, @10:10
|
Check out http://www.qwirx.com/xmms-plugin-mp4/xmms-plugin-mp4-0.4-1.i386.rpm for the rpm and src's.
I installed the rpm and it worked fine for all of my m4a's. Hope it works for you.
|
[
Reply To This | View ]
|
Re: mp4/aac/m4a support
by Chad on Thursday 02/Mar/2006, @05:47
|
this works like a champ! Thank you!
Chad
|
[
Reply To This | View ]
|
|
Re: mp4/aac/m4a support
by Till on Sunday 05/Mar/2006, @23:17
|
In case you're still wondering, check
http://www.captain.at/howto-debian-sarge-xmms-mp4-plugin.php
|
[
Reply To This | View ]
|
The Fine Print: The previous
comments are owned by whomever posted them.
( Reply )
|