Recherche avancée

Médias (1)

Mot : - Tags -/vidéo

Autres articles (38)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (5864)

  • prepare 1.18.0 release

    9 septembre 2018, par staabm
    prepare 1.18.0 release
  • All : Prepare 1.13.0 release

    1er juillet 2014, par jzaefferer
    All : Prepare 1.13.0 release
  • How to burn subtitles using ffmpeg using a subtitles stream directly

    19 mars 2014, par Filimindji

    Let say I have an MKV with a video stream, an audio stream and a subtitles stream.

    I would like to burn this subtitle into my video directly from the subtitle stream.

    so far, this is my command line :

    ffmpeg.exe -i "MyMovie.mkv" -map 0:0 -map 0:1 -vf subtitles=sub.srt out.mkv

    So far so good. But, my subtitles are inside the movie and I need to extract them before. I used this :

    ffmpeg.exe -i "MyMovie.mkv" -f srt sub.srt

    But this operation is too long : 25 sec on my PC for a 2.5Go MKV. I need something faster because I need to start streaming the output to an app as soon as possible. (I did not mentioned the others command line arguments I used to achieve this streaming properly because my question is not about that.)

    I know it is not possible to get the stream directly like this :

    ffmpeg.exe -i "MyMovie.mkv" -map 0:0 -map 0:1 -vf subtitles=[0:s:0] out.mkv

    But this is something I would love.

    Do you think there is a workaround ?
    Or should I start writing my own filter ? No idea how to start.

    Can anyone help me with this ?