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/ja: Difference between revisions
Jump to navigation
Jump to search
AutoSpider (talk | contribs) (Convert ExpressionEngine links) |
AutoSpider (talk | contribs) m (AutoSpider moved page Embed YouTube Video in QWebView Japanese to Embed YouTube Video in QWebView/ja: Localisation) |
(No difference)
|
Latest revision as of 15:59, 16 March 2015
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. |
日本語 | English | Deutsch| Español | Български | Português |
QWebView に YouTube のビデオを埋め込む
この小さなテンプレートでは QWebView に YouTube のビデオを埋め込む方法を説明します。これはまた、Qt で flash をサポートする方法のデモでもあります。 まず、Qt Creator で Qt ウィジェットアプリケーションを作成し、QWebView を追加します。
.pro ファイルの QT 変数に network と webkit を追加します。
QT += core gui network webkit
mainwindow.cpp に以下のコードを追加します。
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"));
}
ビデオが埋め込まれた Web ページが読み込めるようになったはずです。 ローカルの html ファイルに object タグでビデオを埋め込んで、その URL を指定して開くこともできます。
Qt で flash を使う詳細は この記事(英語) を参照してください。