Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (46)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (7344)

  • lavc/qsvenc : add support for oneVPL string API

    29 février 2024, par Mandava, Mounika
    lavc/qsvenc : add support for oneVPL string API
    

    A new option -qsv_params <str> is added, where <str> is a :-separated
    list of key=value parameters.

    Example :
    $ ffmpeg -y -f lavfi -i testsrc -vf "format=nv12" -c:v h264_qsv -qsv_params
    "TargetUsage=1:GopPicSize=30:GopRefDist=2:TargetKbps=5000" -f null -

    Signed-off-by : Mounika Mandava <mounika.mandava@intel.com>
    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] Changelog
    • [DH] configure
    • [DH] doc/encoders.texi
    • [DH] libavcodec/qsvenc.c
    • [DH] libavcodec/qsvenc.h
  • Why every audio part louder in FFmpeg while I join them in one audio ?

    13 mai 2024, par Volodymyr Bilovus

    I trying to make dubbing for audio. I have original audio track and I want to put translated audio parts on top of the original.

    &#xA;

    translated audio 100% vol : —p1--- ---p2— -----p3--- —p4—

    &#xA;

    original audio 5% vol : -----------------------------------------

    &#xA;

    Here is my FFmpeg command with filter_complex

    &#xA;

    ffmpeg -i video_wpmXlZF4XiE.opus -i 989-audio.mp3 -i 989-audio.mp3 -i 989-audio.mp3 -i 989-audio.mp3 \&#xA;-filter_complex "\&#xA;[0:a]loudnorm=I=-14:TP=-2:LRA=7, volume=0.05[original]; \&#xA;[1:a]loudnorm=I=-14:TP=-2:LRA=7, adelay=5000|5000, volume=1.0[sent1]; \&#xA;[2:a]loudnorm=I=-14:TP=-2:LRA=7, adelay=10000|10000, volume=1.0[sent2]; \&#xA;[3:a]loudnorm=I=-14:TP=-2:LRA=7, adelay=20000|20000, volume=1.0[sent3]; \&#xA;[4:a]loudnorm=I=-14:TP=-2:LRA=7, adelay=30000|30000, volume=1.0[sent4]; \&#xA;[original][sent1][sent2][sent3][sent4]amix=inputs=5:duration=longest[out]" \&#xA;-map "[out]" output.mp3&#xA;

    &#xA;

    Audios I put on top of the original audio track is the same -i 989-audio.mp3 I made it by purpose to show the problem&#xA;And here is the audio levels on final generated track.&#xA;enter image description here

    &#xA;

    As you can see, first and second only slightly different but third&#xA;and fourth have totally different(higher) volume level (Notice, audio is the same).&#xA;Why it's happened. And how can I workaround this odd behaviour ?

    &#xA;

  • Why every audio part is louder in FFmpeg when I join them in one audio ?

    14 mai 2024, par Volodymyr Bilovus

    I trying to make dubbing for audio. I have original audio track and I want to put translated audio parts on top of the original.

    &#xA;

    translated audio 100% vol : —p1--- ---p2— -----p3--- —p4—

    &#xA;

    original audio 5% vol : -----------------------------------------

    &#xA;

    Here is my FFmpeg command with filter_complex

    &#xA;

    ffmpeg -i video_wpmXlZF4XiE.opus -i 989-audio.mp3 -i 989-audio.mp3 -i 989-audio.mp3 -i 989-audio.mp3 \&#xA;-filter_complex "\&#xA;[0:a]loudnorm=I=-14:TP=-2:LRA=7, volume=0.05[original]; \&#xA;[1:a]loudnorm=I=-14:TP=-2:LRA=7, adelay=5000|5000, volume=1.0[sent1]; \&#xA;[2:a]loudnorm=I=-14:TP=-2:LRA=7, adelay=10000|10000, volume=1.0[sent2]; \&#xA;[3:a]loudnorm=I=-14:TP=-2:LRA=7, adelay=20000|20000, volume=1.0[sent3]; \&#xA;[4:a]loudnorm=I=-14:TP=-2:LRA=7, adelay=30000|30000, volume=1.0[sent4]; \&#xA;[original][sent1][sent2][sent3][sent4]amix=inputs=5:duration=longest[out]" \&#xA;-map "[out]" output.mp3&#xA;

    &#xA;

    Audios I put on top of the original audio track is the same -i 989-audio.mp3 I made it by purpose to show the problem&#xA;And here is the audio levels on final generated track.&#xA;enter image description here

    &#xA;

    As you can see, first and second only slightly different but third&#xA;and fourth have totally different(higher) volume level (Notice, audio is the same).&#xA;Why it's happened ? And how can I workaround this odd behaviour ?

    &#xA;