Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (78)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (8670)

  • avdevice/caca : remove space before ’ :’ (English typo, cosmetics)

    11 septembre 2015, par Clément Bœsch
    avdevice/caca : remove space before ’ :’ (English typo, cosmetics)
    
    • [DH] libavdevice/caca.c
  • Révision 21338 : Report de c21337 : Ne pas confondre le Kazakh (kk - http://fr.wikipedia.org/wiki...

    5 mai 2014, par kent1 -
  • SOLVED ffmpeg english subtitle is missing from converted .mkv file

    4 juin 2020, par horace

    I downloaded some .mkv files and tried to play them in my Roku using the Roku media player. There was no audio but 2 subtitle files were available 0=German 1=English.
I converted the file using ffmpeg -i oldfile.mkv -c:v copy -c:a mp3 newfile.mkv
Now when i play the file with Roku media player the audio is fine, but only the default subtitle is available and it is German.
I have tried to use -c:s to change the subtitle but I don't know what to command to use.
I finally solved my problem after reading a lot of posts with questions and answers I didn't understand and trying many, many scripts.
I found there were only 4 streams in a file video, audio and 2 subtitles
the script that worked is :
ffmpeg -i oldfile.mkv -map 0:v -map 0:a -map 0:s ? -c:v copy -c:a mp3 -c:s copy newfile.mkv
This way the audio is converted to mp3 and both subtitles are perserved.