hi guys..
i use this code to play music with VLC
arguments<< "play" << "/home/zakis/dokimi/sound/./ll.pls";
process->start(prog , arguments);
process->waitForFinished();
process->close();
QString prog = "vlc";
QStringList arguments;
arguments<< "play" << "/home/zakis/dokimi/sound/./ll.pls";
QProcess* process = new QProcess(this);
process->start(prog , arguments);
process->waitForFinished();
process->close();
To copy to clipboard, switch view to plain text mode
how i close the vlc to continue my app?
Bookmarks