PHP converts a video to MP4 and obtains a video preview image.

Source: Internet
Author: User
This article describes how PHP converts a video to MP4 and obtains a video preview image. It involves php video file operations. For more information, see

This article describes how PHP converts a video to MP4 and obtains a video preview image. It involves php video file operations. For more information, see

This example describes how PHP converts a video to MP4 and obtains a video preview. Share it with you for your reference. The specific implementation method is as follows:

The Code is as follows:

<? Php
Flv_convert_get_thumb ('input. avi', 'output.jpg ', 'output. ogm ');
// Code provided and updated by steve of phpsnaps! Thanks
// Accepts:
// 1: the input video file
// 2: path to thumb jpg
// 3: path to transcoded mpeg?
Function flv_convert_get_thumb ($ in, $ out_thumb, $ out_vid)
{
// Get thumbnail
$ Cmd = 'ffmpeg-v 0-y-I '. $ in. '-vframes 1-ss 5-vcodec mjpeg-f rawvideo-s 286x160-aspect '. $ out_thumb;
$ Res = shell_exec ($ cmd );
// $ Res is the output of the command
// Transcode video
$ Cmd = 'encoder '. $ in. '-O '. $ out_vid. '-af volume = 10-aspect-of avi-noodml-ovc x264-x264encopts bitrate = 500: level_idc = 41: bframes = 3: frameref = 2: nosnr: nossim: pass = 1: threads = auto-oac mp3lame ';
$ Res = shell_exec ($ cmd );
}
?>

I hope this article will help you with php programming.

,

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.