
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (65)
-
Emballe Médias : Mettre en ligne simplement des documents
29 octobre 2010, parLe plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...) -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (8899)
-
FFMPEG Command to Zoom the Video is slow
2 novembre 2015, par kishidpI’m trying to zoom a video using FFMPEG. I’m using this command :
ffmpeg -i input.mp4 "zoompan=z=2" output_zoom.mp4
It’s working fine as I get the zoom effect I wanted but the problem is that the process is slow.
I’m seeing a warning message :
Past duration 0.998039 too large
and when processing the output, the fps is running around 2.8, I’m not sure if this means something.
Anything i can do to speed this up ?
-
FFMPEG scale, zoom, and concat filter
2 août 2018, par Karate_DogI am using ffmpeg for android to produce video with mp4 format. I’m having trouble getting this command to work in FFMPEG, basically I am trying to add two images, scale them, add zoom effect, and finally concat the result into one video file. I have done something like this :
ffmpeg
-t 8 -i image1.png
-t 8 -i image2.png
-filter_complex
[0:v]scale=720:720[scl1]; [1:v]scale=720:720[scl2];
[scl1]zoompan=z=if(lte(zoom, 1.0), 1.55, max(1.001, zoom - 0.0010)):d=205, fade=t=out:st=7:d=1[v0];
[scl2]zoompan=z=if(lte(zoom, 1.0), 1.55, max(1.001, zoom - 0.0010)):d=205, fade=t=in:st=0:d=1,fade=t=out:st=7:d=1[v1];
[v0][v1]concat=n=2:v=1:a=0, format=yuv420p[v] -map [v] outputVideo.mp4Been tinkering with this command for a while but still can’t get it to work and I got error :
Input link in1:v0 parameters (size 1280x720, SAR 0:1) do not match the corresponding output link in0:v0 parameters (1280x720, SAR 45:31)
[Parsed_concat_7 @ 0xf0d77600] Failed to configure output pad on Parsed_concat_7 -
ffmpeg : zoom over bottom (right/left) corners of an image
22 août 2018, par Vinod MankareI need to create a video with zoom effect over an image to highlight bottom right/left corner with the help of ffmpeg.
I am trying with the following command :
ffmpeg -loop 1 -i image.png -filter_complex "zoompan=z=’zoom+0.002’:x=’trunc(380)’:y=’trunc(287)’:d=100" -ss 0 -i audio.mp3 -c:v libx264 -crf 0 -c:a aac -strict experimental -b:v 6M -b:a 1080k -r 25 -bufsize 1080k -shortest -s 1920x1080 -aspect 16:9 -y output.mp4 2>&1
Its working for the top (right/left) and centre element but not getting proper zoom effect for bottom corners for the same image. Please suggest what am I doing wrong, or is there any other best option to do the same ?