Recherche avancée

Médias (91)

Autres articles (50)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

  • 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

Sur d’autres sites (11247)

  • Extracting Subtitles from mkv using ffmpeg

    8 février 2016, par Mister V--

    So I’m trying to extract the subtitles and their format (how they look) and also trying to implement them into another mkv of the same video. Long story short, I’m trying to get the nice looking subtitles that follow the colour of their background

    enter image description here

    and their lovely colours

    enter image description here

    So when I use FFmpeg to check the streams and how I would map them and whatot and then this shows up

    enter image description here

    There are up to 40 sum streams all to get the nice looking subtitles. So, how would I get all those out ?

  • ffmpeg cant find codec to cu 10 seconds movie

    19 novembre 2017, par Logan

    I tried cut 10 seconsd from movie and convert to mp4. But sometiems i have a eroor like below :

    Duration: 00:08:52.40, start: 0.000000, bitrate: 1126 kb/s
       Stream #0:0: Audio: wmav2 (a[1][0][0] / 0x0161), 44100 Hz, stereo, fltp, 96 kb/s
       Stream #0:1: Video: wmv3 (Main) (WMV3 / 0x33564D57), yuv420p, 640x480, 1000 kb/s, SAR 1:1 DAR 4:3, 29.97 tbr, 1k tbn, 1k tbc
    [mp4 @ 0x5614bbea1300] Could not find tag for codec wmv3 in stream #0, codec not currently supported in container
    Could not write header for output file #0 (incorrect codec parameters ?): Invalid argumentStream mapping:

    What does mean this error ? should i install some extra codec ?

    My exec line looks like :

    ffmpeg -i input.wmv -ss 00:00:00 -to 0 -c copy 0:00:10 output.mp4
  • FFMPEG Extract subtitles at webvtt format while keep position on the screen

    30 septembre 2020, par Maxou

    i'm working on a project where I need to extract subtitles from video files and convert it to WEBVTT format. But when I extract and convert it with FFMPEG my webvtt files doesn't keep the position.

    


    What I want

    


    00:00:11.000 --> 00:00:13.000 align:start


    


    What I get

    


    00:00:11.000 --> 00:00:13.000


    


    While when I test to extract at .ass files the position of the subtitles is keep.

    


    To extract I use this command

    


    ffmpeg -i {filename} -map 0:s:0 -muxdelay 0 -f webvtt subtitles.vtt


    


    Thanks in advance