Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (85)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • 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.

  • 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 (...)

Sur d’autres sites (18436)

  • lavc/mediacodecdec{,_h264} : set FF_CODEC_CAP_SETS_PKT_DTS capability

    16 juin 2016, par Matthieu Bouron
    lavc/mediacodecdec,_h264 : set FF_CODEC_CAP_SETS_PKT_DTS capability
    

    And sets frames pkt_dts to AV_NOPTS_VALUE as we do not want lavc/utils
    to overwrite the field with incorrect values as the decoder is
    asynchronous.

    • [DH] libavcodec/mediacodecdec.c
    • [DH] libavcodec/mediacodecdec_h264.c
  • ffmpeg - How to convert a quad (4ch) file to two separate stereo (2ch) files ?

    3 août 2022, par burntscarr

    The file is a 4-channel OGG.

    


    I am already able to grab all 4 into mono files, but it contains two sets of stereo files which is what I want.

    


    The first two channels are the vocals, the latter two are the instrumental.
I would like to have two output files, Vocals.ogg and Instrumental.ogg

    


    I am not very experienced in channel mapping, yet and I'm sure the answer to this is simple and will help expand my understanding of channel mapping via ffmpeg.

    


    My attempts included
ffmpeg -i 4CHFILE.ogg -acodec copy -map_channel 0.0.0 00.ogg -acodec copy -map_channel 0.0.1 01.ogg -acodec copy -map_channel 0.0.2 02.ogg -acodec copy -map_channel 0.0.3 03.ogg, making 4 separate mono files, which I have to import and stereo pair in my DAW. I'd like to be able to play them on-the-go with them already stereo-paired.

    


    To attempt to make the vocals track I tried
ffmpeg -i 4CHFILE.ogg -filter_complex "[0:a][0:b]join=inputs=2[e]" -map "[e]" -acodec copy Vocals.ogg but that didn't work and I'm not sure how to use the mapping properly to explain which channels I want to join. The previous code example that made mono includes -map_channel but I'm not sure how to map to left or right for the output file.

    


    Any help would be appreciated and help further my experience with ffmpeg, thank you !

    


  • avcodec/hevc_ps : don't use a fixed sized buffer for parameter set raw data

    29 mars 2024, par James Almer
    avcodec/hevc_ps : don't use a fixed sized buffer for parameter set raw data
    

    Allocate it instead, and use it to compare sets instead of the parsed struct.

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

    • [DH] libavcodec/hevc_ps.c
    • [DH] libavcodec/hevc_ps.h