Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (111)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

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