0
私はMVCで新しく、ビデオ(VARBINARY(max)フィールドにデータベースに格納されている)を再生しようとしています。私はすでにWEBアプリケーションにビデオを表示することができますが、問題はプログレバーです。それは私が別のポイントへのジャンプを実行すると動作しますが動作しません。私はこれについていくつかの資料を読みましたが、私はそれを解決することができません。問題はバッファリング(開始/終了)に関するものだと思う。以下は私のコードです。ジャンピングポイントブルーが動作しない - ビデオ
コントローラー:
public ActionResult Media(int id)
{
byte[] teste = null;
string query1 = "SELECT * FROM Movie WHERE ID = '"+id+"'";
using (SqlConnection connection1 = new SqlConnection(ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString))
using (SqlCommand command1 = new SqlCommand(query1, connection1))
{
connection1.Open();
var reader = command1.ExecuteReader();
if (reader.HasRows)
{
reader.Read();
teste = (byte[])reader["Movie"];
}
connection1.Close();
}
var memoryStream = new MemoryStream(teste);
return new FileStreamResult(memoryStream, Convert.ToString(teste));
}
ビュー:以下
<video width="400" controls>
<source src="@Url.Action("Media","Account",new { id = 3 })" type="video/mp4">
</video>
ジャンプポイントが表示されますが、動作しません:
タンクします!それは完璧に働いた。 –