Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (67)

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

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

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

  • String command for watermarking a video using FFmpeg in Android Studio

    11 octobre 2017, par djac

    Following is the ffmpeg function which accepts string command, coded in Android Studio. Can you give Sample/Reference string command for watermarking a video for this function (in Android Studio) ?

    For example :
    Input video file absolute path is "inputvideo".
    Watermark text is "stackoverflow".
    Output video file absolute path is "outputvideo".

    private void execFFmpegBinary(final String[] command) {
    try {
    ffmpeg.execute(command, new ExecuteBinaryResponseHandler() {
    @Override
    public void onFailure(String s) {
    Log.d(TAG, “FAILED with output : ” + s);
    }

    @Override
    public void onSuccess(String s) {
    Log.d(TAG, “SUCCESS with output : ” + s);
    //Perform action on success
    }
    }

    @Override
    public void onProgress(String s) {
    Log.d(TAG, “progress : ” + s);
    }

    @Override
    public void onStart() {
    Log.d(TAG, “Started command : ffmpeg ” + command);
    }

    @Override
    public void onFinish() {
    Log.d(TAG, “Finished command : ffmpeg ” + command);

    }
    });
    } catch (FFmpegCommandAlreadyRunningException e) {

    }
    }
  • Revision fbaa4b84af : Fix to Visual Studio build error. signed/unsigned mismatch from commit : 918011.

    30 juillet 2014, par Marco Paniconi

    Changed Paths :
     Modify /vp8/encoder/onyx_if.c



    Fix to Visual Studio build error.

    signed/unsigned mismatch from commit : 918011.

    Change-Id : I6b9bb3618f8e72ea4cc0e6ba8fb9b13676985ed0

  • Problem compiling ffmpeg with nvenc using visual studio 2015 community edition

    23 février 2020, par Uri Raz

    I’m trying to build ffmpeg w/ nvenc on Windows 10 64 bit and visual studio 2015 community edition. The command from step 10 in the Using FFmpeg with NVIDIA GPU Hardware Acceleration doc :

    ./configure —enable-nonfree —enable-cuda-sdk —enable-libnpp –-toolchain=msvc —extra-cflags=-I../nv_sdk —extraldflags=-libpath :../nv_sdk

    Gives me the error ’Unknown option "–-toolchain=msvc"’

    Background : I’ve executed the commands (changed the path in the first, I’m not sure its right) :

    export PATH="/C/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.16.27023/bin/Hostx64/x64/" :$PATH
    export PATH="/c/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/" :$PATH

    And ../nv_sdk has the subdirectories include & bin, copied from the NVIDIA GPU Computing Toolkit directory.