Recherche avancée

Médias (0)

Mot : - Tags -/signalement

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (103)

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

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (6911)

  • fate/subtitles : add a new test for SAMI demuxer and decoder

    30 août 2015, par Yayoi
    fate/subtitles : add a new test for SAMI demuxer and decoder
    

    Signed-off-by : Clément Bœsch <u@pkh.me>

    • [DH] tests/fate/subtitles.mak
    • [DH] tests/ref/fate/sub-sami2
  • Merge MKV video and MKA audio tracks while keeping subtitles

    10 avril 2018, par aur0n

    I have this situation :

    • file1.mkv (video with two 5.1 tracks and several subtitles)
    • file1.mka (two stereo audio tracks)

    I want to merge the files to a single output that has :

    • 4 audio tracks (the 5.1 original tracks and the other two from the
      MKA file)
    • the subtitles from the MKV

    Here’s the command I’m trying :

    @ffmpeg.exe -i "file1.mkv" -i "file1.mka" -map 1 -map 0 -c:v copy -c:a copy -c:s copy "output.mkv"

    The problem is that output.mkv does indeed have everything, but the tracks from the MKA are mute, and some players even crash when I try to play them. The other two tracks (from original MKV) work just fine.

    Is there something I’m doing wrong ?

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