Recherche avancée

Médias (1)

Mot : - Tags -/berlin

Autres articles (64)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • ffmpeg halt when I turn video into image

    1er août 2018, par roomy

    My command is :
    ffmpeg -threads 1 -i http://illegal-video.nos.netease.com/hDHnMXpHywUcs2q7.mp4 -vf fps=1/5.0 C:\Users\Roomy\Desktop\test\image%d.jpg

    but I got
    enter image description here

    And ffmpeg is halt when the error occurs.

    Is that a bug ?

  • Moved the upload preview image functionality into an external plugin :

    12 décembre 2011, par Sebastian Tschan

    m README.md m index.html m jquery.fileupload-ui.js Moved the upload preview image functionality into an external plugin : https://github.com/blueimp/JavaScript-Load-Image

  • FFmpeg filter to rotate image around point

    29 novembre 2019, par SebSob

    Does anyone know how to rotate an image to its start point (top-left corner) instead of the center point (default) with the FFmpeg -vf rotate ?

    In this example I try to rotate a red squared image (test_sq.png) 30 degrees from its start point on in.png placed at coord 423:259 resulting in out.png.

    This is my command :

    ffmpeg -y -i in.png -pix_fmt bgra -strict experimental -vf movie=test_sq.png scale=279:279 rotate=30*PI/180:c=none:oh=ow [sticker]; [in][sticker] overlay=423:259 [out] -s 1280x720 out.png

    To visualize it :

    Results

    As you can see it rotates from its center point and also clips the original image, not really good.
    Anyone have suggestions or ideas how to achieve what i need ?