Recherche avancée

Médias (0)

Mot : - Tags -/latitude

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (94)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (13138)

  • Use ffprobe to view audio tracks by language [on hold]

    19 novembre 2016, par crosenblum

    I wish to use ffprobe to list all audio streams, and show what language is used.

    Simply this is part of me trying to find ways to automatically remove non-english tracks from video files.

    I am new to ffprobe, but have had some experience using ffmpeg.

    Because I know that there is no guarantee of what order the language tracks may be.

    That is why I think it is vital to list each track, by number, then language, then when I know this part works, figure out how to remove the non-english ones.

    Thanks for your time.

  • Mapping streams by language in FFmpeg

    6 décembre 2023, par ffmpeg123

    I have lots of files with multiple audio and subtitle languages, however the track numbers aren't consistent (the English audio stream isn't always the first) so using a command such as :

    


    ffmpeg -i "input.mkv" -map 0 -map -0:a:1 -c:v copy -c:a copy "output.mkv"


    


    doesn't yield expected results. After searching around I discovered it was possible to map streams based on language with this command :

    


    ffmpeg -i "input.mkv" -map 0 -map -0:m:language:eng -c:v copy -c:a copy "output.mkv"


    


    However -map -0:m:language:eng will remove all tracks with the English language flag. To keep the subtitle tracks you can use -map 0:s this is a good solution however, I want to know if it's possible to only map audio streams based on language. I.e.,

    


    I want to remove English audio while retaining all other streams without using stream IDs.

    


  • can't convert online gif to mp4 video using ffmpeg

    15 février 2023, par عبدالله لبيب

    I am trying to turn this gif into mp4 video using ffmpeg but it is not working
https://media.giphy.com/media/H7T8UdGOvOQiDf9QXj/giphy.gif

    


    I tried this code

    


    -i https://media.giphy.com/media/H7T8UdGOvOQiDf9QXj/giphy.gif output.mp4


    


    also I tried this code

    


    -f gif -i https://media.giphy.com/media/H7T8UdGOvOQiDf9QXj/giphy.gif output.mp4


    


    in both cases it did not work.