Je kunt niet meer dan 25 onderwerpen selecteren Onderwerpen moeten beginnen met een letter of nummer, kunnen streepjes bevatten ('-') en kunnen maximaal 35 tekens lang zijn.
tdelibs/arts/kde
Timothy Pearson ed99a30644
Rename additional header files to avoid conflicts with KDE4
11 jaren geleden
..
mcop-dcop Rename additional header files to avoid conflicts with KDE4 11 jaren geleden
CMakeLists.txt Rename a number of libraries and executables to avoid conflicts with KDE4 11 jaren geleden
Makefile.am Rename additional instances of KDE to TDE 13 jaren geleden
README Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 jaren geleden
artskde.idl Rename KServer, KSocket, KIO_EXPORT, KIOInput, KIOJob, KIOConfig, KIOBuffer, and KBuffer to avoid conflicts with KDE4 11 jaren geleden
kartsdispatcher.cc Trinity Qt initial conversion 14 jaren geleden
kartsdispatcher.h Additional renaming of kde to tde 13 jaren geleden
kartsfloatwatch.cpp Trinity Qt initial conversion 14 jaren geleden
kartsfloatwatch.h Trinity Qt initial conversion 14 jaren geleden
kartsserver.cpp Rename KStandard for enhanced compatibility with KDE4 11 jaren geleden
kartsserver.h Additional renaming of kde to tde 13 jaren geleden
kaudioconverter.cc Rename common header files for consistency with class renaming 11 jaren geleden
kaudioconverter.h Initial conversion for TQt for Qt4 3.4.0 TP2 13 jaren geleden
kaudiomanagerplay.cpp Trinity Qt initial conversion 14 jaren geleden
kaudiomanagerplay.h Additional renaming of kde to tde 13 jaren geleden
kaudioplaystream.cpp Rename additional header files to avoid conflicts with KDE4 11 jaren geleden
kaudioplaystream.h Additional renaming of kde to tde 13 jaren geleden
kaudioplaystream_p.h Trinity Qt initial conversion 14 jaren geleden
kaudiorecordstream.cpp Rename additional header files to avoid conflicts with KDE4 11 jaren geleden
kaudiorecordstream.h Additional renaming of kde to tde 13 jaren geleden
kaudiorecordstream_p.h Trinity Qt initial conversion 14 jaren geleden
kconverttest.cc Rename additional header files to avoid conflicts with KDE4 11 jaren geleden
kconverttest.h Initial conversion for TQt for Qt4 3.4.0 TP2 13 jaren geleden
kdatarequest_impl.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 jaren geleden
kdatarequest_impl.h Trinity Qt initial conversion 14 jaren geleden
kioinputstream_impl.cpp Rename common header files for consistency with class renaming 11 jaren geleden
kioinputstream_impl.h Rename a number of libraries and executables to avoid conflicts with KDE4 11 jaren geleden
kiotest.cc Rename additional header files to avoid conflicts with KDE4 11 jaren geleden
kiotestslow.cc Rename additional header files to avoid conflicts with KDE4 11 jaren geleden
kplayobject.cc Rename old tq methods that no longer need a unique name 13 jaren geleden
kplayobject.h Rename KServer, KSocket, KIO_EXPORT, KIOInput, KIOJob, KIOConfig, KIOBuffer, and KBuffer to avoid conflicts with KDE4 11 jaren geleden
kplayobjectcreator.cc Rename a number of libraries and executables to avoid conflicts with KDE4 11 jaren geleden
kplayobjectcreator.h Rename KServer, KSocket, KIO_EXPORT, KIOInput, KIOJob, KIOConfig, KIOBuffer, and KBuffer to avoid conflicts with KDE4 11 jaren geleden
kplayobjectfactory.cc Fix a few remaining references to kio_ 11 jaren geleden
kplayobjectfactory.h Additional renaming of kde to tde 13 jaren geleden
kplayobjectfactory_p.h Initial conversion for TQt for Qt4 3.4.0 TP2 13 jaren geleden
kvideowidget.cpp Rename additional header files to avoid conflicts with KDE4 11 jaren geleden
kvideowidget.h Use non-tq sizeHint functions to fix bindings 13 jaren geleden

README

libartskde Introduction
-----------------------

1. What is libartskde?
libartskde is a simple KDE->aRts wrapper
that allows the developer to use KDE
technology to access aRts.
ie. no need to deal with std::string's anymore
etc.. you can just use QString's or KURL's
to play sound

2. How to use it to play sounds?
<snip>
1	KArtsDispatcher dispatcher;
2	KArtsServer server;

3	KURL file = "file:/home/nikoz/test.mp3";

4	KPlayObjectFactory factory(server.server());
5	KPlayObject *playobj = factory.createPlayObject(file, true);

6	playobj->play();
<snap>

Line:
1	Sets up the a KArtsDispatcher
2	Starts a new SoundServerV2 in the running artsd process

3	Simple test URL to demonstrate the use with KURL

4	Creates a KPlayObjectFactory, parameter: our SoundServerV2
5	Gets a KPlayObject from the factory, containing an Arts::PlayObject
	created in our running artsd process
	Parameters:
		KURL url
			(specifies the url to be played)
		bool createBUS
		 	(specifies wheter to create a Synth_BUS_UPLINK or not, "false" is only interesting if you want to use EffectsStacks etc..., see Noatun)
6	Play the file

That's it, with 6 LOC a "full" media player :)

To make the example above compile you will also have to add these #includes:
#include <arts/kartsserver.h>
#include <arts/kartsdispatcher.h>
#include <arts/kplayobject.h>
#include <arts/kplayobjectfactory.h>

Enjoy...
Nikolas Zimmermann 
<wildfox@kde.org>