
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (47)
-
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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 (9975)
-
Video conversion irregularities [closed]
3 janvier 2020, par ExosylverI’m using ffmpeg to to break a video into parts that each contain 64 mb.[ In brief, the script takes the file size divides it by 64 and adds one to the nearest integer (the // operator in python) and breaks the file up into that many pieces.] The problem I am having is that the equal length parts are VERY different file sizes. For example, 642mb video, breaks into 11 parts. Some of them are the correct estimated file size, around 58mb,and the same length but the first few parts are over 150 mb. How could some frames be more info heavy than others ?
-
ffmpeg - replace all corrupted frames with a dummy
24 août 2020, par DmitryI look for a solution on how to detect and then automatically replace all corrupted (or completely broken) frames with a black one.


I've already tried the following command, but the result is not quite what I actually need.


ffmpeg -err_detect ignore_err -i video-with-broken-frames.avi -c copy fixed.avi



This command detects and replaces all corrupted frames with the nearest good one. So that if I have 20 corrupted frames at the start of a video - they will be replaced with 21st good one. Well, what I need is to replace corrupted frames with some dummy, for instance with a black one. Or just some-how to indicate what that frame is broken and was copied.


-
AAC Encoder : clipping avoidance
21 juillet 2015, par Claudio FreireAAC Encoder : clipping avoidance
Avoid clipping due to quantization noise to produce audible
artifacts, by detecting near-clipping signals and both attenuating
them a little and encoding escape-encoded bands (usually the
loudest) rounding towards zero instead of nearest, which tends to
decrease overall energy and thus clipping.Currently fate tests measure numerical error so this change makes
tests using asynth (which are near clipping) report higher error
not less, because of window attenuation. Yet, they sound better,
not worse (albeit subtle, other samples aren’t subtle at all).
Only measuring psychoacoustically weighted error would make for
a representative test, so that will be left for a future patch.Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>