
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 (40)
-
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 (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 (7215)
-
avcodec/videotoolbox : add support for full range pixel formats
13 avril 2019, par Akemi -
avcodec/cfhd : Check that cropped size is smaller than full
29 août 2019, par Michael Niedermayeravcodec/cfhd : Check that cropped size is smaller than full
Fixes : signed integer overflow : 57342 * 120830 cannot be represented in type 'int'
Fixes : 16426/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_CFHD_fuzzer-5758744817827840Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
-
ffmpeg parameters to cut video files with Full Re-Encoding
24 septembre 2019, par How toThe following code will be used to trim multiple video files (with different audio or video codecs, or containers etc...).
The purpose of this code is to cut a video file with ffmpeg as the resulting output (cut) file to contain the same video, audio codecs as the original as using method FULL-RENCODING.
My question is whether there is any error in the current parameters ?Example of used ffmpeg code :
ffmpeg -i Sample.vob -ss 00:00:10.000 -strict -2 -t 00:00:10.000 -map 0:v:0 -map 0:a? -acodec copy -map 0:s? -scodec copy SSSS.vob
or
ffmpeg -i Sample.mp4 -ss 00:00:10.000 -strict -2 -t 00:00:10.000 -map 0:v:0 -map 0:a? -acodec copy -map 0:s? -scodec copy SSSS.mp4
or
ffmpeg -i Sample.mkv -ss 00:00:10.000 -strict -2 -t 00:00:10.000 -map 0:v:0 -map 0:a? -acodec copy -map 0:s? -scodec copy SSSS.mkv
and others...