Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (71)

  • 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

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (11340)

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