Recherche avancée

Médias (91)

Autres articles (93)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (5933)

  • 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