Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (24)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (3744)

  • How to tell ffmpeg to loop through all files in directory in order

    16 août 2014, par Andy

    ffmpeg has concat option for this but all streams start working really bad and breaking sound after a day of streaming.

    I tried looking at loops but i couldnt figure out how to execute a loop with ffmpeg command so it transcodes all files in 1 directory

    /lely/ffmpeg -y -re -i /home/ftp/kid1.mp4 -vcodec copy -acodec copy -dts_delta_threshold 1000 -ar 44100 -ab 32k -f flv rtmp ://10.0.0.17:1935/live/kid

    In folder /home/ftp/ there are files kid1, kid2, kid3 - all *.mp4 files

    So basically i would like a loop to change the input to next file every time previous ends.

  • How to read ffmpeg response from java and use it to create a progress bar ?

    7 septembre 2017, par shalki

    I am working on creating a progress bar for ffmpeg in java. So for that I need to execute a command, then read all of the progress :

    String[] command = {"gnome-terminal", "-x", "/bin/sh", "-c","ffmpeg -i /home/tmp/F.webm /home/tmp/converted1.mp4"};

    Process process = Runtime.getRuntime().exec(command);

    This runs perfectly. However, I need to capture the all of the progress to make a progress bar. So how can I read that data from java ?

  • How to read ffmpeg response from java and use it to create a progress bar ?

    1er février 2016, par shalki

    I am working on creating a progress bar for ffmpeg in java. So for that I need to execute a command, then read all of the progress :

    String[] command = {"gnome-terminal", "-x", "/bin/sh", "-c","ffmpeg -i /home/tmp/F.webm /home/tmp/converted1.mp4"};

    Process process = Runtime.getRuntime().exec(command);

    This runs perfectly. However, I need to capture the all of the progress to make a progress bar. So how can I read that data from java ?