Recherche avancée

Médias (91)

Autres articles (67)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

Sur d’autres sites (9956)

  • Difference in number of channels returned by mediainfo and ffprobe

    16 mars 2021, par Hai Tran

    I was examining an audio file and noticed that the numbers of channels returned by mediainfo and ffprobe were different.

    


    The mediainfo command :

    


    mediainfo audio.mp4


    


    The ffprobe command (see the channels value) :

    


    ffprobe -i audio.mp4 -show_streams


    


    Does anyone know what's happening ?
Here is the audio file for your own test.

    


  • Quickly check the integrity of video files inside a directory with ffmpeg

    4 février 2017, par DMT

    I’m desperately searching for a convenient method to check the integrity of .mp4 files inside a specific directory with folders in it. Both the names of the .mp4 files and the folders contain spaces, special characters and numbers.

    I’ve already found a proper ffmpeg command to quickly identify a damaged .mp4 file, taken from here :
    ffmpeg -v error -i filename.mp4 -map 0:1 -f null - 2>error.log

    If the created error.log contains some entries, then the file is obviously corrupted. The opposite would be an empty error.log.

    The next step would be to apply this command to every .mp4 file within the folder and its subfolders. Some guides, like here and here, do describe how to apply a ffmpeg command recursively, but my coding skills are limited, so therefore I can’t find a way to combine these commands to get the following :

    A way to test all .mp4 files inside a folder (recursively) with the aforementioned ffmpeg command, that should create .log files, only if a video file does contain errors (read has some content) and it should inherit the name of the broken file, to know which file is corrupted.

    Using Ubuntu Gnome 15.10.

  • avutil/mathematics : Do not treat INT64_MIN as positive in av_rescale_rnd

    1er décembre 2015, par Michael Niedermayer
    avutil/mathematics : Do not treat INT64_MIN as positive in av_rescale_rnd
    

    The code expects actual positive numbers and gives completely wrong
    results if INT64_MIN is treated as positive
    Instead clip it into the valid range that is add 1 and treat it as
    negative

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/mathematics.c