Recherche avancée

Médias (91)

Autres articles (55)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

Sur d’autres sites (7794)

  • FFmpeg check channels of a 7.1 audio for silence

    24 septembre 2019, par Tina J

    This is a follow-up question from my previous question asked here, where I needed to look for silence within a specific audio track. Here is the ffmpeg life-saver solution where helps to get some metadata :

    ffmpeg -i file -map 0:a:1 -af astats -f null -

    But I have other type of input .mp4 files where they have one single track of 8 (i.e. 7.1) audio channels. Apparently these files are transcoded from an original file (somehow the 4 track stereos are squished into these files). Now similar to my previous, I need to know if the original file was 2-channel stereo or 5.1 (6) channel.

    How to know if a specific channel of an audio track (say Center channel) is silent/mute, possibly using ffmpeg ? Here is a sample .mp4 file.

  • how can I slow down a video (I lower pitch by a semitone) with FFMPEG ?

    8 mai 2022, par patrick

    I have an old black and white film with audio that was recorded on a phonograph and the playback speed of the audio is a semi-tone higher than it should be. How can I process this video with ffmpeg and slow down BOTH the video and audio together, bringing the audio down a half step (semi-tone) while keeping the video in sync ?

    


    I have tried filters like asetrate, setpts, atempo, etc and although I could change the pitch of the audio, the video became badly out of sync with the audio.

    


  • FFmpeg metadata tags for YouTube 3D side-by-side movies

    17 février 2021, par Some1Else

    YouTube requires specific metadata tags for 3D Side-By-Side format movies. If the tag is not there then YouTube does not give the anaglyph playback options for the end user.

    



    Their "help" is here
https://support.google.com/youtube/answer/7278886?hl=en-GB

    



    I am trying to get FFmpeg to add the MP4 tag when building my movie.

    



    Code that works now for a series of PNG files into a MP4.

    



    "ffmpeg.exe" -framerate 60 -i "VID%05d.PNG" -c:v libx264 -preset:v veryslow -profile:v high -crf 15 -s 1280x720 -pix_fmt yuvj420p -an -y "OUTPUT.MP4"


    



    But when I add the tag from the YouTube help page

    



    "ffmpeg.exe" -framerate 60 -i "VID%05d.PNG" -c:v libx264 -preset:v veryslow -profile:v high -crf 15 -s 1280x720 -pix_fmt yuvj420p -an -y -x264opts "frame-packing=3:frame-packing-interpret=1:frame-packing-quincunx=0:frame-packing-grid=0,0,0,0" "OUTPUT.MP4"


    



    I get this error from FFmpeg

    



    [libx264 @ 0000000002a8c3a0] bad option 'frame-packing-interpret': '1'


    



    This page (ignore the proselytising)

    



    http://www.pantherdynamics.yolasite.com/panther-dynamics-blog/uploading-3dsbs-content-to-youtube

    



    says you only need to use this tag

    



    -x264opts frame-packing=3


    



    Using that does make FFmpeg finish correctly, but the SBS is still ignored by YouTube

    



    The YouTube engineer blog post here

    



    https://youtube-eng.googleblog.com/2011/09/getting-3d-content-on-youtube_8.html

    



    links to an older supposed 3D movie that also does not give 3D options any more.

    



    https://www.youtube.com/watch?v=ubRHSg5daMs

    



    So maybe even YouTube's own 3D movies are crippled ?

    



    What am I doing wrong ? Any FFmpeg gurus able to help ?