Stable: 2.5.2
Development: 2.6-alpha3
I'm running the debian testing repos and mocp was taken out of the repos for some reason so I downloaded and compiled the 2.5.0-beta1 version and installed it and compilled it with --enable-faad2 and --enable-debug and it said MOC will be compiled with:
Decoder plugins: aac flac mp3 vorbis
Sound Drivers: OSS ALSA
DEBUG: yes
RCC: no
Network streams: no
Resampling: yes
MIME magic: no
I still have moc-ffmpeg-plugin though, but the problem is the .m4a files simply don't show up in mocp like they don't exist :/ Should I recompile and install or something?
jcf
Wed, 2013-07-10 05:02
Permalink
Check for Libraries
Assuming that what you're saying is that you've installed the FFmpeg/LibAV decoder from the existing moc-ffmpeg-plugin in the correct place, my best guess is that you're still missing the libraries on which it depends:
Running
mocp -D
and checking the start of the resultingmocp_client_log
file (and particularly whether 'ffmpeg' appears in the line "Loaded n decoders:") might give more clues.MarioMaster100
Wed, 2013-07-10 05:33
Permalink
Ok so the ldd: ldd
Ok so the ldd: and the log has this and it just kinda shows it loading all my files.
jcf
Wed, 2013-07-10 06:10
Permalink
A Bit of Clarification
From the log file above:
Configured: '--enable-faad2' '--enable-debug' '--enable-ffmpeg'
but:
Decoder plugins: aac flac mp3 vorbis
Assuming these come from the same run of
configure
it implies that you don't have the Debian-specific '-dev' packages installed for LibAV (and maybe others).However,
ldd
says the FFmpeg/LibAV decoder and the libraries it requires are present.You can capture stderr when you start MOC to see if there are any relevant messages there:
mocp 2>/tmp/mocp.stderr
MarioMaster100
Wed, 2013-07-10 05:47
Permalink
Oh wait, someone on irc
Oh wait, someone on irc pointed something out to me it was in the repos (thought it wasn't for some reason) and I did have that one installed maybe that's why the compiled moc was being weird... repo version works fine :)
jcf
Wed, 2013-07-10 07:39
Permalink
Our Posts Crossed
So it sounds like you're good to go again.
MarioMaster100
Wed, 2013-07-10 17:20
Permalink
Yep, I suspect that's why the
Yep, I suspect that's why the new compile and install was being weird, I'd still had moc installed >_<