“嵌入”是将软件模块,对象或应用程序放入您自己的应用程序或网页中。
我想在我的网络应用程序中嵌入 YouTube 视频,同时保护直接视频链接。我该怎么做?
我希望将 YouTube 视频添加到我的网络应用程序中,但我想阻止用户在使用我的应用程序时访问视频的直接链接。我怎样才能实现这个目标? 说实话我不...
我的计划是嵌入 YouTube 作为网站的背景音乐。以下是 HTML 文件中的代码片段: <p>我的计划是嵌入 YouTube 作为网站的背景音乐。以下是 HTML 文件中的代码片段:</p> <pre><code> <iframe width="1" height="1" wmode="transparent" src="https://www.youtube.com/embed/VIDEO_ID?autoplay=1&loop=1" frameborder="0" allowfullscreen> </iframe> </code></pre> <p>我尝试通过 Chrome 加载 HTML 文件。检查了“检查元素”上的“网络”选项卡,并确认 YouTube 嵌入正在播放该文件(一堆 <pre><code>videoplayback</code></pre> 文件连续加载到“网络”选项卡上),所以我认为视频已静音。有修复吗?</p> </question> <answer tick="false" vote="0"> <p>我尝试了这个片段,并尝试将宽度和高度更改为 100 以实际查看视频是否正在播放。因此,视频并没有静音,而是没有播放。因为谷歌浏览器对此有一些限制。播放控制更偏向用户。因此,自动播放音频将不起作用。自动播放的唯一工作方式是将视频设置为静音=1。所以,并没有真正帮助解决这个问题。</p> <p>我尝试使用一些 iframe api,但它们也不起作用。</p> <p>最好的办法是从 YouTube 下载音频并添加如下代码:</p> <pre><code><audio id="bg-music" autoplay loop> <source src="background_music.mp3" type="audio/mpeg"> </audio> </code></pre> </answer> </body></html>
使用embeddedfolderview嵌入谷歌驱动器文件夹似乎不再起作用
显然谷歌驱动器embeddedfolderview功能不再被渲染。 对于前。该文件夹是公共的,即使在隐身模式下也可以访问它:https://drive.google.com/drive/folders/
目前,我正在使用 NEXT.js 开发一个网络应用程序。交易是我正在使用一个第三方 iframe,它显示大量(数百个)console.logs。我只是想“静音”输出......
在网页上嵌入 Twitter 时间线时,会显示“此处无可查看”。 我发布此内容只是为了尝试让结果显示在 Google 上,因为当我
我使用 PHP 解析一个文本文件,其中包含嵌入脚本(在 php 标签之间),如下所示: 这是一个文本文件 我可以包含一些 PHP 脚本,例如 一个...
如何使用 /_layouts/15/embed.aspx 端点修改 SharePoint 嵌入结果?
假设我有一份文件: https://{tenant}.sharepoint.com/sites/{site-collection}/Shared%20Documents/Document.docx 然后我可以使用“端点”_layouts/15/embed.aspx?Id= 作为 url ...
Instagram 添加了 x-frame-options DENY,因此他们的嵌入脚本停止工作?
当您想将 Instagram 帖子嵌入到您的网站时,Instagram 提供了一个嵌入按钮,可以有效地使用 ...
嵌入式 JS 数据未输入 Qualtrics Data & Analysis
我需要我的调查来收集访问调查的页面 URL 上的信息。 在调查工作流程中,嵌入的推荐人应该执行此操作,但它不会给我完整的 UR...
我有这段代码,它工作得很好。 if( strcasecmp( 'www.youtube.com/watch', $link[2] ) == 0 && $this->params( $params, $link[3], 'v' ) ) 返回' <p>我有这个代码,它工作得很好。</p> <pre><code>if( strcasecmp( 'www.youtube.com/watch', $link[2] ) == 0 && $this->params( $params, $link[3], 'v' ) ) return '<iframe width="'.$width.'" height="'.$height.'" src="'.$link[1].'www.youtube.com/embed/'.$params['v'].'?rel=0&amp;playsinline=1&amp;controls=1&amp;showinfo=0&amp;modestbranding=0" frameborder="0" allowfullscreen></iframe>'; else if( preg_match( '/^(?:www\.)?youtu\.be\/([^\/]+)/i', $link[2], $matches )) return '<iframe width="'.$width.'" height="'.$height.'" src="'.$link[1].'www.youtube.com/embed/'.$matches[1].'?rel=0&amp;playsinline=1&amp;controls=1&amp;showinfo=0&amp;modestbranding=0" frameborder="0" allowfullscreen></iframe>'; </code></pre> <p>它工作得很好,可以自动用视频替换链接。但现在,YouTube 有这样的东西,短视频有一个“Shorts”的链接</p> <p>示例:<a href="https://youtube.com/shorts/d1wXX9xO_2o?feature=share" rel="nofollow noreferrer">https://youtube.com/shorts/d1wXX9xO_2o?feature=share</a></p> <p>这不会自动嵌入。知道如何解决这个问题吗?</p> <p>我已经尝试过:</p> <pre><code>else if( preg_match( '/^(?:www\.)?youtube\.com/shorts\/([^\/]+)/i', $link[2], $matches )) return '<iframe width="'.$width.'" height="'.$height.'" src="'.$link[1].'www.youtube.com/embed/'.$matches[1].'?rel=0&amp;playsinline=1&amp;controls=1&amp;showinfo=0&amp;modestbranding=0" frameborder="0" allowfullscreen></iframe>'; </code></pre> <p>但运气不佳。</p> </question> <answer tick="false" vote="4"> <p>您不需要为短裤使用不同的代码,只需使用其网址末尾的标识符和此 iframe:</p> <pre><code><iframe width="720" height="576" src="{{'https://www.youtube.com/embed/' . $video}}" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen> </iframe> </code></pre> <p>经过测试,它非常适合我。</p> </answer> <answer tick="true" vote="1"> <p>这有效。</p> <pre><code>else if( preg_match( '/youtube\.com\/shorts\/(\w+\s*\/?)*([0-9]+)*$/i', $link[2], $matches ) ) return '<iframe width="'.$width.'" height="'.$height.'" src="'.$link[1].'www.youtube.com/embed/'.$matches[1].'?rel=0&amp;playsinline=1&amp;controls=1&amp;showinfo=0&amp;modestbranding=0" frameborder="0" allowfullscreen></iframe>'; </code></pre> </answer> <answer tick="false" vote="1"> <p>我尝试了Document360的这个解决方案,它有效。</p> <p>解决方案链接:</p> <p><a href="https://docs.document360.com/docs/embed-youtube-shorts" rel="nofollow noreferrer"><strong>如何嵌入 YouTube Shorts?</strong></a></p> <p>从地址栏中复制视频链接,单击共享,然后将 URL 中的“<strong>/shorts/</strong>”替换为“<strong>/embed/</strong>”。这样您就可以在页面或文章中嵌入任何 YouTube Shorts 视频。</p> </answer> </body></html>
如何在另一个PHP页面(带有HTML)中显示一个PHP页面(带有HTML)
我正在研究 PHP 脚本,我尝试将其与我之前制作的另一个文件上传脚本合并(PHP 和 HTML 页面) 我不想制作另一个 PHP 页面并包含旧脚本,我想要该文件
是否可以将exe文件嵌入到*.doc文件中,以便当我打开文档时,嵌入的exe文件自动执行? 如果可以实现,请向我提供解决方案...
如何通过我的 Discord 机器人(w/python)发送嵌入内容?
我一直在开发一个新的 Discord 机器人。 我已经学到了一些东西,现在,我想让这些东西变得更加定制。 我一直在尝试让机器人发送嵌入的公共消息。
如何将 <iframe> HTML 代码嵌入到 C# 应用程序中?
如何最有效地将 HTML iframe 嵌入到我的 C# 应用程序中。 比方说这个 YouTube 视频: <question vote="1"> <p>如何最有效地将 HTML iframe 嵌入到我的 C# 应用程序中。</p> <p>让我们看一下这个 YouTube 视频:</p> <pre><code><iframe width="560" height="315" src="//www.youtube.com/embed/UJ53Js0YKZM" frameborder="0" allowfullscreen></iframe> </code></pre> <p>我已经尝试过这个但没有成功:</p> <pre><code>Private Sub InitializeComponent() Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmAbout)) ' 'frmVirtual ' Me.Text = "Virtual" Me.VirtualView = New WebBrowser Me.VirtualView.Navigate("<iframe src='https://www.google.com/maps/embed?pb=!1m0!3m2!1sen!2sau!4v1481252003737!6m8!1m7!1sF%3A-pwYGx-oWTIk%2FWC6LeJuIxdI%2FAAAAAAAABIg%2FphppDvMZr54JiWnLbsbUgDcTGUfGXLMRACLIB!2m2!1d-33.76525136331761!2d150.9088391438127!3f310!4f0!5f0.7820865974627469' width='600' height='450' frameborder='0' style='border: 0' allowfullscreen></iframe>") Me.SuspendLayout() End Sub </code></pre> <p>C# 应用程序当然是 Windows 窗体应用程序。它不一定是视频,甚至只是一个带有链接的小横幅,当然是在 Iframe 中。请帮忙!</p> </question> <answer tick="false" vote="0"> <p>您可以使用 <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.webbrowser.aspx" rel="nofollow">WebBrowser</a> 控件来完成此操作。</p> <pre><code>WebBrowser1.Navigate("https://www.youtube.com/embed/UJ53Js0YKZM?autoplay=1"); </code></pre> </answer> <answer tick="false" vote="0"> <p>您不能在 Windows 窗体应用程序中使用 IFrame。然而,有一个名为 System.Windows.Forms.WebBrowser(); 的 Windows 窗体控件;</p> <p>这可以通过导航到工具箱(在 win 表单设计器上)并拖动到网络浏览器(通用控件)来使用。</p> <p>在 Form 类中,您需要类似以下内容。</p> <pre><code>public Form1() { InitializeComponent(); webBrowser1.Navigate("www.youtube.com/embed/UJ53Js0YKZM"); } </code></pre> <p>如果你真的想要一个 iframe,以下可能会起作用</p> <pre><code> private void Form1_Load(object sender, EventArgs e) { var page = @" <html> <body> <iframe width='560' height='315' src='https//www.youtube.com/embed/UJ53Js0YKZM' frameborder='0'> </iframe> </body> <html>"; webBrowser1.DocumentText = page; webBrowser1.ScriptErrorsSuppressed = true; } </code></pre> </answer> <answer tick="false" vote="0"> <p>如果您只想访问一个 YouTube 视频,您可以将该 iframe 代码保存在一个空的 html 文档中,并将 Web 浏览器指向该文档。</p> <pre><code>string applicationDirectory = System.IO.Path.GetDirectoryName(Application.ExecutablePath); string myFile = System.IO.Path.Combine(applicationDirectory, "iFrame.html"); webBrowser1.Url = new Uri("file:///" + myFile); </code></pre> <p>如果您想要更强大的方法,您可以构建 iframe 的 html 并将其作为字符串发送到 web 浏览器的文档。有关如何执行此操作的信息,请参阅<a href="https://stackoverflow.com/questions/5362591/how-to-display-the-string-html-contents-into-webbrowser-control">如何将字符串 html 内容显示到 Web 浏览器控件中?</a>。 </p> </answer> <answer tick="false" vote="0">我有 Windows 10 和 C#、UWP 应用程序。如果您只想显示 <p><code>iFrame</code><pre> 的内容(URL),这对我有用。无需在我的 </pre><code>xaml.cs</code><pre> 文件中编写代码,因为我只想显示一个网站。</pre> </p><code><Grid> <WebView Source ="https://yourwebsite.com" Height="250" Width="650" /> </Grid> </code><pre> </pre>原来的<p><code>iFrame</code><pre>是这样的:</pre> </p><code><iframe style="height:250px; width:650px" src="https://yourwebsite.com></iframe> </code><pre> </pre>对于 YouTube 视频:<p> </p><code><Grid> <WebView Source ="https://www.youtube.com/embed/jJKEkZL9qrM" Height="250" Width="650" /> </Grid> </code><pre> </pre> </answer> <answer tick="false" vote="0"><code><iframe visible="true" runat="server" id="yourid" style="visibility:hidden;display:block;width:1px;height:1px;"></iframe> yourid.Attributes.Add("src", "youtube.com"); </code><pre> </pre> </answer></body>
我正在使用npm库react-social-media-embed。 渲染:(网址)=>( 我正在使用 npm 库 react-social-media-embed . render: (url) => ( <EmbedContainer> <TwitterEmbed width={"100%"} url={url} /> </EmbedContainer> ), 我正在像上面一样进行嵌入实现。我有一个不同社交嵌入的对象,这就是为什么我使用渲染属性来调用它 我想做的是每当用户单击嵌入时运行一个函数以跟踪点击等。 我尝试向父容器添加 onclick,使用嵌入顶部的覆盖 div,直接修改库的源代码,但没有任何效果。有什么想法吗? useEffect(() => { const handler = (e) => { // check if e.target is embed container } document.addEventListener("click", handler); return () => { document.removeEventListener("click", handler) } }, []) 将点击事件监听器添加到文档中
我尝试使用 在 django 项目中显示照片和 pdf 文件,但 pdf 文件未显示 这就是我正在做的 这是查看功能 @要求登录 def view_docume...
我想将 client-ui A 嵌入到 client-ui B 中。从本地我可以将 client-ui A 嵌入到 B 中,但在登台时失败。 我在控制台中没有看到任何错误。 在嵌入标签中,我看到“client-ui A拒绝c...
我开发了一个应用程序,目前通过 iframe 提供,以便合作伙伴可以将其嵌入到他们的网站中。其中一些合作伙伴对类似的电子邮件体验感兴趣。 有没有
我试图为我正在开发的机器人制作一个帮助嵌入页面。然而,它没有嵌入,而是显示了这些乱码: 我使用的代码: @client.command 异步定义帮助(ctx): 打印(&q...
有没有办法将 PDF 嵌入网页,以便 Android 上运行的 Chrome 可以查看该 PDF,而无需使用 Google Drive?
使用以下方法将 PDF 嵌入到网页上非常简单 但这不起作用...