
Recherche avancée
Médias (2)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (79)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (14351)
-
Streaming Installation paid request [on hold]
9 février 2016, par Lewis TylerBasically I need a streaming platform which allows my users to broadcast their webcam to a rtmp ip each users would have there own link
rtmp://192.168.0.1/username/token
I just need the server ip. No installation required. Does anyone know of any good sites to purchase a streaming server like this ? Or can anyone set one up for me over team viewer on my own remote server, happily to pay someone for their time. -
Anomalie #2284 (Nouveau) : Étape 4 de l’installation sans aucun style
5 septembre 2011, par RastaPopoulos -SPIP 3 révision 18441. L’étape 4 de l’installation affiche les bonnes informations mais sans plus de styles, contrairement aux étapes précédentes. Le code source contient deux lignes de liens CSS mais avec des fichiers vides :
-
OpenSuse - Cannot find installation of real FFmpeg
27 août 2020, par Harry BoyI have OpenSuse Leap 15.1 and have installed ffmpeg and checked that its installed as follows :


pip install ffmpeg
pip list | grep ffmpeg
ffmpeg 1.4



Now when I run the following code :


import skvideo.io
import skvideo.datasets
bbb = skvideo.datasets.bigbuckbunny()
v = skvideo.io.vread(bbb)



I get this error :


Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python3.6/site-packages/skvideo/io/io.py", line 133, in vread
assert _HAS_FFMPEG, "Cannot find installation of real FFmpeg (which comes with ffprobe)."
AssertionError: Cannot find installation of real FFmpeg (which comes with ffprobe).
</module></stdin>


I have also tried to set the ffmpeg path as follows but I get another error :


import skvideo.io
skvideo.setFFmpegPath('/usr/lib/python3.6/site-packages/ffmpeg/')
/usr/lib/python3.6/site-packages/skvideo/__init__.py:306: UserWarning: ffmpeg/ffprobe not found in path: /usr/lib/python3.6/site-packages/ffprobe/
 warnings.warn("ffmpeg/ffprobe not found in path: " + str(path), UserWarning)



How can I get this to work on OpenSuse ?


This is similar to this question but its Ubuntu : Cannot find installation of real FFmpeg (which comes with ffprobe)