Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (97)

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

  • Les notifications de la ferme

    1er décembre 2010, par

    Afin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
    Les notifications de changement de statut
    Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
    À la demande d’un canal
    Passage au statut "publie"
    Passage au (...)

Sur d’autres sites (6579)

  • How to add image in Video using ffmpeg ?

    6 février 2014, par Sanket990

    How to add image overlay in video using ffmpeg ? I am using this command showing black pixel but i want to showing image in video

    libffmpeg.so -y -i /storage/sdcard0/e.mp4 -vcodec libx264 -b 300k -s 480x360 -r 15 -acodec copy 3gp -vf redact=/storage/sdcard0/output-913723741.3gp.txt /storage/sdcard0/output-913723741.3gp
  • FFmpeg rotate and scale image overlay on video

    2 mai 2017, par 1234567

    I have been able to rotate image which overlays on video on android using this comand

    String[] complexCommand2 = {"-y", "-i", videoFilePath, "-i", imagepath, "-filter_complex","[1:v] rotate=30*PI/180:c=none:ow=rotw(iw):oh=roth(ih) [rotate];[0:v][rotate] overlay=40:10",  "-codec:a","copy", outputFilePath};

    However I want to also scale the image how can that be done

  • FFMPEG changes color when adding an image as first frame

    24 septembre 2024, par hendrikschneider

    I am using ffmpeg to add an image as a first frame. This one works but the issue is that the colors are being faded. My attempt was to check the color encoding of the input video and apply it to the output video but still the issue is there.

    


    What I found out is that this issue does not happen when I use a frame from the video, so it somehow related to using an image.

    


    This is my command to add an image as thumbnail :

    


    ffmpeg -loop 1 -framerate 30 -t 0.5 -i thumbnail.png -f lavfi -t 0.5 -i aevalsrc=0 -i input_video.mp4 -filter_complex "[0:v][1:a][2:v][2:a] concat=n=2:v=1:a=1" -shortest -color_primaries bt2020 -color_trc bt709 -colorspace bt709 output_test1.mp4


    


    Screenshot of the original and the output video. Left is the original with brighter colors compared to the output on the right.
enter image description here