
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (46)
-
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 -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (11962)
-
libx264 : add ’direct-pred’ private option
1er septembre 2011, par Anton Khirnovlibx264 : add ’direct-pred’ private option
-
Anomalie #4506 : Supprimer les CSS inline des modèles de documents
17 juin 2020, par cy_altern -Circonstance aggravante ce truc de
[ style='width:(#GET{largeur})px;']
est une très une sale embuscade pour les honnêtes spipeurs qui activent le plugin adaptive_images et qui se retrouvent avec les raccourcistout cassés (en cas de document image la vignette fait 100% de la largeur du texte...) à moins de faire une surcharge de modeles/image.html ou un sale hack CSS avec un !important...
-
how to install ffmpeg for generating thumbnail images and how to install ffmpeg in linux server on godaddy
18 juin 2015, par Intrepid Uliyarhow to install ffmpeg for generating thumbnail images and how to install ffmpeg in linux server on godaddy
i need to install ffmpeg for generating thumbnail images, it’s working fine in localhost(Windows), but not work in Linux(i don’t know server platform). i have refer some website.in that they put like exe are not execute in linux server, we need to install ffmpeg programmatically. can anyone give me suggestion.i have refer some website. but that’s not useful.
my code
$video = "../../".$down_path;
$rand=mt_rand(111111,999999);
//where to save the image
$image1 = "../../completed_project/thumb/".$rand.'ss.jpg';
$image2 = "../../completed_project/thumb/".$rand.'uu.jpg';
$image3 = "../../completed_project/thumb/".$rand.'rr.jpg';
$thumb_image1 = "completed_project/thumb/".$rand.'ss.jpg';
$thumb_image2 = "completed_project/thumb/".$rand.'uu.jpg';
$thumb_image3 = "completed_project/thumb/".$rand.'rr.jpg';
//time to take screenshot at
$interval1 = 2;
$interval2 = 4;
$interval3 = 5;
//screenshot size
$size = '320x240';
//ffmpeg command
$cmd1 = "$ffmpeg -i $video -deinterlace -an -ss $interval1 -f mjpeg -t 1 -r 1 -y -s $size $image1 2>&1";
$cmd2 = "$ffmpeg -i $video -deinterlace -an -ss $interval2 -f mjpeg -t 1 -r 1 -y -s $size $image2 2>&1";
$cmd3 = "$ffmpeg -i $video -deinterlace -an -ss $interval3 -f mjpeg -t 1 -r 1 -y -s $size $image3 2>&1";
$return = `$cmd1`.`$cmd2`.`$cmd3`;
print_r($cmd1);Output Like this
ffmpeg.exe -i ../../completed_project/606560114793SK_PROMO-45s.mp4 -deinterlace -an -ss 2 -f mjpeg -t 1 -r 1 -y -s 320x240 ../../completed_project/thumb/362796ss.jpg 2>&1