Recherche avancée

Médias (91)

Autres articles (22)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • Multiple audio playing at the same time

    8 juin 2021, par WETRAKS

    I got error in that line that says audio is already playing

    


    voice.play(discord.FFmpegPCMAudio(f"song_{guild_key}.mp3"), after=lambda e: check_queues())


    


    How do i fix this(i want it to play multiple mp3 files at the same time on diffrent guilds(not multiple at the same time in one guild)

    


  • Time-weighting frames of an animation using FFMPEG [duplicate]

    12 mars 2020, par Rohan S Byrne

    I’m using ’ffmpeg’ to make an mp4 out of hundreds of individual frames, which are timeslices from an experiment I’ve run. My problem is that the time sampling is not regular. I would like to somehow ’weight’ the frames according to their time index so that the framerate is fast when the sampling rate was fast and slow when the sampling rate was slow.

    I know how to do this sort of operation when taking, for instance, a time average using numpy arrays. I have no idea how to do it with ffmpeg.

    Any tips ?

  • FFmpeg cutting off exceeded time

    8 mars 2018, par Gvozden Kuzman

    Following ffmpeg command is working fine except it cuts down the exceeded -t duration :

    ffmpeg -ss 00:00:05 -t 49 -i 1.wav -ss 00:00:05 -t 400 -i 2.wav -ss 00:00:05 -t 49 -i 3.wav -filter_complex "[0:0][1:0][2:0]concat=n=3:v=0:a=1[outa]" -map "[outa]" output.mp3

    In this example, 2.wav file is 00:05:09 in length, and we are requesting to get next 400 seconds. Time that exceeded, which is 96 seconds in this example is removed from the output file, and my client doesn’t want that.

    That extra time should be 96 seconds of silence. Does ffmpeg have such capability or will it always remove the extra time ?