Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (94)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

  • avcodec/cbs_vp9 : keep track of reference frames

    30 octobre 2018, par James Almer
    avcodec/cbs_vp9 : keep track of reference frames
    

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/cbs_vp9.h
    • [DH] libavcodec/cbs_vp9_syntax_template.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 :

    &#xA;

    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&#xA;

    &#xA;

    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.

    &#xA;

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

    &#xA;

    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.

    &#xA;

  • Using ffmpeg to merge two audio file and one video file with control volume ?

    23 juin 2021, par mdtuyen

    I want to use ffmpeg to merge 2 audio files with one video file to create one video file, but in audio file I want to control the volume level of each file.

    &#xA;&#xA;

    What should I do ?

    &#xA;&#xA;

    ffmpeg -i video.mp4 -i input1.mp3 -i input2.mp3&#xA;-filter_complex "[1]volume=0.5,pan=2c[a];[2]volume=0.7,pan=2c[b];[a][b]amix=duration=shortest"&#xA;-ac 2 -c:a libmp3lame -q:v 0 output.mp4&#xA;

    &#xA;