Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (46)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (5406)

  • can I set a filter on by default within ffmpeg ?

    13 septembre 2013, par user195789

    For example, the default filter for video encoding in FFMPEG is libx264... I would like to either configure via an environment variable, a build/compile option, or something else that unless I specify otherwise the yadif de-interlace filter is always turned on when encoding.

    Anyone know if this is possible, short of significantly modifying the source code (which is almost certainly beyond my abilities)

  • Draw text ffmpeg does not end when the word ends

    25 juin 2018, par Kion Dung

    It works very well. But it can not end the video while the text has run out. And it runs forever. The bottom is my code. It has gaps with the background image forever. I want to stop it when the text is over. please complete it help me.

       ffmpeg -loop 1 -i "C:\Users\Cu\Desktop\Lam\Lam\a.jpg" -i "C:\Users\Cu\Desktop\Lam\Lam\a.mp3" -vf drawtext='fontfile="Arial"\:style=bold:fontsize=70:textfile="C\:/Users/CuEm/Desktop/91990756.txt":fontcolor=#FFFFFF':x=0:y=h-20*t,format=yuv420p,scale=852x480,setsar=1:1  -vcodec libx264 -b:v 1000k -preset superfast "C:\Users\Cu\Desktop\b_o.mp4"

    enter image description here

  • Running a Python script directly within FFmpeg's filter complex

    15 juin 2024, par Rino

    As the title suggests I wish I could run my detection script inside the filter complex. The script should get input "IN" from the filter complex "OUT" and output a boolean value to filter this frame or keep it. Since FFmpeg is open source I wanted to ask Is this possible to do ? If yes any suggestion on where should I start or any help/hint is appreciated. BTW I am new to C programming. I have a Java/python background.