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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
#include <stdio.h>
#include <tqfile.h>
#include <tqobject.h>
#include <tdelocale.h>
#include <tdeaboutdata.h>
#include <tdecmdlineargs.h>
#include <tdeapplication.h>
#include <flowsystem.h>
#include <kplayobject.h>
#include <kartsdispatcher.h>
#include <kplayobjectfactory.h>
#include <kaudioconverter.h>
#include "kconverttest.moc"
using namespace std;
using namespace Arts;
static TDECmdLineOptions options[] =
{
{ "+[URL]", I18N_NOOP("URL to open"), 0 },
TDECmdLineLastOption
};
KConvertTest::KConvertTest()
{
}
void KConvertTest::slotRawStreamStart()
{
// cout << "[START]\n\n" << endl;
}
void KConvertTest::slotNewBlockSize(long blockSize)
{
m_blockSize = blockSize;
}
void KConvertTest::slotNewBlockPointer(long blockPointer)
{
m_blockPointer = blockPointer;
}
void KConvertTest::slotNewData()
{
fwrite((void *) m_blockPointer, 1, m_blockSize, stdout);
}
void KConvertTest::slotRawStreamFinished()
{
// cout << "\n\n[END]" << endl;
}
int main(int argc, char **argv)
{
TDEAboutData aboutData("kconverttest", I18N_NOOP("KConvertTest"), I18N_NOOP("0.1"), "", TDEAboutData::License_GPL, "");
TDECmdLineArgs::init(argc, argv, &aboutData);
TDECmdLineArgs::addCmdLineOptions(options);
TDEApplication app;
TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
KURL url;
if(args->count())
url = args->arg(0);
else
exit(1);
args->clear();
KConvertTest *get = new KConvertTest();
KArtsDispatcher dispatcher;
KAudioConverter converter;
// FIXME: crashes
// converter.setup(44100);
converter.requestPlayObject(url);
TQObject::connect(&converter, TQT_SIGNAL(rawStreamStart()), get, TQT_SLOT(slotRawStreamStart()));
TQObject::connect(&converter, TQT_SIGNAL(newBlockSize(long)), get, TQT_SLOT(slotNewBlockSize(long)));
TQObject::connect(&converter, TQT_SIGNAL(newBlockPointer(long)), get, TQT_SLOT(slotNewBlockPointer(long)));
TQObject::connect(&converter, TQT_SIGNAL(newData()), get, TQT_SLOT(slotNewData()));
TQObject::connect(&converter, TQT_SIGNAL(rawStreamFinished()), get, TQT_SLOT(slotRawStreamFinished()));
converter.start();
app.exec();
}
|