Recherche avancée

Médias (91)

Autres articles (93)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • Revision 0d80584327 : vp8_loop_filter_bh_y_sse2 : save/restore xmm registers xmm[6-11] should be saved

    21 novembre 2012, par James Zern

    Changed Paths : Modify /vp8/common/x86/loopfilter_block_sse2.asm vp8_loop_filter_bh_y_sse2 : save/restore xmm registers xmm[6-11] should be saved and restored for Windows x64 ; prevents an encoder mismatch and some datarate issues. Change-Id : (...)

  • 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();
    }
  • Save several .ts files in one container, while preserving direct http access

    16 mars 2017, par SebastianB

    For HLS-video-streaming I have several .ts files and a .m3u8 playlist-file on my ftp-server. The .m3u8 file links relative to these .ts files. Because I’m now implementing a more advanced data management on distributed servers and a hashed folder structure, it would be most convinient if these .ts files would stay at the same place in one kind of "container"(e.g. .mp4 ?).

    Is there a way to save several .ts files in another file structure which is then still accessible for the video player directly via http? E.g. http://example.com/container.mp4:video1.ts and the next .ts file like http://example.com/container.mp4:video2.ts ?

    Obviously this access should be possible without loading/unpacking the whole "container". Furthermore it would be even more convinient, if the .m3u8 file would be saved in this "container" as well.