
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (90)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
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 -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (12871)
-
android MediaPlayer alternative for rtsp streaming
28 janvier 2014, par tulkas85I need to a multi viewer in my app, each view in a gridlayout must show a video from a camera that streaming over rtsp.
I try using Android VideoView and MediaPlayer, but results does not satisfy me, I have much latency for starting video, and compatibility problems using Lg L9 phone (see my question here )
I search a lot for 3rd party sdk , and I found Vitamio, but it not support multi-views in same activity (there is a bug). Another commercial sdk is Nexstreaming but not works on rtsp protocol.
I not found nothing else. Do you know others ?Using NDK could be another way to do it, so I seen for Gstreamer (tutorial) but it seems too complicated. Another way could be FFMPEG, but I have not found a definitive guide for it.
Any help ?
-
Troubleshooting ffmpeg slideshow output corruption
7 novembre 2020, par Hugh WalxetI'd been making single-image slideshows with ffmpegs for a long while without issue. Suddenly, sans any alteration to my previous install, the output from simple inputs like




ffmpeg -r 1 -ss 00:00:17 -i "D :\x\y\z\a.flac" -i "C :\b\c\d\e.jpg" -b:v 1M -t 30 -map 0:a:0 -map 1:v:0 C :\f\g.mp4




began giving me files that cannot be sent on any platform and which are unable to be played in VLC. I'm not really sure what's happening here. What diagnostics can I perform on the videos to pinpoint the issue ? This occurs with all image files, tested on jpg's, png's, etc. It has also not been solved by reinstalling ffmpeg, in a different location (and changing the environment variable path).


-
How to setup FFmpegMediaMetadataRetriever to a project with another native library
20 avril 2016, par kishidpSo I have a project that uses a native library that only supports arm.
I want to use FFmpegMediaMetadataRetriever for the metadata retriever, I added the dependency on build.gradle file. However, when I tried to run the application, the native library I’m using suddenly doesn’t work anymore.
There was an error that says "UnsatisfiedLinkError", I assume the library was not loaded. I also assume that it has something to do with the FFmpegMediaMetadataRetriever having support to other CPU (x86, mips, etc.)
I saw an option to use individual architecture, I added the arm aar as module to my project (I remove the FFmpegMediaMetadataRetriever dependency), I was able to run the app, but I don’t know what to do after that. Any help ?