Recherche avancée

Médias (91)

Autres articles (37)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

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

Sur d’autres sites (6089)

  • vf_crop : make config_props work properly when called multiple times.

    18 mars 2013, par Anton Khirnov
    vf_crop : make config_props work properly when called multiple times.
    

    Do not leak the x/y expressions.

    • [DH] libavfilter/vf_crop.c
  • vf_setdar : make config_props work properly when called multiple times.

    18 mars 2013, par Anton Khirnov
    vf_setdar : make config_props work properly when called multiple times.
    

    Do not overwrite the variable set through AVOptions.

    • [DH] libavfilter/vf_aspect.c
  • External command does not execute completely - Java

    18 avril 2012, par Hristo Valchev Hristov

    So, I am building a program that converts .flv files to other formats.
    For that I'm using ffmpeg which does its job perfectly when executing it via command line. For example :

    ffmpeg -i C:\test.flv -acodec libmp3lame -y C:\test.mp3

    This example works like a charm - there isn't a single problem when executing the command.

    BUT when I try to execute the same command from within a Java class a problem occurs. I do this in a try-catch block :

    System.out.println("Start");
    Process p = Runtime.getRuntime().exec("cmd /c ffmpeg -i C:\test.flv -acodec libmp3lame -y C:\test.mp3");
    System.out.println("End");

    The console prints "Start". It starts converting and it doesn't finish.
    Can somebody help me ?