Recherche avancée

Médias (91)

Autres articles (62)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

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

Sur d’autres sites (8975)

  • avformat/av1dec : Set position of AVPackets given to BSF

    22 août 2021, par Andreas Rheinhardt
    avformat/av1dec : Set position of AVPackets given to BSF
    

    Reviewed-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/av1dec.c
  • Moviepy V2 How do you position a TextClip and apply an effect ?

    31 janvier, par Brandon

    I am trying to refactor my code to use the new Moviepy Version 2.0 and I'm having trouble with .with_position / SlideIn / SlideOut effect.

    &#xA;

    When I apply the SlideIn effect it seems to override any position I have applied. It there a way to explicitly set the position of a TextClip and apply a SlideIn and SlideOut effect without using nested CompositeVideoClip ?

    &#xA;

    In the below example the with_position((0,0)) would not be implemented and the position of the TextClip would revert to the default centred position. If I remove the lines .with_effect... then the TextClip would be positioned as expected in the 0,0 location.

    &#xA;

    Any help would be much appreciated.

    &#xA;

    from moviepy import *&#xA;&#xA;clips = []&#xA;clip = ImageClip("path1.png", duration=3).with_start(0)&#xA;clips.append(clip)&#xA;title = TextClip("path3.ttf", text="Text...", font_size=80, color="#fff", text_align="center", duration=1,)&#xA;title = title.with_start(1).with_position((0,0))&#xA;title = title.with_effects([vfx.SlideIn(0.25, "left")])&#xA;title = title.with_effects([vfx.SlideOut(0.25, "left")])&#xA;clips.append(title)&#xA;&#xA;final_clip = CompositeVideoClip(clips)&#xA;final_clip.write_videofile("final_clip.mp4")&#xA;

    &#xA;

    *EDIT&#xA;To get the expected behaviour I need to use multiple nested CompositeVideoClips but this significantly slows it down. Is there anyway that I can make this code more efficient ?

    &#xA;

    from moviepy import *&#xA;&#xA;clips = []&#xA;clip = ImageClip("path1.png", duration=3).with_start(0)&#xA;clips.append(clip)&#xA;title = TextClip("path3.ttf", text="Text...", font_size=80, color="#fff", text_align="center", duration=1,)&#xA;title = CompositeVideoClip(title.with_effects([vfx.SlideIn(0.25, "left")]))&#xA;title = CompositeVideoClip(title.with_effects([vfx.SlideOut(0.25, "left")]))&#xA;title = title.with_start(1).with_position((0,0))&#xA;clips.append(title)&#xA;&#xA;final_clip = CompositeVideoClip(clips)&#xA;final_clip.write_videofile("final_clip.mp4")&#xA;

    &#xA;

  • avformat/url : Change () position in ff_make_absolute_url()

    16 décembre 2020, par Michael Niedermayer
    avformat/url : Change () position in ff_make_absolute_url()
    

    No testcase
    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/url.c