Recherche avancée

Médias (91)

Autres articles (47)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (10769)

  • Merge remote-tracking branch ’qatar/master’

    14 janvier 2014, par Michael Niedermayer
    Merge remote-tracking branch ’qatar/master’
    

    * qatar/master :
    vf_yadif : Relicense from GPL to LGPL

    Conflicts :
    LICENSE
    configure
    libavfilter/vf_yadif.c
    libavfilter/x86/vf_yadif.asm
    libavfilter/x86/vf_yadif_init.c
    libavfilter/yadif.h

    See : 194ef56ba7e659196fe554782d797b1b45c3915f
    Merged-by : Michael Niedermayer <michaelni@gmx.at>

  • Use ffmpeg to add multiple subtitles separately to a video

    3 mars 2024, par Appa

    I am trying to add multiple languages of subtitles to a video using ffmpeg. I succeeded in adding 1 language, but can't seem to add a second one. &#xA;I use this simple script to add english subtitles to my video.

    &#xA;&#xA;

    ffmpeg -i %1 -i subs_eng.srt -map 0 -vcodec copy -acodec copy -scodec subrip -metadata:s:s:0 language=English "%~n1"_eng.mkv&#xA;

    &#xA;&#xA;

    In addition, I run another script to add the Dutch subtitles.

    &#xA;&#xA;

    ffmpeg -i %1 -i subs_nl.srt -map 0? -vcodec copy -acodec copy -scodec subrip -metadata:s:s:1 language=Dutch "%~n1"_nl.mkv&#xA;

    &#xA;&#xA;

    But whenever I add the second language, it doesn't seem to do anything. The command terminal shows that ffmpeg is processing the video, but there is only 1 subtitle language available in vlc media player (the first one).

    &#xA;&#xA;

    I really want to be able to add it in 2 takes rather than in the same script, as I don't have both languages for all of my video's.

    &#xA;

  • ffmpeg : why metadata of audio tracks is not written ?

    19 octobre 2020, par elbarna

    I want to change the metadata of my avi.

    &#xA;

    ffmpeg -y -i oldvhs.avi -c:v copy -c:a copy -metadata:s:a:0 language=eng  -metadata:s:a:1 language=ita -metadata:s:v:0 title="The old movie" -map 0 new-oldvhs.avi&#xA;

    &#xA;

    When I use mplayer for testing

    &#xA;

    mplayer -aid 1 new-oldvhs.avi OK&#xA;mplayer -aid 2 new-oldvhs.avi OK&#xA;

    &#xA;

    But when i try the alang..

    &#xA;

    mplayer -alang ita new-oldvhs.avi #SPEAK ENGLISH!&#xA;mplayer -alang eng new-oldvhs.avi #SPEAK ENGLISH!&#xA;

    &#xA;

    I open the file with mediainfo and avidemux and metadata tracks is not written, mediainfo report nothing, avidemux report unknown.&#xA;Where is the fault ?

    &#xA;