Embed YouTube Video in QWebView/ja: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{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]] |
'''日本語''' | [[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]]
[[Category:snippets]]
Line 4: Line 6:
= QWebView に YouTube のビデオを埋め込む =
= QWebView に YouTube のビデオを埋め込む =


この小さなテンプレートでは "QWebView":http://doc.qt.io/qt-5.0/qtwebkit/qwebview.html に YouTube のビデオを埋め込む方法を説明します。これはまた、Qt で flash をサポートする方法のデモでもあります。
この小さなテンプレートでは [http://doc.qt.io/qt-5.0/qtwebkit/qwebview.html QWebView] に YouTube のビデオを埋め込む方法を説明します。これはまた、Qt で flash をサポートする方法のデモでもあります。
まず、Qt Creator で Qt ウィジェットアプリケーションを作成し、QWebView を追加します。
まず、Qt Creator で Qt ウィジェットアプリケーションを作成し、QWebView を追加します。


Line 29: Line 31:
ローカルの html ファイルに object タグでビデオを埋め込んで、その URL を指定して開くこともできます。
ローカルの html ファイルに object タグでビデオを埋め込んで、その URL を指定して開くこともできます。


Qt で flash を使う詳細は "この記事(英語)":http://blog.forwardbias.in/2009/12/flash-in-qgraphicsview.html を参照してください。
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 を使う詳細は この記事(英語) を参照してください。