Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (9)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (3968)

  • avcodec/cbs_av1 : abort when written inferred values don't match

    11 juin 2020, par James Almer
    avcodec/cbs_av1 : abort when written inferred values don't match
    

    If this happens, it's a sign of parsing issues earlier in the process, or
    misuse by the calling module.

    Prevents writing invalid bitstreams.

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/cbs_av1.c
  • avcodec/cbs_h2645 : abort when written inferred values don't match

    11 juin 2020, par James Almer
    avcodec/cbs_h2645 : abort when written inferred values don't match
    

    If this happens, it's a sign of parsing issues earlier in the process, or
    misuse by the calling module.

    Prevents writing invalid bitstreams.

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/cbs_h2645.c
  • Trouble automating concatination (merging) of VOB files from DVD with FFMPEG

    2 juillet 2020, par Randy

    I have a library of decrypted DVDs, which all have their video in a series of VOB files within the usual VIDEO_TS folder. I wondered if I could use FFMPEG to combine them into a single MPEG files. So first I found this (this assumes 2 VOB files) from an old non-stack exchange post, and it works...

    &#xA;

    ffmpeg -i "concat:VTS_01_1.VOB|VTS_01_2.VOB" -f DVD &#xA;

    &#xA;

    ffmpeg complains sometimes about possible missing timestamps, but I've not seen any issues in the video, audio, or synchronization. This works too with slightly different complaints

    &#xA;

    ffmpeg -i "concat:VTS_01_1.VOB|VTS_01_2.VOB" -f mpeg -c copy output.mpeg&#xA;

    &#xA;

    So what I'd like to do is make a windows (1) batch file to create the "concat" string, after analyzing a TS_VIDEO directory. Well as it turns out, putting a "|" character in a string is a tall order. (even escaping it doesn't works as expected.) So I looked up the ffmpeg docs on the "concat" subject, and they suggest using a list of files stored in a text file, like this...

    &#xA;

    file 'VTS_01_1.VOB'&#xA;file 'VTS_01_2.VOB' (etc...)

    &#xA;

    Then using a call to FFMPEG like this...

    &#xA;

    ffmpeg -f concat -safe 0 -i mylist.txt -c copy output.mpg&#xA;

    &#xA;

    Well I tried that and it didn't work very well. After the first VOB file, I was getting continuous warnings about buffer underflow and time stamps, and the usually fast concatenation process slowed to a creep. Warnings typically looked like this...

    &#xA;

    &#xA;

    [mpeg @ 00000185e32b4200] buffer underflow st=1 bufi=1466 size=1998

    &#xA;

    [mpeg @ 00000185e32b4200] Non-monotonous DTS in output stream 0:1 ;&#xA;previous : 328415794, current : 9265348 ; changing to 328415795. This may&#xA;result in incorrect timestamps in the output file.

    &#xA;

    &#xA;

    So can anyone suggest a method that WORKS as well as my first example, but taking the list of files from an input text file ?

    &#xA;