Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (101)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (16037)

  • fate : Explicitly specify the rgb555le pixel format for the mss2 rgb555 tests

    10 janvier 2014, par Martin Storsjö
    fate : Explicitly specify the rgb555le pixel format for the mss2 rgb555 tests
    

    This fixes these fate tests on big endian.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] tests/fate/microsoft.mak
  • ffmpeg scale down video dynamically (squeeze-back) or zoompan out to smaller than original VER2

    19 juillet 2023, par loarrin

    I have 2 videos, I'm trying to overlay one on top of the other, and have it shrink down in an animated fashion until it appears like a picture-in-picture setup. Then, after a few seconds it should scale back up. Just like in this question. Here is the working code from there :

    &#xA;

    ffmpeg -i bg.mov -i top.mov -filter_complex "[0:v]scale=1920x1080,setpts=PTS-STARTPTS[bg]; [1:v]setpts=PTS-STARTPTS&#x2B;2/TB, scale=-1:&#x27;480&#x2B;600*abs(sin((t-2)*2*PI/8))&#x27;:eval=frame[top]; [bg][top]overlay" -vcodec libx264 out.mp4&#xA;

    &#xA;

    It works perfectly, but I have one difference I cannot achieve modifying existing code : scale filter in this example resizes the second video stream having attraction point in the top left corner of this stream. I mean, when the second stream is getting smaller, it is scaled to the top left corner. And if it is getting bigger, it again stretches from the top left corner. The top left corner of the stream being scaled is staying in one place constantly no matter what.

    &#xA;

    Is it possible to make more symmetrical version of this scale code, so when the second stream is scaled it is scaled from and to the top center of it (So the top left corner would move right when the stream is getting smaller and move to the left then the stream is getting bigger) ?

    &#xA;

    enter image description here

    &#xA;

  • i want to add watermark to video with ffmpeg, i want watermark jump to all corners one by one every 5 seconds [duplicate]

    24 mai 2021, par block king

    I am using this code currently for adding watermark and username in the upper left corner I want watermark shifts automatically in the bottom right corner

    &#xA;

    PHP code :

    &#xA;

    $cmd = "ffmpeg -i $original_video_file_path -i $watermark -filter_complex \"[0:v][1:v]overlay=20:25, drawtext=fontfile=&#x27;$font_path&#x27;:text=&#x27;@$username&#x27;:fontcolor=#ffffff:fontsize=18:y=80:x=15\" -c:a copy -movflags &#x2B;faststart $video_with_watermark";

    &#xA;