Qt wiki will be updated on October 12th 2023 starting at 11:30 AM (EEST) and the maintenance will last around 2-3 hours. During the maintenance the site will be unavailable.
Embed YouTube Video in QWebView/es
This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine. Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean. |
Spanish | English | Deutsch | Български | 日本語 | Português |
Insertar vídeos de YouTube Video en QWebView
Este pequeño fragmento de código muestra como insertar un vídeo de Youbube en una QWebView. Esto también demuestra el soporte de Qt para con flash. Primero cree una aplicación Qt Gui usando Qt Creator y añada una QWebView en ella.
Ahora agregue soporte para red y para webkit en su archivo .pro.
QT += core gui network webkit
Now add this in your mainwindow.cpp file
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
QNetworkProxyFactory::setUseSystemConfiguration (true);
QWebSettings::globalSettings()->setAttribute(QWebSettings::PluginsEnabled, true);
QWebSettings::globalSettings()->setAttribute(QWebSettings::AutoLoadImages, true);
ui->webView->load(QUrl("http://www.youtube.com/watch?v=3aR27FLbb04"));
}
Usted debe ser capaz de cargar la página web con el vídeo incrustado en él. También puede incrustar este vídeo sólo una object tag en un archivo html local y apuntar la ruta hacia el archivo local.
Para mas información de como usar flash con Qt puede ser encontrada en este articulo