Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

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

Autres articles (39)

  • 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

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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (8550)

  • Quickly check the integrity of video files inside a directory with ffmpeg with windows

    20 avril 2017, par Mathias Nervik

    I am checking the integrity of a lot of video files from a directory. I found this question (for Ubuntu). My question is what the code would be if I wanted to do the same on my Windows machine.

    ffmpegBin-folder: /downloads/ffmpeg/bin
    <br />
    videoSource-folder: /downloads/ffmpeg/videos
    <br />
    error-Folder: /downloads/ffmpeg/error

    When I do it with every single file instead of for the whole directory, I use the folowing code :

    bin\ffmpeg.exe -v error -i videos\fileName.mp4 -f null - >error\fileName.log 2>&amp;1

    PS. All the videos have the ".mp4" extension, but preferably I would like to fetch all the files despite them having different extension.

  • Automating Basic Video Editing [closed]

    2 février, par user29470652

    What's guys ! I am a beginner in programming.

    &#xA;

    As of now, I have created a basic YouTube downloader with the help of Python, FFmpeg, yt dlp, and Flaskapp.

    &#xA;

    Now, I am automating the basic video editing part ( Turn bulk video files into a basic similar edit like we have one template then we add a caption from the title of the video, then place the video in the center of the template trim out to meet the video length of the given video then saving it) with the help of FFmpeg.

    &#xA;

    Has anyone already tried or built it ?? Any marketer or video editor ??

    &#xA;

    I am halfway to the project

    &#xA;

    Here is theenter image description here

    &#xA;

    I am halfway through the project and wonder if anyone has ever done it before like any video editor or marketer ??

    &#xA;

  • How to change or modify pitch of audio file (music etc like .mp3 file)using FFMPEG ?

    18 octobre 2022, par syed kashifullah

    I want to change and modify pitch an .mp3 audio file using FFMPEG.&#xA;But I am unable to use FFMPEG to change or modify pitch of that sound.&#xA;what command (exact command) should be exactly use for changing pitch of an audio file ?

    &#xA;

     String outPutPath = new File("/storage/emulated/0/Share it Application/Over_the_HorizonTemp.wav").getPath();&#xA;                 &#xA;                String[] strFfmpeg  = {"ffmpeg","-i" ,strInputPath,"-af", "rubberband=tempo=1.0:pitch=1.5:pitchq=quality" ,outPutPath};&#xA;                execffmpegBinary(strFfmpeg);&#xA;

    &#xA;

    execffmpegBinary Function :

    &#xA;

    public void execffmpegBinary(String[] command) {&#xA;    Config.enableLogCallback(new LogCallback() {&#xA;        @Override&#xA;        public void apply(LogMessage message) {&#xA;            Log.e(Config.TAG, message.getText());&#xA;            Log.e("TAG", "apply: " &#x2B;message.getText());&#xA;        }&#xA;    });&#xA;    Config.enableStatisticsCallback(new StatisticsCallback() {&#xA;        @Override&#xA;        public void apply(Statistics statistics) {&#xA;&#xA;        }&#xA;    });&#xA;&#xA;    long executionId = FFmpeg.executeAsync(command, new ExecuteCallback() {&#xA;        @Override&#xA;        public void apply(long executionId, int returnCode) {&#xA;            if (returnCode == RETURN_CODE_SUCCESS) {&#xA;                &#xA;                Log.e("1TAG", "apply:return code "&#x2B;returnCode );&#xA;                Log.e("1TAG", "apply:execution Id "&#x2B;executionId );&#xA;                Log.e("1TAG", "apply:execution Id "&#x2B; new FFmpegExecution(executionId,command));&#xA;&#xA;&#xA;            } else if (returnCode == RETURN_CODE_CANCEL) {&#xA;                Log.e("2TAG", "apply:return code "&#x2B;returnCode );&#xA;                Log.e("2TAG", "apply:execution Id "&#x2B;executionId );&#xA;                Log.e("2TAG", "apply:execution Id "&#x2B; new FFmpegExecution(executionId,command));&#xA;&#xA;            } else {&#xA;                Log.e("3TAG", "apply: returnCode"&#x2B; returnCode);&#xA;                Log.e("3TAG", "apply:return code "&#x2B;returnCode );&#xA;                Log.e("3TAG", "apply:execution Id "&#x2B;executionId );&#xA;                Log.e("3TAG", "apply:execution Id "&#x2B; new FFmpegExecution(executionId,command));&#xA;&#xA;            }&#xA;        }&#xA;    });&#xA;}&#xA;

    &#xA;