Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (105)

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

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

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

Sur d’autres sites (16033)

  • avformat/hlsenc : process hls_time value too small sence

    18 août 2020, par Steven Liu
    avformat/hlsenc : process hls_time value too small sence
    

    The target duration will be a negative value when there are
    some b frames after prevous frame, the pts after current packet
    is large than the pts of current packet, so the target duration
    will compute as 0.040000 - 0.080000, then the value of the target
    duration will be -0.040000. so hls muxer should check the pts after
    current packet minus the pts of current packet, hls muxer can split
    the stream as a segment if the target duration is neither negative nor
    zero, hls muxer cannot split the stream as a segment if the
    target duration is either negative or zero then get the next packet
    until the target duration is not negative or zero.

    Signed-off-by : Steven Liu <lq@chinaffmpeg.org>
    Suggested-by : Zhili Zhao <quinkblack@foxmail.com>
    Signed-off-by : liuqi05 <liuqi05@kuaishou.com>

    • [DH] libavformat/hlsenc.c
  • ffmpeg mov_text subtitle too small when converting mkv to mp4

    16 octobre 2020, par Utkarsh Singh

    I want to remux a mkv file into mp4.&#xA;I used the following command.

    &#xA;

    ffmpeg -i "input.mkv" -c:v copy -c:a copy -map 0:0 -map 0:1 -map 0:2 -map 0:3 -c:s mov_text "output.mp4"&#xA;

    &#xA;

    Problem : The subtitles in the output.mp4 file are way too small.

    &#xA;

    Also, the subtitles of the mp4 file are unaffected when I try to make them bigger from vlc preferences.&#xA;I can turn them on/off but I think they are somewhat hardcoded.&#xA;I had to rencode subtitles while remuxing as otherwise it was showing error.

    &#xA;

    input.mkv :

    &#xA;&#xA;

    output.mp4 :

    &#xA;&#xA;

    &#xA;

    input.mkv has the following streams,codecs :

    &#xA;&#xA;

    I searched a lot, but couldn't find a way to make mov_text subtitles bigger. How can I make them bigger ?

    &#xA;

    Or Please suggest any other way to retain the subtitles while remuxing from mkv to mp4.

    &#xA;

  • avfilter/vf_minterpolate : Reject too small dimensions

    6 octobre 2020, par Andreas Rheinhardt
    avfilter/vf_minterpolate : Reject too small dimensions
    

    The latter code relies upon the dimensions to be not too small ;
    otherwise one will call av_clip() with min > max lateron which aborts
    in case ASSERT_LEVEL is >= 2 or one will get a nonsense result that may
    lead to a heap-buffer-overflow/underflow. The latter has happened in
    ticket #8248 which this commit fixes.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/vf_minterpolate.c