Recherche avancée

Médias (91)

Autres articles (67)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La 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 (6549)

  • avutil/hwcontext_d3d12va : cast the input pointer array argument on av_image_copy...

    21 décembre 2023, par James Almer
    avutil/hwcontext_d3d12va : cast the input pointer array argument on av_image_copy calls
    

    Removes -Wincompatible-pointer-types warnings.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavutil/hwcontext_d3d12va.c
  • dfa : Put our pointer check back.

    4 mai 2013, par Michael Niedermayer
    dfa : Put our pointer check back.
    

    The reimplementation by Libav does not prevent out of array
    writes, even though it looks like it does at a quick glance.

    No FFmpeg releases are affected by this

    See : d1c95d2ce39560e251fdb14f4af91b04fd7b845c
    3623589edc7b1257bb45aa9e52c9631e133f22b6
    740ebe468c0567cac03ef7e6b4b9fd0253b97da2

    Found-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/dfa.c
  • Use specific channels from specific streams for the final stream using FFMPEG [closed]

    9 juin 2024, par Kazu-kun

    I want to create a 5.1ch audio stream from a 2ch audio stream. However I want to put a negative delay to LFE, SL and SR channels since they will be played from my bluetooth speaker, so I want to make up for the delay by giving it a negative delay.

    &#xA;

    &#xA;

    ffmpeg -itsoffset 0.1 -i input.mkv -i input.mkv

    &#xA;

    -filter_complex “

    &#xA;

    [1:a]pan=5.1(side)|FL=FL|FR=FR|LFEp>&#xA;

    [0:a]pan=5.1(side)|FL=FL|FR=FR|LFEp>&#xA;

    [orig5_1][delayed5_1]amerge=inputs=2,pan=5.1(side)|FL=c6|FR=c7|LFE=c2|SL=c3|SR=c4[a]”

    &#xA;

    -map "[a]" -map 0:v -map 0:s -c:v copy -c:a flac -c:s copy output.mkv

    &#xA;

    &#xA;

    I tried taking the same input twice with the first one being delayed by 0.1 secs. With the delayed input a 5.1 audio is created and with the original another 5.1 audio is created as well. Then the two audio streams are merged with amerge and combined into a single 5.1 audio by taking delayed channels for FL and FR(These will be played from my MacBook) and by taking original channels for LFE, SL and SR(These will be played from my bluetooth JBL). Finally the video and subs streams are taken from the delayed.

    &#xA;

    The above command gave a "pipe pipe pipe dqoute" error and when I entered the command again it said :

    &#xA;

    &#xA;

    zsh : unknown file attribute : i

    &#xA;

    zsh : no such file or directory : FL+FR

    &#xA;

    zsh : unknown file attribute : i

    &#xA;

    zsh : no such file or directory : FL+FR

    &#xA;

    zsh : unknown file attribute : i

    &#xA;

    zsh : command not found : -map

    &#xA;

    &#xA;

    Please give me a command for my requirement !

    &#xA;