Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (61)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • I need an azure product that executes my intensive ffmpeg command then dies, and i only get charged for the delta. Any Tips ?

    31 mars 2024, par gamers hd

    I need an azure product where i can run my ffmpeg process on but i dont want to deal with acces overhead etc. But i need to be able to specify how strong the cpu and stuff should be.

    


    So consumption functions would be to weak & Premium functions are billed with a fixed rate so i cant use that either

    


    I tried first using a webapi but those are quite costly and because the commands are extremely sudden like in a couple seconds it can go to 100% cpu usage, so scalinng solutions even if i could afford it would be quite hard.

    


    I'm basicly looking for something that i can write a http triggered function for, i call it, it comes to life executes and then dies.

    


    Ps I'm a novice to Azure so if i overlooked anything obvious please let me know.

    


  • ffplay - how to have video and audio waveform [duplicate]

    19 février 2018, par francis

    This question already has an answer here :

    I’ve been trying out various commands trying to figure out how to have a stack of video and audio waveform according to : https://trac.ffmpeg.org/wiki/FancyFilteringExamples#waveform

    Video only :

    ffplay -i abc.mp4 -vf "split[a][b];[a]waveform=e=1,split=1[c];[c]crop=in_w:16:0:0,lutyuv=y=val:v=180[high]; [b][high]vstack=2"

    Audio only :

    ffplay -f lavfi 'amovie=april.flac,asplit=2[out1][a]; [a]showwaves=s=640x240[waves]; [waves] vstack[out0]'

    But there isn’t any that combines and shows the top half as video and bottom half as the audio waveform. Is it possible ?

  • How can I justify text using FFMPEG [closed]

    18 mai 2021, par Rahul Chokshi

    How can align text left and right like below example ?

    


       Hello FFMPEG
 Hello FFMPEG 
Hello FFMPEG 
 
Hello FFMPEG 
 Hello FFMPEG 
  Hello FFMPEG 
 

         Hello FFMPEG 
        Hello FFMPEG 


    


    I did tried below example, but it didn't work

    


    ffmpeg -i input.mp4 -vf "[in]drawtext=fontsize=20:fontcolor=Black:fontfile='roboto.ttf':text='Hello World Ffmpeg':x=(w)/2:y=(h)/2, drawtext=fontsize=20:fontcolor=Black:fontfile='roboto.ttf':text='hello':x=(w)/2:y=((h)/2)+25, drawtext=fontsize=20:fontcolor=Black:fontfile='roboto.ttf':text='hel':x=(w)/2:y=((h)/2)+50[out]" -y test_out.mp4