Recherche avancée

Médias (91)

Autres articles (110)

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

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (15256)

  • Why ffmpeg/mplayer2 play sloppy something that vlc plays well ?

    8 octobre 2015, par exebook

    While trying to play with mplayer2 or stream with ffmpeg, the video has a slight delay about every 12 seconds. Sometimes leading to distorted picture. But the same input plays back perfectly with vlc. What could be the reason for this ?

    mplayer2 shows it’s infamous "YOUR SYSTEM IS TOO SLOW TO PLAY THIS", but neither of its suggestions make difference.

  • How to play RTMP video by using libRTMP and SDL ?

    27 avril 2014, par Smeegol Xie

    I want to play RTMP video. The RTMP stream is encoded by flv1 and speex. My solution is to use libRTMP to decode vedio and SDL to draw video image frame by frame, use Speex to decode audio and Audio Queue Services to play audio. First my question is whether is it a perfect solution ?

    Now I have already completed the audio decoding and playing work. How do I decode video and play it by using SDL ? The color encoding is YUV420, it’s easy to convert YUV420 to RGB.My question is how to play RTMP video by using libRTMP and SDL ? Can somebody tell me HOW ?

  • Play video with WMV format

    2 février 2023, par juan

    I use ExoPlayer library to play videos but the library does not support the WMV format. How I can play video with WMV format ?

    


    Is there a certain way to play this format, or can I play the video using mobile-ffmpeg
library ?

    


    XML :

    


    


    


    Code fragment :

    


     List<mediaitem> mediaItems = new ArrayList&lt;>();&#xA;&#xA;            MediaItem mediaItem = new MediaItem.Builder()&#xA;                    .setUri(Uri.parse(videos.get(position).getPath()))&#xA;                    .build();&#xA;&#xA;            mediaItems.add(mediaItem);&#xA;            player.setMediaItems(mediaItems);&#xA;&#xA;            binding.videoView.setPlayer(player);&#xA;            player.prepare();&#xA;            player.seekTo(0);&#xA;            player.play();&#xA;</mediaitem>

    &#xA;

    Thanks for the help in advance.

    &#xA;