Recherche avancée

Médias (91)

Autres articles (33)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (8011)

  • Error running exec() for FFMPEG in Android app

    28 juillet 2015, par Douglas Anunciação

    When following this tutorial : https://github.com/cine-io/android-ffmpeg-with-rtmp and after compiling successfully in Ubuntu 14.04 64-bits I get an IOException when trying to execute ffmpeg :

    String abspath = getApplicationInfo().nativeLibraryDir;

           // Change the permissions
           try {
               Runtime.getRuntime().exec("chmod -R 777 "+ abspath).waitFor();
           } catch (InterruptedException e) {
               e.printStackTrace();
           } catch (IOException e) {
               e.printStackTrace();
           }

           String cameraPath = "/storage/emulated/0/DCIM/Camera/";
           String cmd = "ffmpeg -i "+ cameraPath + "VID_20150728_150045662.mp4 -y "+ cameraPath + "output.mp4";

           ProcessBuilder processBuilder = new ProcessBuilder(cmd);

           final Map environment = processBuilder.environment();

           environment.put("LD_LIBRARY_PATH", getDir("lib", 0).getAbsolutePath());

           try {
               Process process = processBuilder.start();
           } catch (IOException e) {
               e.printStackTrace();
           }

    And the IOException is :

    Error running exec(). Command : [ffmpeg -i
    /storage/emulated/0/DCIM/Camera/VID_20150728_150045662.mp4 -y
    /storage/emulated/0/DCIM/Camera/output.mp4] Working Directory : null
    Environment : [ANDROID_ROOT=/system,
    EMULATED_STORAGE_SOURCE=/mnt/shell/emulated, LOOP_MOUNTPOINT=/mnt/obb,
    EMULATED_STORAGE_TARGET=/storage/emulated, ANDROID_BOOTLOGO=1,
    LD_LIBRARY_PATH=/data/data/douglasanunciacao.ndksample/app_lib,
    EXTERNAL_STORAGE=/storage/emulated/legacy, ANDROID_SOCKET_zygote=11,
    ANDROID_DATA=/data,
    PATH=/sbin :/vendor/bin :/system/sbin :/system/bin :/system/xbin,
    ANDROID_ASSETS=/system/app, ASEC_MOUNTPOINT=/mnt/asec,
    BOOTCLASSPATH=/system/framework/core.jar :/system/framework/conscrypt.jar :/system/framework/okhttp.jar :/system/framework/core-junit.jar :/system/framework/bouncycastle.jar :/system/framework/ext.jar :/system/framework/framework.jar :/system/framework/framework2.jar :/system/framework/telephony-common.jar :/system/framework/voip-common.jar :/system/framework/mms-common.jar :/system/framework/android.policy.jar :/system/framework/services.jar :/system/framework/apache-xml.jar :/system/framework/webviewchromium.jar :/system/framework/telephony-msim.jar :/system/framework/oem-services.jar :/system/framework/qcmediaplayer.jar,
    ANDROID_PROPERTY_WORKSPACE=9,0, ANDROID_STORAGE=/storage]

    Does anyone knows the solution for this problem ?

  • How to install PHP FFMPEG on windows 10 64 Bit

    7 septembre 2017, par PlanetHackers

    I want to install the PHP FFMPEG on my system. My system configuration is :

    OS : Windows 10 64 Bit
    XAMPP v3.2.2
    PHP v7.0.15

    I found many tutorial but nothing found working. May be due to 64 bit system. I wanted to add a watermark to a video through PHP. That’s why I need the ffmpeg extension. I also tried through Composer but did not get success.

  • lavc/vaapi_encode : Don't return error if the underlying driver doesn't support B...

    6 février 2018, par Haihao Xiang
    lavc/vaapi_encode : Don't return error if the underlying driver doesn't support B frames
    

    The underlying driver need not support B frames - since they are enabled
    by default for some codecs, it is better to disable them rather than
    returning an error in this case. This makes the default settings usable
    for low-power encoding on Intel platforms.

    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>
    Signed-off-by : Mark Thompson <sw@jkqxz.net>

    • [DH] libavcodec/vaapi_encode.c