
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (111)
-
Publier sur MédiaSpip
13 juin 2013Puis-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 2011MediaSPIP 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, parMediaSPIP 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 exebookWhile 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 XieI 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 juanI 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<>();

 MediaItem mediaItem = new MediaItem.Builder()
 .setUri(Uri.parse(videos.get(position).getPath()))
 .build();

 mediaItems.add(mediaItem);
 player.setMediaItems(mediaItems);

 binding.videoView.setPlayer(player);
 player.prepare();
 player.seekTo(0);
 player.play();
</mediaitem>


Thanks for the help in advance.