how to call gstreamer as an external process in Qt to play incoming audio streams?
Posted
by Rajesh
on Stack Overflow
See other posts from Stack Overflow
or by Rajesh
Published on 2010-05-10T07:38:05Z
Indexed on
2010/05/10
7:44 UTC
Read the original article
Hit count: 321
im now using mplayer to play incoming audio streams from network. i need to use gstreamer to play that. my code to play the audio using mplayer is like this: arg<<"http://192.168.0.2/img/video.asf"<<"-novideo"; program="mplayer"; process=new QProcess(this); process->start(program,arg);## Heading ##
© Stack Overflow or respective owner