Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (79)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

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

Sur d’autres sites (11366)

  • avcodec/pngdec : avoid erroring with sBIT on indexed-color images

    12 juillet 2024, par Leo Izen
    avcodec/pngdec : avoid erroring with sBIT on indexed-color images
    

    Indexed color images use three colors for sBIT, but the function
    ff_png_get_nb_channels returns 1 in this case. We should avoid erroring
    out on valid files in this scenario.

    Regression since 84b454935fae2633a8a5dd075e22393f3e8f932f.

    Signed-off-by : Leo Izen <leo.izen@gmail.com>
    Reported-by : Ramiro Polla <ramiro.polla@gmail.com>
    Reviewed-by : Marton Balint <cus@passwd.hu>

    • [DH] libavcodec/pngdec.c
  • ffmpeg : change the grey color in showwaves line

    20 février 2018, par Andrew

    I’m trying to produce a video that has a lime green colored waveform overlayed on top of a background image. Unfortunately though, there is a grey color in the lines as you can see here :

    See image here

    How can I make the grey parts lime green as well ?

    And if possible, I would like to make the lines thicker as well.

    Here is my ffmpeg command :

    ffmpeg -i input.aac -i background.jpg -filter_complex "[0:a]aformat=sample_fmts=s16:sample_rates=4410:channel_layouts=mono,showwaves=size=300x200:mode=p2p:rate=10:colors=#68b847[fg];[1:v][fg]overlay=130:150,format=yuv420p[v]" -map "[v]" -map 0:a -c:v libx264 -r 10 -c:a copy -r 10 -movflags +faststart output.mp4

  • How to speed up, adjust color, Crop, Scale and Mix two audio inputs into a video by FFMpeg ? [closed]

    7 janvier 2024, par Reach

    How to speed up, adjust color, Crop, Scale and Mix two audio inputs into a video by FFMpeg ?&#xA;When run not show result

    &#xA;

    I try to change some function in filter_complex but not work or show result when run.&#xA;My goal want mix one audio to one video and apply some filter like hflip, crop, scale, speed up and adjust color for video.

    &#xA;

    My command :

    &#xA;

    ffmpeg -y -i "%%a" -i "sound\123.mp3" -c:v copy -filter_complex "[0:v]hflip,crop=720:720,scale=1080 :-1,eq=saturation=1.3,eq=brightness=0.06:saturation=2,setpts=0.8*PTS[v] ;[0:a]atempo=(1/0.8)[a],[0:a][1:a] amix=inputs=2:duration=longest [audio_out]" -map "[v]" -map "[a]" -c:v -map 0:v -map "[audio_out]" h264_nvenc "output%% na.mp4

    &#xA;