Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (16)

  • 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

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

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (3409)

  • Web page with script

    28 avril 2017, par Peter

    please be patient with me, I have never been very much into the coding (only at the university just a little) but here is one thing I would love to have. I havent done any research before asking before I dont even know what to search for :) but here is what I would like to do :

    I have synology device with multicast TV stream connected to it. I have installed ffmpeg and everytime I want to record a TV show I have to do it from CLI so I was thinking it would be nice to run this ffmpeg from the web page. I mean I would click the TV channel from the drop down menu, set the name of a file, set the time and click RUN and then the command (ffmpeg -i http://MULTICAST_STREAM-variable -acodec copy -vcodec copy /var/services/homes/xxx/NAME_OF_TV_SHOW.mpg) will execute on my synology...Is something like this possible ? (I hope it is)...What exactly should I search for ?

    Thank you very much

  • Stopping FFMPEG from failing if one output fails

    10 septembre 2022, par Devin Dixon

    I am writing a service that is using FFMPEG to send an RTMP to multiple services. A simple example is such :

    


    ffmpeg -re -i rtmp://localhost:1935/live/xxxxxx -vcodec copy -acodec copy -attempt_recovery 1 -max_recovery_attempts 5 -drop_pkts_on_overflow 1 -f flv rtmp://a.rtmp.youtube.com/live2/xxxxxx -f flv rtmps://live-api-s.facebook.com:443/rtmp/xxxxx


    


    For the above example, occasionally the Facebook output fails and FFMPEG stops all streams. Is there a way to have ffmpeg not stop if one output fails ?

    


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