php video

miniatura del video en php durante la carga



(2)

Use debajo de dos líneas para crear una imagen de video usando ffmpeg

$str_command= $ffmpeg ." -i " . $image_source_path . $image_cmd .$dest_image_path; shell_exec($str_command);

Por favor, encuentre una explicación variable a continuación:

$ffmpeg ="Document path to your ffmpeg"; $image_source_path = "Document path to your video" $image_cmd = " -r 1 -ss 00:00:10 -t 00:00:01 -s ".ALL_PLACE_WIDTH."x".ALL_PLACE_HEIGHT." -f image2 " ; Where ALL_PLACE_WIDTH ="width of the image you want" ALL_PLACE_HEIGHT ="heoght of the image you want" $dest_image_path = "Document path to your image which is going to create"

Esto capturará la imagen de su video después de 10 segundos.

FFMPEG

Espero que esto ayude.

Posible duplicado:
¿Cómo crear miniaturas o previsualizar videos?

He hecho una galería de videos. Quiero una miniatura de ese video como youtube. ¿Cómo puedo obtener eso mientras se carga en php?