Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (35)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

Sur d’autres sites (5472)

  • How to properly compress single image videos with ffmpeg ?

    6 mars 2016, par Shoshomiga

    I have a video that I am converting through an automated system that is 7mb, it is basically an mp3 with an image.

    Now when its converted it magically becomes 17mb. My guess is its looping through the images instead of compressing them. The video was downloaded from youtube.

    Here is my command that I’m converting it with :

    /usr/local/bin/ffmpeg  -i '/home/site/www-video/Upload/Temp/9d40b683eb2e8e8a036d64c741d04e01.flv' -pass 1 -vcodec libx264 -vpre fast_firstpass  -s 480x360   -g 12   -fs 524288000   -vsync 2  -threads 0 -f rawvideo -an -y /dev/null
    &&
    /usr/local/bin/ffmpeg  -i '/home/site/www-video/Upload/Temp/9d40b683eb2e8e8a036d64c741d04e01.flv'  -pass 2  -acodec copy  -vcodec libx264 -vpre fast -b 512k  -g 12   -s 480x360   -fs 524288000   -vsync 2  -threads 0 -y /home/site/www-video/Upload/Temp/15616/video.flv

    As you can see I’m converting it to the same format and it magically gains 10mb

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

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