Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (43)

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

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

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

Sur d’autres sites (12268)

  • How do I make FFMPEG use localized strftime with drawtext ?

    3 décembre 2022, par Randy Michnovicz

    I'm trying to write a script to use FFMPEG to draw localized timestamps on a video, but I'm not having much luck.

    


    I can confirm I have the locale fr_FR.UTF-8 installed on my system by running the following command : LC_ALL=fr_FR.UTF-8 date

    


    However, the following command produces a 4 second video beginning with the string "Monday 28 November 2022 19:00:47 PST" on both my Mac and an Alpine Linux docker container :

    


    LC_ALL=fr_FR.UTF-8 ffmpeg -hide_banner -f lavfi -i color=size=1024x768:rate=25:color=black -c:v libx264 -c:a aac -filter_complex drawtext=expansion=normal:fontsize=18:fontcolor=white:box=1:boxcolor=black@0.5:text='%{pts\\:localtime\\:1669690847\\:%A %-d %B %Y %X %Z}' -t 4 -y out.mp4

    


    Does anyone know how to make it create strings with non-English text ?

    


  • Video Editing with Python : other transitions than crossfade

    11 février 2018, par Jay D.

    I am trying to make various transitions effects for a video-editing python script.

    Moviepy allows me to do crossfades and fades to black, but I would like a bit more diversity to transitions.

    I was thinking about : wipes, blurry wipes, blurs to black and crossblurs. All quite simple transisions types that you can find in basic video editing softwares like Windows Movie Maker.

    Examples of these transitions can be found at :
    https://www.dailymotion.com/video/x6ekx70

    Do you know any solutions ?

    Current research :

    I looked at ffmpeg but I didn t saw a single tutorial online for transitions other than crossfades & fades to black.

    The closest thing I found to my search is MLT Multimedia Framework with "Luma" patterns, working example at : https://youtu.be/t1KV6gy92i0?t=28s

    MLT has python bidings : https://github.com/mltframework/mlt/tree/master/src/swig/python

    But I have absolutely no idea how to implement those "Luma" patterns transitions in a python script.

  • how to set effect on video in android programmatically ?

    23 août 2017, par Mayank Sugandhi

    I have video which is save in sdcard, now i want to apply the effect like black and white and etc. it’s functionality like editing in video which is already in photo editor or video editor applications.

    now i want to that functionality in android programmatically ? when user choose black and white color in option then it should be response very quickly and change the effect of our video and save it sdcard.

    i have find some solution for this like,

    https://github.com/krazykira/VidEffects

    but it has not save functionality of video and if i go through in
    "FFMPEG" library then it is not responding very quickly ?

    how can i change the effect of video and save this video in sdcard ?

    Thank You