
Recherche avancée
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)
-
ffmpeg, how to create video from image with different time interval in android
30 mars 2018, par ImranI have set of image in local storage. ex : img000,img001,img002....img044
I want, when img0014 then time interval 600millisecond and when imag030 then time interval 600millisecond and when imag044 then time interval 600millisecond
When I Use This Commend then create video without time interval
String[] cmd2="-r", "50", "-i", "/storage/emulated/0/Movies/pic/bdCric%03d.jpg", "-c:v", "libx264", "-vf", "fps=25", "-pix_fmt", "yuv420p", video.mp4 ;please Help Me
-
FFMPEG get a video duration and create a thumbnail
14 mars 2018, par M.IzzatCurrently this is what I use to convert a video into image from python :
def video_conversion(raw_file):
duration = "ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 input.mp4"
thumbnail_cmd = "ffmpeg -ss 10 -i input.mp4 -vframes 1 output.jpg"
subprocess.call(duration)
return outputbut this will create and Image for every 30 sec of the video duration, what I want is get the video total duration and create athumbnail exactly in the middle of the duration
e.g : if the video duration is 60 second, create a thumbnail on the 30th second
-
Create video with logo and
14 mars 2018, par DM1974I would like to do the following in order
-
Create an MP4 video from new for say 30 seconds
-
Add a logo at the top left or right
-
Also add text at the bottom, so at time = 0 it says "Hello" time = 5 it says "Goodbye" and have these displayed for a little duration...
Could I do this in one call to ffmpeg, or would I need to do it in three steps ?
How can I combine these steps together ? -