视频标签在移动设备上不起作用

问题描述 投票:5回答:4

我有一个ASP网站,它根据HTTP参数'id'播放视频

服务器端:

  Public vidurl As String
  Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        Dim id As String = Request.QueryString("id")
        Dim DT As New DataTable
        Dim vidInfo As VideoInfo
        Try


            If id IsNot Nothing Then

                Dim SQLConnection_Cont As New SqlConnection(SQLConntStr)
                DT = f.GetVideoInfo(id, SQLConnection_Cont)

                If DT IsNot Nothing Then
                    If DT.Rows.Count > 0 Then
                        vidInfo = New VideoInfo With {
                             .ID = DT.Rows(0).Item("FTPID"),
                             .Processed = DT.Rows(0).Item("Processed"),
                             .URL = DT.Rows(0).Item("URL"),
                             .VideoName = DT.Rows(0).Item("VideoName"),
                             .VidID = DT.Rows(0).Item("VidID"),
                             .Created = DT.Rows(0).Item("Created"),
                             .MonthDiff = DT.Rows(0).Item("Monthdiff")}


                        If vidInfo.MonthDiff = 0 Then
                            vidurl = "http://webpath.com/virtualdirectory/content/" & vidInfo.VideoName
                           End If
                    End If
                End If 
          End If

        Catch ex As Exception
            WriteExToFile("Video.aspx.vb", ex.ToString)
        End Try

    End Sub

客户端:

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Video Player</title>
    <link href="css/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
    <form id="form1" runat="server">
        <div>
        <div id="vidplay">
            <video height="400"  controls style="position: relative; top: 23px;">
                 <source src=<%= vidurl %>  type="video/mp4" codecs="avc1.42E01E, mp4a.40.2"/>
                 <object data=src=<%= vidurl %> width="320" height="240"></object> 
            </video>
       </div>
       </div>
   </form>
</body>
</html>

所以我在全局变量vidurl中的虚拟目录中传递视频路径>

当我在Google Chrome浏览器桌面版上播放此音乐时,我只会听到视频中带有黑色图像的声音。

当我在移动设备上播放时,会出现黑色视频,但根本不播放任何内容。

可能是什么问题?

请注意,虚拟目录中的所有视频均为mp4格式。

UPDATE:

我去了视频中的编解码器信息

,>

它说:MPEG-4 Video (mp4v)

这可能是问题吗?

优先级是使视频在移动设备上可以正常播放。

我有一个ASP网站,它根据HTTP参数'id'服务器端播放视频:公共vidurl作为受字符串保护的子Page_Load(ByVal发送方为对象,ByVal e为System.EventArgs)...

html asp.net vb.net html5 video
4个回答
3
投票
某些浏览器不支持某些文件格式。尝试添加其他网络视频格式来源。

<source src="somevideo.webm" type="video/webm">


1
投票
不幸的是,在所有浏览器中播放视频都是痛苦的。对我来说,效果最好的解决方案是mediaelement.js(甚至ie8)。设置非常容易,并且是前端世界上最聪明的人推荐的库,使用非常广泛。唯一的问题是,使用Flash后备广告时,很难使其具有响应能力。

0
投票
嗯,我不知道您的代码是否与示例代码相同,但是您可以根据示例代码尝试以下建议

0
投票
只需在视频标签中添加playsinline属性。
© www.soinside.com 2019 - 2024. All rights reserved.