Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (87)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (6176)

  • FFMpeg - move overlay from point a to b

    13 juin 2019, par Komal Raghav

    FFMpeg - move overlay gif from a point a to b.

    I used somebody posted here FFMpeg - move overlay from point a to b to c to d.

    I modified it like this :

    -i input.mp4 -ignore_loop 0 i example.gif \
    filter_complex \
     [0][1]overlay=x='(200+(100-200)*(t-0)/5)between(t,0,5)':y='(0+(200-100)(t-200)/5)*between(t,0,5)' \
    out.mp4

    How can I move a gif overlay of a video, starting from a’s coordinate points to given b’s coordinate points ?

    Gif should move in given time (seconds) and stop move on given b points and keep visible of entire video.

    Please suggest.

    Thanks.

  • avformat/segment : remove last_cut check when detecting a new segment

    26 janvier 2017, par Marton Balint
    avformat/segment : remove last_cut check when detecting a new segment
    

    Not starting a new segment if the elapsed microsecs since the start of the day
    equals the the elapsed microsecs since the start of the day at the time of the
    last cut seems plain wrong to me, Deti do you remember the original reason
    behind this check ?

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/segment.c
  • FFMpeg multiple actions with the same filter_complex

    25 juin 2017, par Juvi

    I’m working with 2 videos and I want to make 3 different operations at same
    execution with FFmpeg. Each command works separate but it’ll much more efficient to make them all run at the same execution.

    So for example I have :

    Video 1

    Video 2

    First I want to cut both videos from starting point to end point :

    cmd = -i video1Path -ss 00:00:30.0 -c copy -t 00:00:10.0 video1Output
    cmd = -i video2Path -ss 00:00:30.0 -c copy -t 00:00:10.0 video2Output

    Than resizing Video 1 :

    cmd = "-i " + video1Output+ " -vf scale=240:360" + resizedVideo1;

    Now overlaying the resizedVideo1 on top of Video 2 :

    cmd = "-i " + video2Output + " -i " + resizedVideo1 + " -filter_complex [0:v][1:v]" + overlayCmd + " " + finalVideoPath;

    I’m wondering if it’s possible to achieve all this actions at the same FFMpeg executions using 1 filter_complex...