Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (112)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (8801)

  • Finding audio peaks in video files

    23 octobre 2013, par Adam Langsner

    I have a bunch of video files that I want to process. I want to write a program that can find the audio peaks in each file and return the times where those peaks occurred.

    I've looked for a lot of different APIs in different languages but couldn't get any of them to work. I am partial to php and java, so if anyone knows any good audio processing libraries in those languages that would be great ! But really I don't care too much about the language. I will need to run this program on a cron.

    Also, is it possible to use system calls to ffmpeg from within a script to accomplish this ? Thanks in advance.

  • Using FFmpeg to zoom in then zoom out in a video

    5 juillet 2020, par david

    I would like to use FFmpeg on a video to zoom in and stay zoomed for 3 seconds then zoom out to full screen and stay like that for 3 seconds and repeat this cycle through the whole video
Thanks in advance.

    


  • Remove specific part from multiple videos using ffmpeg

    28 avril 2022, par che10

    I am new to ffmpeg and I am trying to cut the first 20 seconds of each video in a folder. So the output videos will be without the first 20 seconds. I know how to do it for 1 video but how to do it in a batch for multiple videos ? I am using windows 10. Thanks in advance !

    


    what I am using for 1 video file is :
ffmpeg -i "filename.mkv" -ss 00:00:20 output.mkv