
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (112)
-
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 ;
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (9817)
-
A Guide to Ethical Web Analytics in 2024
17 juin 2024, par Erin -
vp9 : change order of operations in adapt_prob().
14 octobre 2016, par Ronald S. Bultjevp9 : change order of operations in adapt_prob().
This is intended to workaround bug "665 Integer Divide Instruction May
Cause Unpredictable Behavior" on some early AMD CPUs, which causes a
div-by-zero in this codepath, such as reported in Mozilla bug #1293996.Note that this isn’t guaranteed to fix the bug, since a compiler is free
to reorder instructions that don’t depend on each other. However, it
appears to fix the bug in Firefox, and a similar patch was applied to
libvpx also (see Chrome bug #599899). -
How to set an overlay image on the subpart of a video ?
27 octobre 2016, par ieXceptI need to set an overlay (
image.png
with alpha channel) on the subpart of a video. Setting it on the whole video works great. But I need to make 10 seconds gap without PNG in the beggining and in the end of a video.So the overlay should appear on the 10th second after the start and automatically disappear on the (length - 10) second. I spent a day trying to make it work, but it seems that
trim
video filter simply doesn’t support trimming "single-PNG-image video stream".In this command
ffmpeg -y -i "$INPUT" -i "$PNG" -c:v libx264 -preset ultrafast -filter_complex \
"[0:v]setpts=0.5*PTS,fps=25[vm]; [1:0]trim=10:190[vo]; [vm][vo]overlay=x=0:y=0:overlay=eof_action=pass[v]; [0:a]atempo=2.0[a]" \
-map "[v]" -map "[a]" qtest_AVUP.avithe 190 should be replaced with some function/calculations, but the real problem is that the overlay isn’t applied at all. As the result we’ve got normal video without overlays.
Could you please help me to solve this ?- How can I fix the overlay inapplicability error ?
- How to set (video_stream_length-10s) instead of 190 ?