Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (90)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk 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 version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

Sur d’autres sites (16014)

  • 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) ?