Recherche avancée

Médias (91)

Autres articles (103)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

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

  • What's the most elegant way to get the language codes from an MKV file with multiple audio tracks ?

    30 janvier 2017, par WackGet

    I need a way to get the language codes from MKV files which have multiple audio tracks.

    ffmpeg produces output which I could then filter using regular expressions but it doesn’t seem very elegant :

    $ ffmpeg -i file.mkv 2>&1 | grep Audio
    Stream #0:1(eng): Audio: mp2, 48000 Hz, stereo, s16, 192 kb/s (default)
    Stream #0:2(nar): Audio: mp2, 48000 Hz, mono, s16, 64 kb/s (default)

    mediainfo has the ability to extract language information but in files with multiple tracks, it concatenates the codes into a single string :

    $ mediainfo file.mkv --inform="Audio;%Language%"  
    ennar

    Is there a tool or command which will return language codes for multiple tracks in a nicer way, or a tool which would let me specify a track number and return the language code for that track only ?

  • How to get language for embedded subtitles in video file using FFMPEG libraries

    18 septembre 2024, par helgovic

    I have seen lots of examples on how to get the language codes using the command line interface, but how do you get them using the libraries ?

    


  • fftools/objpool : Don't use return with expression when returning void

    23 juillet 2022, par Andreas Rheinhardt
    fftools/objpool : Don't use return with expression when returning void
    

    Using tail calls with functions returning void is forbidden
    (C99/C11 6.8.6.4 : "A return statement with an expression shall not appear
    in a function whose return type is void.") GCC emits a warning
    because of this when using -pedantic : "ISO C forbids ‘return’ with
    expression, in function returning void"

    Reviewed-by : Hendrik Leppkes <h.leppkes@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] fftools/objpool.c