Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (50)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (4261)

  • avcodec/dvdsubdec : fix incorrect yellow appearance of dvd subtitles

    4 janvier 2022, par softworkz
    avcodec/dvdsubdec : fix incorrect yellow appearance of dvd subtitles
    

    The guess_palette() implementation is questionable in itself
    as its results don't match those from other DVD subtitle decoders.

    This commit starts cleanup by fixing an obvious bug which has made
    certain DVD subs appear yellow instead of white or grey for more than
    10 years..

    Signed-off-by : softworkz <softworkz@hotmail.com>
    Signed-off-by : rcombs <rcombs@rcombs.me>

    • [DH] libavcodec/dvdsubdec.c
  • ffmpeg adding ass subtitles : error initializing filter 'subtitles' with args ''

    30 décembre 2023, par user5609622

    So I want to convert my mkv files to mp4 with hardcoded subs

    &#xA;&#xA;

    While this works fine :

    &#xA;&#xA;

    ffmpeg.exe -i "[X] File - 1 [Y].mkv" -c:v libx264 -preset veryfast -b:v 2750k -pass 1 -c:a aac "file_out.mp4"&#xA;

    &#xA;&#xA;

    When I want to add the ASS subtitles (from the same MKV file) like so :

    &#xA;&#xA;

    ffmpeg.exe -i "[X] File - 1 [Y].mkv" -vf subtitles="[X] File - 1 [Y].mkv" -c:v libx264 -preset veryfast -b:v 2750k -pass 1 -c:a aac "file_out.mp4"&#xA;

    &#xA;&#xA;

    the following error is produced :

    &#xA;&#xA;

    [Parsed_subtitles_0 @ 00000000259c840] No filename provided!&#xA;[AVFilterGraph @ 000000000094dc20] Error initializing filter &#x27;subtitles&#x27; with args &#x27;&#x27;&#xA;

    &#xA;&#xA;

    It seems like somehow it didn't pick up the filename for the subtitles. So what's the deal with that ?

    &#xA;

  • Use ffmpeg to add text subtitles

    25 novembre 2016, par 0-alpha

    I am trying to add text subtitles to an .mp4 container using ffmpeg :

    ffmpeg -i input.mp4 -i input.srt -map 0.0 -map 0.1 -map 1.0 output.mp4

    When I am trying to run this line, it gives me an error :

    Nmber of stream maps must match number of output streams.

    If I try to change the mp4 to mkv (although mp4 supports text subtitles), like this :

    ffmpeg -i input.mp4 -i input.srt -map 0.0 -map 0.1 -map 1.0 output.mkv

    It correctly maps the streams, but gives an error :

    Encoder (codec id 94210) not found for output stream #0.2

    When I launch

    ffmpeg -codecs

    I can see that srt codec is supported as decoder and encoder, however I am not sure what is used for mp4 and mkv subs encoding, and whether I need to switch it on or compile separately.