Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (60)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

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

  • could be recording video & OS timestamp with ffmpeg ?

    2 septembre 2020, par sooyongchoi

    I'm newbie of Video, Image processing.

    


    I want to recording High resolution & frame video with FFmpeg. (1920 * 1080 * 60FPS)
and, I need to Timestamp data of OS(Windows or ubuntu) for each frames.
I hope to Timestamp data is formatted with text data.

    


    I searched any of using FFmpeg, but I couldn't find recording video with timestamp data.

    


    Is there any idea of recording video & timestamp data with ffmpeg ?

    


    Or, could you notice me with simple tip of making solution with ffmpeg ?

    


    Thanks ! :)

    


  • FFMPEG Downgrade Only If 4k Video and Keep Aspect Ratio

    30 août 2020, par Devin Dixon

    Is there a way to downgrade video resolutions if and only if they are above a certain resolution ?

    


    For example, right now I am doing to :

    


    ffmpeg -i 4k_VIdeo.MP4 -vf scale=1920:1080 -c:v libx264 -crf 35 1080-video-smaller.mp4


    


    But if the video is 720:600 or a smaller resolution, I don't want to expand to 1920, also if the video is not the aspect ratio of 1920:1080, I want to keep the same aspect ratio so it doesn't look distorted.

    


    Is there a way of doing this ?

    


  • Ffmpeg how to keep overlay video in loop (Android)

    20 août 2020, par Pandurang Bangar

    I am trying to use video as overlay on another video and keep overlay video in loop, for now overlay video playing only once. I don't know what is going wrong in above cmd. It should play infinite times.

    


    My CMD

    


    ["-y","-i","input_1.mp4","-stream_loop","-1","-i","input_2.mp4","-filter_complex","[0]scale=1080:-1[bg];[bg]crop=1080:1080[base0];[1]scale=550:550[scaled0];[scaled0]rotate=0*PI/180:c=none:ow=rotw(0.0):oh=roth(0.0)[rotated0];[base0][rotated0]overlay=265.0:265.0","-preset","ultrafast","-pix_fmt","yuv420p","-c:a","copy","overlay_video.mp4"]