blob: acd40c4e85939734a3110b1e3ed9f9789e1cac54 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
#include <QtGui>
#include "detailsdialog.h"
#include "decoder_ffmpeg.h"
#include "tag.h"
#include "decoderffmpegfactory.h"
// DecoderFFmpegFactory
bool DecoderFFmpegFactory::supports(const QString &source) const
{
return (source.right(4).toLower() == ".wma" || source.right(4).toLower() == ".wav");
}
bool DecoderFFmpegFactory::canDecode(QIODevice *input) const
{
return FALSE;
}
const DecoderProperties DecoderFFmpegFactory::properties() const
{
DecoderProperties properties;
properties.name = tr("WMA Files");
properties.filter = "*.wma *.wav";
properties.description = tr("WMA Files");
//properties.contentType = "";
properties.hasAbout = TRUE;
properties.hasSettings = FALSE;
return properties;
}
Decoder *DecoderFFmpegFactory::create(QObject *parent, QIODevice *input,
Output *output)
{
return new DecoderFFmpeg(parent, this, input, output);
}
FileTag *DecoderFFmpegFactory::createTag(const QString &source)
{
FileTag *tag = new Tag(source);
return tag;
}
void DecoderFFmpegFactory::showDetails(QWidget *parent, const QString &path)
{
DetailsDialog *d = new DetailsDialog(parent, path);
d -> show();
}
void DecoderFFmpegFactory::showSettings(QWidget *)
{}
void DecoderFFmpegFactory::showAbout(QWidget *parent)
{
QMessageBox::about (parent, tr("About FFmpeg Audio Plugin"),
tr("Qmmp FFmpeg Audio Plugin")+"\n"+
tr("Suppored formats: WMA")+"\n"+
tr("Writen by: Ilya Kotov <forkotov02@hotmail.ru>"));
}
QTranslator *DecoderFFmpegFactory::createTranslator(QObject *parent)
{
QTranslator *translator = new QTranslator(parent);
QString locale = QLocale::system().name();
translator->load(QString(":/ffmpeg_plugin_") + locale);
return translator;
}
Q_EXPORT_PLUGIN(DecoderFFmpegFactory)
|