Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (68)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette 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 2011

    Vous 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, par

    MediaSPIP 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 Zhao
    lavfi : 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>

    • [DH] Changelog
    • [DH] configure
    • [DH] libavfilter/Makefile
    • [DH] libavfilter/allfilters.c
    • [DH] libavfilter/vf_procamp_vaapi.c
  • FFmpeg sensitive to register ? [closed]

    30 mai 2023, par DL.

    FFmpeg sensitive to register ?

    &#xA;

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

    &#xA;

    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"&#xA;

    &#xA;

    Result :&#xA;(https://i.stack.imgur.com/u4qIK.png)

    &#xA;

    Use big "M"

    &#xA;

    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"&#xA;

    &#xA;

    Result :&#xA;(https://i.stack.imgur.com/fhiAB.png)

    &#xA;

    It’s bug ?

    &#xA;

  • Adjust the audio balance dynamically in FFmpeg for a specific time range [closed]

    11 décembre 2024, par Lipa

    I'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.&#xA;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.

    &#xA;

    I already tried using the pan filter :

    &#xA;

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

    &#xA;

    However, it seems pan doesn't support conditional expressions like if or between.

    &#xA;

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

    &#xA;

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

    &#xA;

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

    &#xA;

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

    &#xA;