Embed YouTube Video in QWebView/ja: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
 
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
'''日本語''' | [[Embed YouTube Video in QWebView|English]] | [[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.}}


=QWebView に YouTube のビデオを埋め込む=
'''日本語''' | [[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]]


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


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


mainwindow.cpp に以下のコードを追加します。<br />
.pro ファイルの QT 変数に network と webkit を追加します。
<code>
QT += core gui network webkit
</code>


ビデオが埋め込まれた Web ページが読み込めるようになったはずです。<br /> ローカルの html ファイルに object タグでビデオを埋め込んで、その <span class="caps">URL</span> を指定して開くこともできます。
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>


Qt で flash を使う詳細は [http://blog.forwardbias.in/2009/12/flash-in-qgraphicsview.html この記事] ''[blog.forwardbias.in]'' を参照してください。
ビデオが埋め込まれた Web ページが読み込めるようになったはずです。
ローカルの html ファイルに object タグでビデオを埋め込んで、その URL を指定して開くこともできます。


===Categories:===
Qt で flash を使う詳細は [http://blog.forwardbias.in/2009/12/flash-in-qgraphicsview.html この記事(英語)] を参照してください。
 
* [[:Category:snippets|snippets]]

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 を使う詳細は この記事(英語) を参照してください。