
Recherche avancée
Autres articles (65)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
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 (...) -
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 (9179)
-
Revision 79003 : Pipeline "afficher_contenu_objet" : prendre en compte le cas où ...
30 novembre 2013, par tcharlss@… — LogPipeline "afficher_contenu_objet" : prendre en compte le cas où l’identifiant de l’objet n’est pas donné par $fluxargs ?id_objet ? mais par $fluxargs ?contexte ?id ?.
Problème constaté sur la fiche d’une commande.
ps : De plus, l’exemple du site http://programmer.spip.net/afficher_contenu_objet,434 récupère l’identifiant avec $fluxargs ?id ?… -
ffmpeg : input rate and output rate not respected
2 novembre 2022, par GregoryI am using
ffmpeg
to overlay PNG and gifs while trying to preserve the same framerate and delay of the GIFs. The gif files all have the same number of frames (5) and a 13ms delay between each frame.

Attempt #1 :


ffmpeg 
 -r 5 -i ./Salmonbg.png 
 -r 5 -i ./Pinkfur.gif 
 -r 5 -i ./Cap.gif 
 -r 5 -i ./Glasses.gif 
 -r 5 -i Bone.gif 
 -filter_complex "[0:v][1:v]overlay=format=auto[v1];[v1][2:v]overlay=format=auto[v2];[v2][3:v]overlay=format=auto[v3];[v3][4:v]overlay=format=auto[v4];[v4]split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" 
 -r 1000/130 preview.gif



The command above will generate with the correct frame alignment from the png + gifs, however output frame delay incorrect :


Frame #1: 260 <- WRONG (Why???)
Frame #2: 130
Frame #3: 260 <- WRONG (Why???)
Frame #4: 130
Frame #5: 130



Attempt #2 :


ffmpeg 
 -i ./Salmonbg.png 
 -i ./Pinkfur.gif 
 -i ./Cap.gif 
 -i ./Glasses.gif 
 -i Bone.gif 
 -filter_complex "[0:v][1:v]overlay=format=auto[v1];[v1][2:v]overlay=format=auto[v2];[v2][3:v]overlay=format=auto[v3];[v3][4:v]overlay=format=auto[v4];[v4]split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" 
 -r 1000/130 preview.gif



The command above will output the correct frame delay, 13ms for all of them. However, the output gif will not use the first frame of each GIF. The second frame is used twice basically.


Any idea what I am missing ? I feel like i'm 90% there but i can't figure out what i'm doing incorrectly.


-
ffmpeg - set metatag to .ts file
23 septembre 2013, par Febini have a .mp4 video, that is recorded in iphone4s.This video file contains 'Rotate - 180' metadata.
When i am converting the .mp4 file to .ts using ffmpeg. I lost the 'Rotate' meta tag.
The ffmpeg command that i have used is given below.
ffmpeg -i input_file.mp4 -vcodec copy -acodec copy -vbsf h264_mp4toannexb output_file.ts
is there any one know how to set 'Rotate' meta data to a .ts file ?
or
any other way to copy all meta datas in the input .mp4 file to output .ts file
Thank you