0

誰でもこれを説明できますか?

 def gen_video_thumb(width, height)
          directory = File.dirname(current_path)
          tmpfile = File.join(directory, "tmpfile")
          FileUtils.move(current_path, tmpfile)
          file = ::FFMPEG::Movie.new(tmpfile)
          file.transcode(current_path, "-ss 00:00:01 -an -r 1 -vframes 1 -s #{width}x#{height}")
          FileUtils.rm(tmpfile)
        end

特にこれ

file.transcode(current_path, "-ss 00:00:01 -an -r 1 -vframes 1 -s #{width}x#{height}")ライン

詳細なコードについては、このリンクを確認できます。 http://t4416.codeinpro.us/q/508138894f1eba38a43205ee

4

0 に答える 0