Advanced search

Medias (0)

Tag: - Tags -/xml-rpc

No media matches your criterion on the site.

Other articles (106)

  • MediaSPIP 0.1 Beta version

    25 April 2011, by

    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 February 2011, by

    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 April 2011, by

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

On other websites (8342)

  • How can I use ffmpeg and youtube-dl to download the first frame of every video in a playlist?

    18 January, by Chi Long Qua

    I'm trying to download only the first frame of every video in a large playlist on YouTube. Does anybody know how I can use ffmpeg and youtube-dl to do this?

    


  • Use ffmpeg to produce movie with hevc codec and alpha playable in QuickTime

    6 January 2021, by 220284

    I want to produce a movie from a sequence of PNG images using ffmpeg. The resulting movie should be QuickTime compatible and is supposed to use the hevc codec with an alpha channel. Can this be done using ffmpeg? I tried

    


    ffmpeg -framerate 60 -i %d.png -c:v libx265 -pix_fmt yuv420p -x265-params lossless=1 -tag:v hvc1 out.mov


    


    but the resulting movie has no alpha channel.

    


  • does movie filter in ffmpeg 4.3.1 support png format picture

    1 January 2021, by TONY

    I use ffmpeg's moive filter to add wartermark on my video.
The str is "const char *filter_descr = "movie=test.png:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];[in] setpts=PTS-STARTPTS [main];[main][over] overlay=16:16 [out]";"
it shows that can't find codec, but if the wartermark picture is bmp ,then it's ok.
I found that the png code exists in ffmpeg, it should support png decoder.