Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (68)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (7829)

  • Rotate two halves of VR video

    7 mars 2018, par user2939415

    I downloaded this video to play in in GearVR :

    https://www.youtube.com/watch?v=0A56uOVluNM

    However the two parts of the frame for each eye need to be rotated 90 degrees. I would like to go from

    > >

    to

    v v

    Can I do this from command line in Linux ?

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

    


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