Recherche avancée

Médias (91)

Autres articles (55)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (11282)

  • Split into video frames and save as jpeg

    3 janvier 2017, par Selman Akbulut

    I want to split all frames and save the jpeg file but Error getBuffredImage

    public static void main( String[] args )
    {
       FFmpegFrameGrabber g = new FFmpegFrameGrabber("C:\1.mp4");
       g.start();

       for (int i = 0 ; i < 50 ; i++) {
           ImageIO.write(g.grab().getBufferedImage(), "png", new File(System.currentTimeMillis() + ".png"));
       }
       g.stop();
    }
  • Split audio file into several files, each below a size threshold

    5 novembre 2022, par Ben Sandler

    I have a FLAC file which I need to split into several distinct FLAC files, each of which must be below 100 MB in size. Are there any UNIX tools which can do this for me ? Can I implement this logic myself ?

    



    Side-note : since FLAC is compressed, I figure that the easiest solution will require first converting the file to WAV.

    


  • Split audio file into several files, each below a size threshold

    15 avril 2016, par Ben Sandler

    I have a FLAC file which I need to split into several distinct FLAC files, each of which must be below 100 MB in size. Are there any UNIX tools which can do this for me ? Can I implement this logic myself ?

    Side-note : since FLAC is compressed, I figure that the easiest solution will require first converting the file to WAV.