
Recherche avancée
Médias (3)
-
Valkaama DVD Cover Outside
4 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
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
Autres articles (111)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (8441)
-
avcodec/mpegvideo : Zero-init mbintra_table
13 juin, par Andreas Rheinhardtavcodec/mpegvideo : Zero-init mbintra_table
Up until now, they are marked as dirty (filled with 1), meaning that
the entries are in need of a reset via ff_clean_intra_table_entries() ;
but actually, the entries are initialized to the state that
ff_clean_intra_table_entries() produces, so they can be marked
as non-dirty (i.e. filled with 0).Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
avcodec/cuviddec : Add support for decoding HEVC 4:4:4 content
7 octobre 2018, par Philip Langdaleavcodec/cuviddec : Add support for decoding HEVC 4:4:4 content
This is the equivalent change for cuviddec after the previous change
for nvdec. I made similar changes to the copying routines to handle
pixel formats in a more generic way.Note that unlike with nvdec, there is no confusion about the ability
of a codec to output 444 formats. This is because the cuvid parser is
used, meaning that 444 JPEG content is still indicated as using a 420
output format. -
Slicing video on several short clips of different lengths in one go
1er décembre 2019, par IgniterI’ve got time codes using which I want to slice a short MP4 video (average length 5-7 minutes)
[ 0, 15, 35, 52, 142, 215, ...] // time codes in seconds
Usually there are 5-7 time codes meaning that I need to create 5-7 clips out of my initial video
The fist clip is from start to 15 sec, the second one is from 15 sec to 35 sec, 35-52, etc.It’s trivial operation in Bash but I’m using ffmpeg on NodeJS and I’d like to do it without iteration in one go
// Slicing a single clip
ffmpeg -i input.mp4 -ss 0 -to 15 -c copy clip-01.mp4
// Same command in NodeJS
ffmpeg(`/tmp/${id}/input.mp4`)
.renice(5)
.outputOptions([
'-ss 0',
'-to 15',
'-c copy'
])
.on('end', () => {})
.on('error', (e, stdout, stderr) => {})
.save(`/tmp/${id}/clip-01.mp4`);No need for re-encoding, no need for precise timestamps (1 second out of sync is OK)
Any thoughts or ideas would be greatly appreciated !