Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (60)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • 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

Sur d’autres sites (11426)

  • Evolution #3778 : [sécurité - inscription] : éviter l’envoi de mot de passe en clair par email et ...

    24 mai 2016, par JF dogliani

    Au temps pour moi, la discussion avait été initiée de manière plus globale sur les "invités" lors de la sortie de la version 3.0.19 mais j’avais peut être testé sur une version + ancienne.
    N’étant plus en charge de nos sites et ceux-ci ayant migré sous un cms concurrent, mes souvenirs sont plutôt moyens :-)
    En tout cas, merci pour cette précision.

  • How to play a specific number of samples from an audio file using ffmpeg ?

    2 juillet 2023, par FrostDream

    I'm trying to use ffmpeg in a command-line or terminal environment to play only a specific number of samples from an audio file. Instead of playing the entire audio, I want to extract and play a precise portion based on the sample count.

    


    I came across the following example command that seems to be relevant :

    


    ffmpeg -ss 0 -t [SAMPLE_COUNT] -i [INPUT_AUDIO_FILE] -f wav - | ffplay -


    


    In the command, I understand that -ss is used to specify the start time as 0, -t sets the duration as the sample count, -i defines the input audio file, and -f sets the output format as WAV. The output is then piped to ffplay, a simple media player provided with ffmpeg, which will play the specified number of samples from the audio file.

    


    However, I'm not entirely sure about the usage and options of ffmpeg in this scenario. Could someone please provide a detailed explanation of how to correctly use ffmpeg to achieve this ? Any additional insights, tips, or alternative approaches would also be greatly appreciated. Thank you !

    


  • Using ffmpeg and ffmpeg-cli-wrapper (Java) to remove black frames in a mp4 video made by Twilio [closed]

    3 janvier 2024, par Duc Nguyen

    I am using Programmable Twilio, when 2 users are recording and pause, there is a silence space with black frames in the output.
Is there a way in Twilio or in ffmpeg to remove all black frames (empty-silent spaces) ? I am using Java and ffmpeg-cli-wrapper

    


    I tried this https://video.stackexchange.com/questions/16564/how-to-trim-out-black-frames-with-ffmpeg-on-windows but it did not help.