Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (59)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

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

  • avformat/framecrcenc : Don't read after the end of side-data

    6 décembre 2020, par Andreas Rheinhardt
    avformat/framecrcenc : Don't read after the end of side-data
    

    Nothing guarantees that the size of side data containing a palette
    is actually divisible by four (although it should be) ; but for
    big-endian systems, an algorithm is used that presupposed this.
    So switch to an algorithm that does not overread : It processes
    four bytes at a time, but only if all of them are contained in
    the side data.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/framecrcenc.c
  • avutil/adler32 : Switch av_adler32_update() to size_t on bump

    18 mars 2021, par Andreas Rheinhardt
    avutil/adler32 : Switch av_adler32_update() to size_t on bump
    

    av_adler32_update() is used by av_hash_update() which will be switched
    to size_t at the next bump. So it also has to be made to use size_t.
    This is also necessary for framecrcenc.c, because the size of side data
    will become a size_t, too.

    Reviewed-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] doc/APIchanges
    • [DH] libavutil/adler32.c
    • [DH] libavutil/adler32.h
    • [DH] libavutil/version.h
  • ffmpeg : two videos side-by-side with audio1 lang=ger & audio2 lang=eng

    19 janvier 2023, par miridigital

    I have two videos from two GoPro cameras. Both videos are rendered via ffmpeg side-by-side into a single video (left and right) and the audio is currently combined/mixed into two channels (stereo). I can hear both camera audio channels at the same time.

    &#xA;

    Two channels stereo :

    &#xA;

    ffmpeg -i video1.mp4 -i video2.mp4 -filter_complex "[0:v][1:v]hstack=inputs=2[v]; [0:a][1:a]amerge[a]" -map "[v]" -map "[a]" -ac 2 side-by-side.mp4&#xA;

    &#xA;

    audio from both videos mixed into a single file with 2 channels - mediainfo

    &#xA;

    Now I want to switch between the two audio channels (cam1 or cam2) while I'm playing the side-by-side video.

    &#xA;

    My first try : With four channels (without -ac 2 parameter) :

    &#xA;

    ffmpeg -i video1.mp4 -i video2.mp4 -filter_complex "[0:v][1:v]hstack=inputs=2[v]; [0:a][1:a]amerge[a]" -map "[v]" -map "[a]" side-by-side.mp4&#xA;

    &#xA;

    audio from both videos mixed into a single file with 4 channels - mediainfo

    &#xA;

    But the most video players can't easily select the channels 1+2 or 3+4 while playing.

    &#xA;

    So I tried two languages :

    &#xA;

    ffmpeg -i video1.mp4 -i video2.mp4 -filter_complex "[0:v][1:v]hstack=inputs=2[v]; [0:a][1:a]amerge[a]" -map "[v]" -map "[a]" -metadata:s:a:0 language=ger -metadata:s:a:1 language=eng side-by-side.mp4&#xA;

    &#xA;

    audio from both videos mixed into a single file with 4 channels with languages - mediainfo

    &#xA;

    But that's wrong. I can only see german with 4 channels. How can I put channels 1+2 into german and channels 3+4 into english ? Afterwards I should be able to use the multi language feature from most video players to switch the audio between cameras.

    &#xA;

    Thank you,
    &#xA;Miriam

    &#xA;