Recherche avancée

Médias (0)

Mot : - Tags -/médias

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

Autres articles (31)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

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

Sur d’autres sites (4172)

  • AAC encoder : Fix application of M/S with PNS

    26 novembre 2015, par Claudio Freire
    AAC encoder : Fix application of M/S with PNS
    

    When both M/S coding and PNS are enabled, scalefactors
    and coding books would be mistakenly clobbered when setting
    the M/S flag on PNS’d bands. The flag needs to be set to
    signal the generation of correlated noise, but the scalefactors,
    coefficients and the coding books need to be kept intact.

    • [DH] libavcodec/aaccoder.c
    • [DH] libavcodec/aacenc.c
  • 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. 
I use this simple script to add english subtitles to my video.

    



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


    



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

    



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


    



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

    



    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.

    


  • How to set stream's metadata for LAST audio stream with ffmpeg ? [closed]

    22 avril 2024, par Tadeusz

    I want to add new audio stream (ONE) to some video file (which already has 1 or more audio streams) :

    


    ffmpeg.exe -y -i "C:\video.mp4" -i "C:\video Fre.mp4" -c:v copy -c:a copy -map 0:v -map 0:a -map 1:1 -map_metadata 0 -metadata:s:a:0 language=eng -metadata:s:a:1 language=fre "C:\result_1.mp4"


    


    Now I manually set language metadata for existing stream (-metadata:s:a:0 language=eng) and also manually set number for new audio stream (metadata:s:a :1).
Is there any possibility set metadata for the LAST audio stream just like :

    


    -metadata:s:a:last language=fre


    


    And can I to automatic copy language metadata from existing audio streams ? (not to set them each time manually, just to copy from source video file).