Recherche avancée

Médias (0)

Mot : - Tags -/médias

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (94)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Installation en mode standalone

    4 février 2011, par

    L’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
    [mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
    Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)

Sur d’autres sites (7322)

  • FFMPEG RTP Stream unable to play unless used on FFPlay

    15 juillet 2017, par Cole

    I’ve set up a stream on ubuntu 16.04 using FFMPEG using his command to stream the microphone. I want to be able to play this stream on my Android but It only seems to play with FFPlay not VLC or any other RTP playback softwares they all seem to give the MRL error. In VLC it looks like this, However it looks different in other programs but they all say its due to the MRL :

    Your input can't be opened:
    VLC is unable to open the MRL 'rtp://@192.168.1.17:1234'. Check the log for details.

    My FFMPEG command is :

    ffmpeg -f alsa -i plughw:CARD=Device,DEV=0 -acodec libmp3lame  -ab 96k -f rtp rtp://192.168.1.2:1234

    I can only play my rtp stream in FFplay using the command below I use nodisp since its audio only.

    ffplay.exe -nodisp rtp://192.168.1.17:1234

  • Can use nginx rtmp to play video before live stream ?

    10 août 2017, par Nate

    I want to create streaming server and I’ve idea to play intro before play stream.

    | |
    | user —> nginx —> intro (.mp4) —> live streaming |
    | |

    Possible to do it with nginx + ffmpeg ?

    thank.

  • Android and ffmpeg. Play video (with sound)

    18 février 2014, par bukka.wh

    I have compiled ffmpeg library add it to my project and now I want to play video (with full list of options - stop, pause, forward, backward etc). I have read roman10 ffmpeg tutorial. And I also find out tutorial which describes how play video with ffmpeg and SDL framework. The difference (if I have correctly understood) is that in roman's tutorial each frame of video turns into a Bitmap and is then passed to Java code where it shows on SurfaceView. And in the second tutorial, the video is playing with the help of the SDL framework without passing it back to Java code.

    I want to ask some questions :

    1. Which way is better : return Bitmap back to Java and show it on SurfaceView or play it with SDL ?
    2. How can I play the sound of my video (can I do it with ffmpeg or do I need some additional libraries) ?