Recherche avancée

Médias (1)

Mot : - Tags -/ipad

Autres articles (70)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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

Sur d’autres sites (10292)

  • avformat/tls_openssl : use TLS_[client|server]_method

    25 juin, par Marvin Scholz
    avformat/tls_openssl : use TLS_client_method
    

    SSLv23_*_method was just a define for these anyway since OpenSSL 1.1.0
    and the old functions are deprecated.

    • [DH] libavformat/tls_openssl.c
  • [C++][Linux + ffmpeg + h264 + rtsp + client] and [Window + ffmpeg + play video real time + server]

    21 avril 2015, par QuestionGuy

    I have a problem with ffmpeg and I don’t know how to continue. I have 2 computers :

    Client :

    • Run Ubuntu 14.04
    • FFmpeg installed
    • Use c++ language
    • Features : use ffmpeg to encode h264 video data from webcam of client laptop, then real time streaming to server

    Server :

    • Running Windows 7
    • FFmpeg installed
    • Use c++ language (MFC)
    • Features : Get real time data from client and show it on screen.

    I’ve just connected client to server and they can chat text data together, and I don’t have any idea to make real time video work.

    And my questions are :

    1. [Client] How to get video from webcam on laptop (using ffmpeg code), save it to buffer (raw data), encode it and send to server ?

      I use ffmpeg to get video from wc but it save to file. I really don’t want it. Code is :

      ffmpeg -f v4l2 -framerate 25 -video_size 640x480 -i /dev/video0 output.mkv
    2. [Client] How to get raw data from client, decode it and play it ?

      I have an idea to play it by using directshow in MFC.

  • streaming a webcam feed over rtsp using ffmpeg & ffserver to an android client

    26 juillet 2015, par Coyote

    I am trying to stream my webcam over rtsp and open the stream using android.
    I managed to get the first part working (rtsp stream) using ffserver and ffmpgeg. Here is my ffserver.conf file :

    HTTPPort 8000
    RTSPPort 8001
    HTTPBindAddress 192.168.1.74
    RTSPBindAddress 192.168.1.74
    MaxClients 100
    MaxBandwidth 10000
    NoDefaults

    <feed>
      File /tmp/witty.ffm
      FileMaxSize 20M
    </feed>

    <stream>
      Feed witty.ffm
      Format rtp
      VideoSize 640x480
      VideoQMin 1
      VideoQMax 20
      VideoFrameRate 30
      VideoBitRate 500
      AVOptionVideo flags +global_header
      VideoCodec libx264
      AVPresetVideo baseline
      NoAudio
    </stream>

    ffserver :

    ffserver -f -d ffserver.conf // luch the server

    and then I use FFmpeg to open the webcam (Mac OS)

    ffmpeg -f avfoundation -i "default" http://192.168.1.74:8000/witty.ffm

    I can open the stream from VLC but on android using a videoView i am getting an error (1,-38) and an alert view saying "can’t play this video".