
Recherche avancée
Médias (3)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
Autres articles (92)
-
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. -
Configuration spécifique pour PHP5
4 février 2011, parPHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
Modules spécifiques
Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.
Sur d’autres sites (5400)
-
configure : create the tests directory like the doc directory
15 décembre 2014, par Michael Niedermayer -
Create screen shot from video dynamically without ffmpeg [on hold]
3 décembre 2014, par hiteshI need to take screenshot from the video after uploading, I already tried ffmpeg but it seems wjile enabling ffmpeg in my Cent OS 6.5 server. (check here )
So I am looking for other ways to do this, I will be using simple html file tag for getting the video file, then I will be uploading it in server.
what are other ways than ffmpeg to create screen shot from video dynamically in php or JS.
-
how to create video thumbnail on shared server with ffmpeg ?
2 décembre 2014, par Manjeet Barnalahiii ..
this code is working on my localhost for creating video thumbnail.
plz tell me how to enable the FFMPEG on shared server where to place FFMPEG files any idea ????<?php
$ffmpeg = 'ffmpeg.exe';
// the input video file
$video = 'video/test_video.flv';
// where you'll save the image
$image = 'thumb/test_thumb.jpg';
//time to take screenshot at
$interval = 5;
//screenshot size
$size = '500x500';
//ffmpeg command
$cmd = "$ffmpeg -i $video -deinterlace -an -ss $interval -f mjpeg -t 1 -r 1 -y -s $size $image 2>&1";
exec($cmd);
echo 'done!';
?>