我有一个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)...
<source src="somevideo.webm" type="video/webm">
playsinline
属性。