Recherche avancée

Médias (91)

Autres articles (111)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (8986)

  • libavcodec/mpeg12dec : Check input for minimal frame size

    4 septembre 2019, par Michael Niedermayer
    libavcodec/mpeg12dec : Check input for minimal frame size
    

    Fixes : Timeout (35sec -> 6sec)
    Fixes : 16901/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPEGVIDEO_fuzzer-5729024726269952
    Fixes : 16901/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPEGVIDEO_fuzzer-5642388592132096

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/mpeg12dec.c
  • Play video with multiple audio tracks - different languages to separate devices

    8 février, par Sandre

    I want watch movie with my wife, listening to different audio channels - one language for me, another for my wife.

    &#xA;

    I found solution and it works fine but not optimal.

    &#xA;

    I know nothing about audio conversion, so asking to make it better.

    &#xA;

    I'm using ffmpeg to combine separate stereo tracks to 5.1, then playing using IINA to Agregate device defined in Audio MIDI Setup (Speakers and bluetooth headphone). This for MacOS, but I'm pretty sure something similar will work for windows, taking in count IINA under hood use MPV.

    &#xA;

    Agregate Device config

    &#xA;

    ffmpeg -i eng.mp3 -filter_complex "[0:a]channelsplit=channel_layout=stereo[left][right]" -map "[left]" en_left.wav -map "[right]" en_right.wav&#xA;ffmpeg -i ru.ac3 -filter_complex "[0:a]channelsplit=channel_layout=stereo[left][right]" -map "[left]" ru_left.wav -map "[right]" ru_right.wav&#xA;&#xA;ffmpeg -i ru_left.wav -i ru_right.wav -i ru_left.wav -i ru_right.wav -i en_left.wav -i en_right.wav \&#xA;-filter_complex "[0:a][1:a][2:a][3:a][4:a][5:a]join=inputs=6:channel_layout=5.1[a]" -map "[a]" output.wav&#xA;&#xA;

    &#xA;

    What I want to improve :

    &#xA;

      &#xA;
    1. I added 2 useless channels (2 and 3) - just a copy of 1 and 2.
    2. &#xA;

    3. All tracks converted - probably it's possible just copy them ?
    4. &#xA;

    5. Would be good to have possibility extract channels embedded into video.
    6. &#xA;

    &#xA;

  • How to convert ffmpeg command to ffmpeg-python

    1er décembre 2020, par Retro Pie

    Hello and thanks for reading.

    &#xA;

    I have the following command : ffmpeg -i tmp.mp4 -loop 1 -i mask.png -filter_complex "[0:v]split [a][b];[a]transpose=1,crop=720:888:0:196,scale=876:1080,setdar=876/1080 [crop];[b]transpose=1,crop=720:888:0:196,scale=1920:1080,setdar=16/9,avgblur=76 [back];[1:v]alphaextract [mask];[crop][mask]alphamerge [masked];[back][masked]overlay=522:0" "out.mp4

    &#xA;

    And I would like to convert it to ffmpeg-python syntax. So far I was able to come up with the bellow, but it far from ready :

    &#xA;

    overlay_file = ffmpeg.input(mask)&#xA;(&#xA;ffmpeg&#xA;.input(tmp).split()&#xA;.overlay(overlay_file.hflip())&#xA;.alphaextract(),&#xA;.alphamerge(),&#xA;.output(&#x27;out.mp4&#x27;)&#xA;.run()&#xA;)&#xA;

    &#xA;

    Any help will be appreciated.

    &#xA;