Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (54)

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

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

  • mov : fill in subtitle dimensions after parsing tkhd

    20 mars 2014, par Michael Niedermayer
    mov : fill in subtitle dimensions after parsing tkhd
    

    Sample-Id : NeroRecodeSample.mp4

    • [DH] libavformat/mov.c
  • fftools/ffmpeg_dec : deobfuscate subtitle decoding

    17 mai 2023, par Anton Khirnov
    fftools/ffmpeg_dec : deobfuscate subtitle decoding
    

    It is currently handled in the same loop as audio and video, but this
    obscures the actual flow, because only one iteration is ever performed
    for subtitles.

    Also, avoid a pointless packet reference.

    • [DH] fftools/ffmpeg_dec.c
  • Adding soft dvdsub subtitle track (idx+sub) to mp4 video using ffmpeg [closed]

    4 décembre 2024, par Tom Solid

    I have an .mp4 video and a dvdsub subtitle in to files (.idx and .sub). When I play the video (with VLC media player) the subtitles are displayed correctly, but I have tried to repack the video and the subtitles into one .mp4 file with ffmpeg :

    


    ffmpeg -i input.mp4 -f vobsub -sub_name input.sub -i input.idx -map 0:v:0 -map 0:a:0 -map 1:s:0 -codec:v copy -c:a copy -scodec dvdsub output.mp4


    


    the subtitles are not displayed. According to VLC, there is a subtitle track in output.mp4, but I cant see any subtitles during the play.

    


    Additional information that the video size (624x336) and the frame size in input.idx (1920x1080) are different.

    


    I have tried several variations of the code above (without forcing the format with -f, using three -i keys, several variations of -map) but I cannot figure out what is the problem. Your help is welcomed.