web-dev-qa-db-ja.com

入力type = 'file'から選択して、ビデオファイルのプレビューを設定する方法

モジュールの1つで、input [type = 'file']からビデオをブラウズする必要があります。その後、アップロードを開始する前に選択したビデオを表示する必要があります。

基本的なHTMLタグを使用して表示しています。しかし、それは機能していません。

コードは次のとおりです。

$(document).on("change",".file_multi_video",function(evt){
  
  var this_ = $(this).parent();
  var dataid = $(this).attr('data-id');
  var files = !!this.files ? this.files : [];
  if (!files.length || !window.FileReader) return; 
  
  if (/^video/.test( files[0].type)){ // only video file
    var reader = new FileReader(); // instance of the FileReader
    reader.readAsDataURL(files[0]); // read the local file
    reader.onloadend = function(){ // set video data as background of div
          
          var video = document.getElementById('video_here');
          video.src = this.result;
      }
   }
  
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<video width="400" controls >
              <source src="mov_bbb.mp4" id="video_here">
            Your browser does not support HTML5 video.
          </video>


 <input type="file" name="file[]" class="file_multi_video" accept="video/*">
32
Ronak Patel

この場合、@ [FabianQuirogaはcreateObjectURLよりもFileReaderを使用するほうが適切ですが、問題は_<source>_要素のsrcを設定するという事実に関係しています、したがってvideoElement.load()を呼び出す必要があります。

_$(document).on("change", ".file_multi_video", function(evt) {
  var $source = $('#video_here');
  $source[0].src = URL.createObjectURL(this.files[0]);
  $source.parent()[0].load();
});_
_<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<video width="400" controls>
  <source src="mov_bbb.mp4" id="video_here">
    Your browser does not support HTML5 video.
</video>

<input type="file" name="file[]" class="file_multi_video" accept="video/*">_

追伸:不要になったらURL.revokeObjectURL($source[0].src)を呼び出すことを忘れないでください。

55
Kaiido

Jqueryライブラリを使用することを忘れないでください

Javascript

$ ("#video_p").change(function () {
   var fileInput = document.getElementById('video_p');
   var fileUrl = window.URL.createObjectURL(fileInput.files[0]);
   $(".video").attr("src", fileUrl);
});

Html

< video controls class="video" >
< /video >
8
Fabian Quiroga

この問題に直面している場合。次に、以下の方法を使用して上記の問題を解決できます。

HTMLコードは次のとおりです。

//input tag to upload file
<input class="upload-video-file" type='file' name="file"/>

//div for video's preview
 <div style="display: none;" class='video-prev' class="pull-right">
       <video height="200" width="300" class="video-preview" controls="controls"/>
 </div>

以下がJS関数です。

$(function() {
    $('.upload-video-file').on('change', function(){
      if (isVideo($(this).val())){
        $('.video-preview').attr('src', URL.createObjectURL(this.files[0]));
        $('.video-prev').show();
      }
      else
      {
        $('.upload-video-file').val('');
        $('.video-prev').hide();
        alert("Only video files are allowed to upload.")
      }
    });
});

// If user tries to upload videos other than these extension , it will throw error.
function isVideo(filename) {
    var ext = getExtension(filename);
    switch (ext.toLowerCase()) {
    case 'm4v':
    case 'avi':
    case 'mp4':
    case 'mov':
    case 'mpg':
    case 'mpeg':
        // etc
        return true;
    }
    return false;
}

function getExtension(filename) {
    var parts = filename.split('.');
    return parts[parts.length - 1];
}
1
Pragya Sriharsh

簡単にしましょう

HTML:

<video width="100%" controls class="myvideo" style="height:100%">
<source src="mov_bbb.mp4" id="video_here">
Your browser does not support HTML5 video.
</video>

JS:

function readVideo(input) {

if (input.files && input.files[0]) {
    var reader = new FileReader();

    reader.onload = function(e) {

        $('.myvideo').attr('src', e.target.result);
    };

    reader.readAsDataURL(input.files[0]);
}
}

0
Usama Shahid

これはVUE JS: preview PICTURE の例です

ソースコードの例-DRAG-DROP _part

RENDERingとcreateObjectURL()の例 VIDEO.jsを使用

追伸「Pragya Sriharsh」ソリューションを改善したいだけです。

const = isVideo = filename =>'m4v,avi,mpg,mov,mpg,mpeg'
.split(',')
.includes( getExtension(filename).toLowerCase() )

.. JQueryを使用しないでください。現在は2k19です:-);

->だから:

const getExtension = filename => {
    const parts = filename.split('.');
    return parts[parts.length - 1];
}

...そして、残りの作業はWebpack 4で行います!

0
kostia7alania