mp3 codec


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers mp3 codec
# 1  
Old 10-11-2005
mp3 codec

I just need a mp3 codec that will decode mp3s so I can play them with my media player (probably going to be using XMMS)
 
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Solaris

Is there any freeware codec pack available on OpenSolaris?

Today I installed OpenSolaris on my laptop , everything works fine just I can not listen MP3 music and I can not watch any videos :confused: I looked , and found Codeina , it is not freeware (except MP3) ! I installed some plugins I found on net (from sunfreepacks.com | Free Archives &... (0 Replies)
Discussion started by: solaris_user
0 Replies

2. Linux

Error: codec search

I am using openSuse11 - kde3.5. My konqueror give strange error msg saying search for codec whenever there is video file in folder. I am using mplayer as default. Konq is Ok but kdialog appears with error message about codec search. What should i do? (1 Reply)
Discussion started by: amit gangarade
1 Replies

3. Shell Programming and Scripting

What Is A Codec? Anyone

Can Anyone Explain. (2 Replies)
Discussion started by: kprescod4158
2 Replies

4. Linux

DivX Codec

im new to Linux... im trying to use my DivX movies and have downloaded the codec from DivX.Com ... i am unsure as to how to proceed from here... (1 Reply)
Discussion started by: HMSS013
1 Replies
Login or Register to Ask a Question
CODEC(3T)																 CODEC(3T)

NAME
TIFFFindCODEC, TIFFRegisterCODEC, TIFFUnRegisterCODEC - codec-related utility routines SYNOPSIS
#include <tiffio.h> const TIFFCodec* TIFFFindCODEC(uint16 scheme); TIFFCodec* TIFFRegisterCODEC(uint16 scheme, const char* method, TIFFInitMethod init); void TIFFUnRegisterCODEC(TIFFCodec* codec); DESCRIPTION
libtiff supports a variety of compression schemes implemented by software codecs. Each codec adheres to a modular interface that provides for the decoding and encoding of image data; as well as some other methods for initialization, setup, cleanup, and the control of default strip and tile sizes. Codecs are identified by the associated value of the TIFF Compression tag; e.g. 5 for LZW compression. The TIFFRegisterCODEC routine can be used to augment or override the set of codecs available to an application. If the specified scheme already has a registered codec then it is overridden and any images with data encoded with this compression scheme will be decoded using the supplied coded. DIAGNOSTICS
No space to register compression scheme %s. TIFFRegisterCODEC was unable to allocate memory for the data structures needed to register a codec. Cannot remove compression scheme %s; not registered. TIFFUnRegisterCODEC did not locate the specified codec in the table of registered compression schemes. SEE ALSO
libtiff(3T) October 15, 1995 CODEC(3T)