You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.0 KiB
69 lines
2.0 KiB
/*
|
|
Copyright (C) 2005 Benjamin Meyer <ben at meyerhome dot net>
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef ENCODER_LAME_H
|
|
#define ENCODER_LAME_H
|
|
|
|
#include "audiocdencoder.h"
|
|
|
|
class KProcess;
|
|
|
|
/**
|
|
* MP3 encoder using the LAME encoder.
|
|
* Go to http://lame.sourceforge.net/ for lots of information.
|
|
*/
|
|
class EncoderLame : public TQObject, public AudioCDEncoder {
|
|
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
EncoderLame(KIO::SlaveBase *slave);
|
|
~EncoderLame();
|
|
|
|
virtual TQString type() const { return "MP3"; };
|
|
virtual bool init();
|
|
virtual void loadSettings();
|
|
virtual unsigned long size(long time_secs) const;
|
|
virtual const char * fileType() const { return "mp3"; };
|
|
virtual const char * mimeType() const { return "audio/x-mp3"; };
|
|
virtual void fillSongInfo( KCDDB::CDInfo info, int track, const TQString &comment );
|
|
virtual long readInit(long size);
|
|
virtual long read(int16_t * buf, int frames);
|
|
virtual long readCleanup();
|
|
virtual TQString lastErrorMessage() const;
|
|
|
|
virtual TQWidget* getConfigureWidget(KConfigSkeleton** manager) const;
|
|
|
|
protected slots:
|
|
void wroteStdin(KProcess *proc);
|
|
void receivedStdout(KProcess *, char *buffer, int length);
|
|
void receivedStderr(KProcess *proc, char *buffer, int buflen);
|
|
void processExited(KProcess *proc);
|
|
|
|
private:
|
|
class Private;
|
|
Private * d;
|
|
|
|
TQStringList args;
|
|
TQStringList trackInfo;
|
|
};
|
|
|
|
#endif // ENCODER_LAME_H
|
|
|