Как связать QProgressBar с процентами процесса терминала?

Поэтому я разработал очень простой диалог с использованием Qt, который предназначен для загрузки видео с YouTube и преобразования их в mp4 или mp3, все с использованием команда youtube-dl (Я использую Система () позвонить на YouTube-DL). Да, я пользователь Linux.
Он работает нормально, но я хотел бы показать ход загрузки в моем пользовательском интерфейсе, как тот, который отображается в терминале, когда я вызываю youtube-dl прямо оттуда.
Любая конструктивная критика в отношении всего кода будет принята с благодарностью.

//ytdialog.h
#ifndef YTDIALOG_H
#define YTDIALOG_H
#include <iostream>
using namespace std;
#include <QDialog>

class QPushButton;
class QLineEdit;
class QLabel;

class ytDialog : public QDialog
{
Q_OBJECT
public:
ytDialog(QWidget *parent = 0);
private slots:
void videoOutput(); //download the video that corresponds to the link in   link(QLineEdit)
void audioOutput(); //download the video and converts it to mp3
void enableButtons(); //enable the buttons when link is not empty
private:
QLabel *linkLabel; //Just a Label
QPushButton *video; //Button to Download video
QPushButton *audio; //Button to Download video and convert it to mp3
QLineEdit *link; //Input link
};

#endif

//ytdialog.cpp **Just In case You need it**
#include <QtWidgets>

#include "ytdialog.h"
ytDialog::ytDialog(QWidget *parent)
: QDialog(parent)
{
linkLabel = new QLabel("Link: ");
link = new QLineEdit;
video = new QPushButton("Video Output");
audio = new QPushButton("Audio Output");

link->setMinimumWidth(400);
video->setEnabled(false);
audio->setEnabled(false);

connect(link, SIGNAL(textChanged(const QString &)),
this, SLOT(enableButtons()));
connect(video, SIGNAL(clicked()),
this, SLOT(videoOutput()));
connect(audio, SIGNAL(clicked()),
this, SLOT(audioOutput()));

QHBoxLayout *linkLayout = new QHBoxLayout;
linkLayout -> addWidget(linkLabel);
linkLayout -> addWidget(link);

QHBoxLayout *buttonsLayout = new QHBoxLayout;
buttonsLayout -> addWidget(video);
buttonsLayout -> addWidget(audio);

QVBoxLayout *main = new QVBoxLayout;
main -> addLayout(linkLayout);
main -> addLayout(buttonsLayout);

setLayout(main);
setWindowTitle("Download Youtube");
}
void ytDialog::enableButtons()
{
if (!link->text().isEmpty())
{
video->setEnabled(true);
audio->setEnabled(true);
}
else
{
video->setEnabled(false);
audio->setEnabled(false);
}
}
void ytDialog::videoOutput()
{
string cmd = "youtube-dl -o '/home/rodrigo/Videos/%(title)s.%(ext)s' " + link-    >text().toStdString();
system(cmd.c_str());
}

void ytDialog::audioOutput()
{
string cmd = "youtube-dl -x --audio-format mp3 -o '/home/rodrigo/Music/%(title)s.%    (ext)s' " + link->text().toStdString();
system(cmd.c_str());
}

2

Решение

Ты можешь использовать QProcess выполнить команду. Тогда вы можете использовать readyReadStandardOutput сигнал для чтения команды вывода сообщений в слоте и обработки текста для извлечения процента прогресса:

В вашем конструкторе:

process = new QProcess();

connect (process, SIGNAL(readyReadStandardOutput()), this, SLOT(readyRead()));
connect (process, SIGNAL(finished (int, QProcess::ExitStatus)), this, SLOT(finished()));

videoOutput слот:

void ytDialog::videoOutput()
{
string cmd = "youtube-dl -o '/home/rodrigo/Videos/%(title)s.%(ext)s' " + link-    >text().toStdString();
process.start("/bin/sh", QStringList()<< "-c" << cmd);
}

readyRead слот:

ytDialog::readyRead()
{
if (!process)
return;

QString str = process->readAllStandardOutput();

//Extract the progress percentage and emit a signal to update the progress bar
...
}
1

Другие решения


По вопросам рекламы [email protected]