我的应用已经可以上传并将视频保存到公共/文件夹。我唯一的问题是,即时显示(让我们说1分钟长的视频)它不播放,但是当我播放2秒长的视频时它的工作。我不知道为什么会这样。
我有这是我的控制器
$input = Input::file('vid');
$fileinput = $input->getClientOriginalName();
$input = Input::file('vid')->move($destination,$fileinput);
$post = New Post();
$post->title = Input::get('title');
$post->content = nl2br(Input::get('content'));
$post->videos = $fileinput;
$users->post()->save($post);
在我的观点中
<video width="600" height="500" controls>
<source src="{{ asset('img/'. $posts->videos)}}" type="video/mp4">
<source src="{{ asset('img/'. $posts->videos)}}" type="video/ogg">
<source src="{{ asset('img/'. $posts->videos)}}" type="video/webm">
Your browser does not support the video tag.
</video>
我只是想了解为什么会发生这种情况,谢谢