Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (61)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
    A quoi sert ce plugin
    Création de masques de formulaires
    Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
    Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (5492)

  • checkasm : Fix floating point arguments on 64-bit Windows

    24 août 2015, par Henrik Gramner
    checkasm : Fix floating point arguments on 64-bit Windows
    

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] tests/checkasm/x86/checkasm.asm
  • Record the whole webrtc call in nodejs and stream it into rtmp

    31 juillet 2023, par Matrix 404

    I have a simple peer-to-peer video chat using PeerJS, and I want to stream the entire call to an RTMP server. Do you have any ideas on how to achieve this ? I'm particularly interested in understanding how platforms like StreamYard work on the backend.

    &#xA;

    The main goal is to stream the video call to an RTMP server.

    &#xA;

  • PHP CURL call behaving asynchronously

    5 août 2015, par Prashant

    I have 2 different servers. In server 2 I have a API function which basically does video conversion of the file and generates thumbs. I have created logs after each functions in server 2 and server1 so that I can check what is happening in the server. From server1 I make a curl call which calls server2 API and sends necessary info like path and type of file etc to server2. The server to converts the media files and generate thumbs. All this process is done using ffmpeg and then server2 uploads converted video to rackspace cloud.
    This process runs in a cron job. In the cron job server1 reads media file path from a table and sends them one by one to server 2 by curl call.

    Problem : This process takes time and what is happening that when server2 code is processing 1st video file server1 sends another video file. It does not wait for the response of server 2. Now server two is processing 1st and second then meanwhile server1 sends another then all videos in server two processed.Server two sends response for all videos one by one. I can see whole process in logs. But I’m not getting how this can be happen in PHP. As far as I read that PHP lines executes one by one. So server 1 should wait for response of server2.

    Note : I have increased curl timeout also but that also does not work.