
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (52)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (9544)
-
avcodec/mediacodecdec_common : remove spurious space
19 février 2018, par Matthieu Bouron -
aarch64 : Get rid of a stray double space
13 octobre 2017, par Martin Storsjöaarch64 : Get rid of a stray double space
The extra space got included as part of the expansion of ELF, which
later interfered with gas-preprocessor which earlier only stripped out
leftover lines starting with ’#’ if the line started with that char.Signed-off-by : Martin Storsjö <martin@martin.st>
-
ffmpeg not creating the thumbnail image if the name of the video has space in between
2 décembre 2017, par Ezhil KumarI installed ffmpeg in my windows 10 PC successfully and got it running. I tired to create a thumbnail of the video i succeeded in it also but when i tried to create a thumbnail of the video which has space in between the names is not creating the thumbnail please help me.
Eg :
"demo.mp4" is creating the demo.jpg thumbnail
"my first video.mp4" is not creating the thumbnailThis is my Code kindly check it and say me a solution
<?php
$ffmpeg = 'C:\FFMPEG\bin\ffmpeg.exe';
$video = 'D:\Video\my first video.mp4';
$image = 'C:\FFMPEG\bin\my first video.jpg';
$second = 3;
$cmd = "$ffmpeg -i $video 2>&1";
if (preg_match('/Duration: ((\d+):(\d+):(\d+))/s', `$cmd`, $time)) {
$total = ($time[2] * 3600) + ($time[3] * 60) + $time[4];
$second = rand(1, ($total - 1));
}
$cmd = "$ffmpeg -i $video -deinterlace -an -ss $second -t 00:00:01 -r 1 -y -s 270x200 -vcodec mjpeg -f mjpeg $image 2>&1";
$return = `$cmd`;
echo 'done!';
?>