
Recherche avancée
Autres articles (37)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...) -
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
Sur d’autres sites (4796)
-
error : No accelerated colorspace conversion found., vision_opencv stack in ros,avi video file processing
4 août 2017, par rajatWhen i try to run some custom node to process some .avi video i have this error : i guess this error is related to opencv , i have tried all the sloutions , even recompiled vision_opencv with FFMPEG flag on , and urgraded ffmped with —enable-shared —enable-gpl —enable-swscale , but still no luck .
[swscaler @ 0x842fa20]No accelerated colorspace conversion found.
[swscaler @ 0x848aa80]No accelerated colorspace conversion found.
Last message repeated 10 times
[swscaler @ 0x8497c80]No accelerated colorspace conversion found.
[swscaler @ 0x848aa80]No accelerated colorspace conversion found.
Last message repeated 10 times
[swscaler @ 0x8497c60]No accelerated colorspace conversion found.
[swscaler @ 0x848aa80]No accelerated colorspace conversion found.
Last message repeated 10 times
[swscaler @ 0x8495730]No accelerated colorspace conversion found.
[swscaler @ 0x848aa80]No accelerated colorspace conversion found.
Last message repeated 10 times
[swscaler @ 0x8492ae0]No accelerated colorspace conversion found.
[swscaler @ 0x848aa80]No accelerated colorspace conversion found.
Last message repeated 10 times
[swscaler @ 0x8492d00]No accelerated colorspace conversion found.
[swscaler @ 0x848aa80]No accelerated colorspace conversion found.
Last message repeated 10 times
[swscaler @ 0x8491c70]No accelerated colorspace conversion found.
[swscaler @ 0x848aa80]No accelerated colorspace conversion foundi can’t proceed with my project , until i sort this out and i already have wasted more than 10hrs on this problem , so if you guys think of any solution i would be glad to try it out .
-
WebRTC to ffmpeg or vlc
10 mai 2014, par user3428043In WebRTC Are there any options to pass your localstream to an external media player like vlc for example ? or is there any other way of getting your stream outside the browser ?
I’ve tried gaining access by using the spd that is created when generating a peer offer but found no player that was able to process this correctly.any input on this would be greatly appreciated
-
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.