Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (79)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Participer à sa traduction

    10 avril 2011

    Vous 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, par

    MediaSPIP 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 Tyler

    Basically 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 Boy

    I 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):&#xA;File "<stdin>", line 1, in <module>&#xA;File "/usr/lib/python3.6/site-packages/skvideo/io/io.py", line 133, in vread&#xA;assert _HAS_FFMPEG, "Cannot find installation of real FFmpeg (which comes with ffprobe)."&#xA;AssertionError: Cannot find installation of real FFmpeg (which comes with ffprobe).&#xA;</module></stdin>

    &#xA;

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

    &#xA;

    import skvideo.io&#xA;skvideo.setFFmpegPath(&#x27;/usr/lib/python3.6/site-packages/ffmpeg/&#x27;)&#xA;/usr/lib/python3.6/site-packages/skvideo/__init__.py:306: UserWarning: ffmpeg/ffprobe not found in path: /usr/lib/python3.6/site-packages/ffprobe/&#xA;  warnings.warn("ffmpeg/ffprobe not found in path: " &#x2B; str(path), UserWarning)&#xA;

    &#xA;

    How can I get this to work on OpenSuse ?

    &#xA;

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

    &#xA;