Recherche avancée

Médias (91)

Autres articles (47)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (3792)

  • ffmpeg parallel encoding for make mp4 qualities

    3 avril 2018, par parsa

    I want to make the different qualities from video in one command.
    I used this below code.
    But there is an issue,and it’s that the output files not have details

    ffmpeg -i input.mp4 -filter_complex [0:v]format=yuv420p,split=2[s0][s1];
    [s0]scale=hd480[v0];
    [s1]scale=nhd[v1]
    -map [v0] -map [v1] -map 0:a? -c:v libx264 -c:a aac -f tee -threads 0  
    "[select='v\:0,a':f=mp4]1/480.mp4|[select='v\:1,a':f=mp4]1/360.mp4"

    What I must be do ?

  • Windows Batch-File to execute n other batch-files in parallel

    11 décembre 2015, par Jos

    I use ffmpeg to convert video files. The codec I’m encoding with is single-threaded. There are a lot of video files to convert, so instead of using multithreaded encoding I can simply encode multiple video files with 1 thread each.

    To automate the encoding I use the follow commands in a .bat :

    SET maindir=%~dp0
    FOR /r /d %%f in (*) do pushd "%%f" & Call %maindir%convert-with-ffmpeg.bat & popd

    This calls "convert-with-ffmpeg.bat" sequentially`to convert each file/folder in the main dir.

    What would my .bat file have to look like if I want to do this in parallel (say, 12 times) until there are no more folders left to process ?

    EDIT : Let me be clear that I want to LIMIT the amount of running processes at 12. When a .bat is done, I want the main .bat to start a new process until all files are converted (100+).

  • Android FFmpeg grab frames in parallel from a video

    7 mai 2016, par Akhil Chandran

    Is there any way to read frames from an mp4 video using JavaCV in parallel ?
    I know that we could grab frames using FFmpegFrameGrabber but is there any other efficient method like using FrameGrabber.Array ?, I tried the below code but its not working.

    frames = new Frame[grabber.getLengthInFrames()];
                   frameGrabbers = new FFmpegFrameGrabber[grabber.getLengthInFrames()];
                   *//*for (FFmpegFrameGrabber grabber : frameGrabbers) {
                       grabber = new FFmpegFrameGrabber(path);
                   }*//*
                   for (int i = 0; i < grabber.getLengthInFrames(); i++) {
                       frameGrabbers[i] = new FFmpegFrameGrabber(path);
                   }
                   grabberArray = grabber.createArray(frameGrabbers);

                   grabberArray.start();

                   frames = grabberArray.grab();
                   grabberArray.release();

    The app crashes when I call grabberArray.start().
    Thanks.