Embed YouTube Video in QWebView/ja: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
AutoSpider (talk | contribs) m (AutoSpider moved page Embed YouTube Video in QWebView Japanese to Embed YouTube Video in QWebView/ja: Localisation) |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
'''日本語''' | [[Embed_YouTube_Video_in_QWebView|English]] | [[Embed_YouTube_Video_in_QWebView_German|Deutsch]]| [[Embed_YouTube_Video_in_QWebView_Spanish|Español]] | [[Embed_YouTube_Video_in_QWebView_Bulgarian|Български]] | [[Embed_YouTube_Video_in_QWebView_Portuguese|Português]] | | {{Cleanup | reason=Auto-imported from ExpressionEngine.}} | ||
'''日本語''' | [[Embed_YouTube_Video_in_QWebView|English]] | [[Embed_YouTube_Video_in_QWebView_German|Deutsch]]| [[Embed_YouTube_Video_in_QWebView_Spanish|Español]] | [[Embed_YouTube_Video_in_QWebView_Bulgarian|Български]] | [[Embed_YouTube_Video_in_QWebView_Portuguese|Português]] | | |||
[[Category:snippets]] | |||
= QWebView に YouTube のビデオを埋め込む = | = QWebView に YouTube のビデオを埋め込む = | ||
この小さなテンプレートでは | この小さなテンプレートでは [http://doc.qt.io/qt-5.0/qtwebkit/qwebview.html QWebView] に YouTube のビデオを埋め込む方法を説明します。これはまた、Qt で flash をサポートする方法のデモでもあります。 | ||
まず、Qt Creator で Qt ウィジェットアプリケーションを作成し、QWebView を追加します。 | |||
.pro ファイルの QT 変数に network と webkit を追加します。 | .pro ファイルの QT 変数に network と webkit を追加します。 | ||
<code> | |||
QT += core gui network webkit | |||
</code> | |||
mainwindow.cpp に以下のコードを追加します。 | mainwindow.cpp に以下のコードを追加します。 | ||
<code> | |||
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")); | |||
} | |||
</code> | |||
ビデオが埋め込まれた Web ページが読み込めるようになったはずです。 | ビデオが埋め込まれた Web ページが読み込めるようになったはずです。 | ||
ローカルの html ファイルに object タグでビデオを埋め込んで、その URL を指定して開くこともできます。 | |||
Qt で flash を使う詳細は | Qt で flash を使う詳細は [http://blog.forwardbias.in/2009/12/flash-in-qgraphicsview.html この記事(英語)] を参照してください。 |
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 を使う詳細は この記事(英語) を参照してください。