Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (52)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • 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

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

  • Movie making from lyrics with timestamps in python

    26 mai 2020, par carl

    I have lyrics from musixmatch with timestamps. I want to form video with the lyric lines in the video along with images in a file numbered from 1-n.

    



    As seen in this post, I thought ffmpeg would be something which can help me but there aren't much information that i can find.

    



    Also the answer given by @llogan, gives very vague idea of forming videos with "subtitle filter" in ffmpeg.

    



    It would be very helpful you can provide an example to explain your idea.(It can also help other coders at any time :) )

    



    Thanks in advance

    


  • how to multiply and rename one image to n-times in ffmpeg

    27 avril 2022, par LookAndSee

    for making a video i want to multiply one image of a folder e.g. for 30fps and 30sec to 900 times with an uprising index.

    


    How can i copy on image n-times and rename it with ffpeg ?

    


    How i did it by now :

    


    mark all Strg C + Strg V
mark all Copy + Paste
2-4-8-16-32-64-128-256-576-1152

    


    numbering i did with total commander "multi-rename-tool"

    


    i like to do it with a loop-function in ffmpeg but i have no idea.
Has someone a suggestion and can help me please ?
thx in advance !

    


  • FFMPEG : AAC Number of bands exceeds limit

    6 avril 2017, par user1902291

    I am using the FFMPEG C API to decode the audio in an MP4 file.

    My code works when decoding an OGG or MP3 file, but fails on the first frame of AAC audio in an MP4

    I get this error from

    avcodec_send_packet(codecContext, packet)

    [aac @ 0x7f80eb9e3a00] Number of bands (31) exceeds limit (5)

    What is the "number of bands" and how do I increase it ? What does this message really mean ?

    Thank you in advance