
Recherche avancée
Médias (3)
-
Elephants Dream - Cover of the soundtrack
17 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
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (27)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...)
Sur d’autres sites (5742)
-
quickdraw : Switch to greedy parsing
18 avril 2015, par Vittorio Giovaraquickdraw : Switch to greedy parsing
Quickdraw packs data as a series of codes that the application is supposed
to handle, but it does not define any order in which they might appear.
Since it’s unfeasible to support *all* opcodes defined by the spec,
only handle well-known blocks containing video data and ignore any unknown
or unsupported ones.Move palette loading and rle decoding to separate functions to resue them
in other blocks and drop format initialization in init since it can
support more formats than pal8.Validate width and height.
-
FFmpeg command to add a single frame to the end of a video not working (resulting in zero-byte output file)
21 juillet 2023, par Frost DreamI'm trying to add a single frame to the end of a video file without re-encoding using FFmpeg. After searching online, I came across a command that is supposed to achieve this using the concat demuxer. However, when I run the command, it only creates a zero-byte output file. I'm not sure what I'm doing wrong.


Here's the command I'm using :


ffmpeg -i input_video.mp4 -framerate 30 -loop 1 -i single_frame.png -filter_complex "[0:v][1:v]concat=n=2:v=1:a=0" -c:v libx264 -preset veryfast -crf 18 -c:a copy output_video.mp4



The input_video.mp4 is the path to my original video file, and single_frame.png is the path to the image file containing the single frame I want to add. I expected the output video, output_video.mp4, to contain the original video followed by the single frame at the end, but it's just a zero-byte file.


Am I missing something in the command ? Is there an issue with the concat demuxer approach for adding a single frame ? Any insights or alternative methods to achieve this would be greatly appreciated.


Thank you !


-
avutil/frame : fix remove_side_data
2 novembre 2019, par Zhao Zhiliavutil/frame : fix remove_side_data
remove_side_data is supposed to remove a single instance by design.
Since new_side_data() doesn't forbid add multiple instances of the
same type, remove_side_data should deal with that.Signed-off-by : Marton Balint <cus@passwd.hu>