Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

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

Autres articles (15)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

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

  • Change the scale of overlay video based on audio level

    26 janvier 2023, par DanHabib

    I'm looking to adjust the scale of my image overlay based on the input audio's loudness.

    


    As the volume rises, I want to make it larger, as it gets quieter, I want to make it smaller.

    


    I can't figure out how to access any relevant audio information in video filters.

    


    I'm open to multi-step solutions but the result needs to be in sync

    


  • Video to Gif - Stretch to Scale

    25 décembre 2022, par Philo

    I have some videos that I want to turn into a gif.

    


    When I use scale=800x600 on let's say as an example on a 1280x720 video. Instead of the gif being squashed into a 800x600 it just crops the video or just captured 800x600 of the 1280x720.

    


    What code do I need to tell it squash itself into a 800x600 gif ? Normally it just turns the video into a 800x600 squashed if converted to a video but not working for the gif for some reason.

    


  • ffmpeg - Add, scale and set potision of multi watermarks by duration to video

    17 mars 2017, par Thanh Dao

    I have a video /path/to/video.mp4
    Now I want to place each watermarks for each 6 seconds. I used command as :

    "ffmpeg" -i /path/to/video.mp4
       -i /path/to/watermark-1.jpg \
       -i /path/to/watermark-2.jpg \
       -i /path/to/watermark-3.jpg \
       -i /path/to/watermark-4.jpg \
       -i /path/to/watermark-5.jpg \
       -i /path/to/watermark-6.jpg \
    -filter_complex \
       "[0:0] scale=210:192 [tmp], \
       [tmp][1:v] overlay=47:97:enable='between(t,0,6)' [tmp]; \
       [tmp][2:v] overlay=47:97:enable='between(t,6,12)' [tmp]; \
       [tmp][3:v] overlay=47:97:enable='between(t,12,18)' [tmp]; \
       [tmp][4:v] overlay=47:97:enable='between(t,18,24)' [tmp]; \
       [tmp][5:v] overlay=47:97:enable='between(t,24,30)' [tmp]; \
       [tmp][6:v] overlay=47:97:enable='between(t,30,36)' [output]" \
    -map [output] /path/to/output.mp4 2>&1

    I tried to scale my watermarks, but it scales the video, and the sound of video was lost.

    What is my wrong ?