Recherche avancée

Médias (0)

Mot : - Tags -/configuration

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

Autres articles (64)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (9472)

  • ffmpeg showwaves color

    14 novembre 2022, 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

    


  • Combine Two Commands (Get Video from Images)

    18 mai 2019, par user2401847

    I have 300 images and i wants to generate video from these images.
    i am new to FFMPEG so now i am using two commands to generate video from images.
    Command to generate video from images which also add Logo on video

    ffmpeg -framerate 24 -i img_%d.jpg -i logo.png -filter_complex \
    "[0:v][1:v] overlay=25:25:enable='between(t,0,20)'" \
    -vcodec libx264 -crf 25  -pix_fmt yuv420p  test_video.mp4

    After using above command i am getting the video to add audio to this video i am using below command

    ffmpeg -i test_video.mp4 -i inputfile.mp3 -c:v libx264 -c:a libvorbis -shortest final_video.mp4

    which generates video and i am getting below message

    MPEG-4 AAC decoder is required to play the file

    Help to combine this both command. if possible can we add sound without any decoder required

    Log for command 1 https://drive.google.com/file/d/1zS7gvrPy69VK_MkyE4127FpX2kEziJHq/view?usp=sharing

    and Log command 2 https://drive.google.com/file/d/1rHqVGzj7f003aWP6eISiyUjsES8_EWuw/view?usp=sharing

  • Icecast live stream extract none silent parts into individual files

    18 avril 2020, par Nokoa

    I am looking to split an icecast audio live stream into individual audio files separated by silences. I was able to achieve this with FFMPEG when having the source input file saved locally first. I can't do that because I have 20 streams being monitored and the original files keeps growing and end up taking too much space on my drive.

    



    Is it possible to do this directly with a live stream audio without saving the full original uncut stream file to drive ?