
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (68)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (10756)
-
lavfi : add ProcAmp (color balance) VAAPI video filter.
8 janvier 2018, par Jun Zhaolavfi : add ProcAmp (color balance) VAAPI video filter.
Add ProcAmp(color balance) vaapi video filter, use the option
like -vf "procamp_vaapi=b=10:h=120:c=2.8:s=3.7" to set
brightness/hue/contrast/saturation.Signed-off-by : Yun Zhou <yunx.z.zhou@intel.com>
Signed-off-by : Jun Zhao <jun.zhao@intel.com>
Signed-off-by : Mark Thompson <sw@jkqxz.net> -
FFmpeg sensitive to register ? [closed]
30 mai 2023, par DL.FFmpeg sensitive to register ?


I use FFmpeg v5.1.2 and command and little "m" :


ffmpeg.exe -hide_banner -i "D:\1.mp4" -c:v libx264 -preset veryslow -refs 4 -profile:v high -level:v 4.2 -vf format=yuv420p -b:v 6m -maxrate 6m -minrate 6m -bufsize 256m -c:a ac3 -b:a 128k "D:\2.mp4"



Result :
(https://i.stack.imgur.com/u4qIK.png)


Use big "M"


ffmpeg.exe -hide_banner -i "D:\1.mp4" -c:v libx264 -preset veryslow -refs 4 -profile:v high -level:v 4.2 -vf format=yuv420p -b:v 6M -maxrate 6M -minrate 6M -bufsize 256M -c:a ac3 -b:a 128k "D:\2.mp4"



Result :
(https://i.stack.imgur.com/fhiAB.png)


It’s bug ?


-
Adjust the audio balance dynamically in FFmpeg for a specific time range [closed]
11 décembre 2024, par LipaI'm working on a video editing task using FFmpeg and want to adjust the audio balance dynamically for a specific time range within a video.
For example, I want to change the volume of the left audio channel to 50% and the right audio channel to 125% between 7 and 9 seconds of the clip. After this time range, the audio should return to its original balance.


I already tried using the
pan
filter :

ffmpeg -i input.mp4 -af "pan=stereo|c0='if(between(t,7,9),0.5,1)*c0|c1='if(between(t,7,9),1.25,1)*c1'" output.mp4



However, it seems
pan
doesn't support conditional expressions likeif
orbetween
.

I also tried splitting the stereo audio stream, adjusting the volumes, and merging them back through


ffmpeg -i input.mp4 -filter_complex \
"[0:a]asplit=2[left][right]; \
 [left]volume='if(between(t,7,9),0.5,1.0)'[left_adj]; \
 [right]volume='if(between(t,7,9),1.25,1.0)'[right_adj]; \
 [left_adj][right_adj]amerge=inputs=2[aout]" \
-map 0:v -map "[aout]" -c:v copy output.mp4



but that doesn't seem to change anything in the audio of the final video.


How can I achieve the desired effect of dynamically adjusting the audio balance between t1 and t2 seconds in FFmpeg ?