Recherche avancée

Médias (0)

Mot : - Tags -/albums

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

Autres articles (42)

  • 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

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

Sur d’autres sites (6899)

  • How to live stream video securely ?

    16 février 2018, par casper04

    I have an IP Camera which sends out a RTSP stream over UDP. On the same network I have an Intel Edison where I can send the stream to, to possibly convert the stream and make sure it’s sent securely. From the Edison I want to send the stream to a server, where the stream is stored and sent out to the client (a browser).

    Now I know that the best option to stream video on different browsers is HTTP Live Streaming, which means I should convert the stream to a format which is compatible with HLS. And as I understand it, this can be done with FFMPEG (which, I believe, also works on Yocto Linux, which is what is running on the Edison).

    What I don’t want however, is that the stream that I’m sending out can be easily watched by people who are not authorized. Therefore, I would like to either encrypt the stream (and decrypt it on the server), or send it over HTTPS. Is this possible, and if so, how ?

  • There is a video stream option and player. But can't find where to manage video and stream

    26 janvier 2018, par Chanaka De Silva

    I’m working on this repository. in this application, we can upload a video taken by a action camera or drone, and it uses GPS coordinates (lat,lang) and draw the path of the video in the map. And also we can play the video via the system too after upload.

    Bt the size of the video is too much high. So it take a lot of time to process video and also download and play when we host in a server. I wanted to reduce size. So I write this code.

    try {
    new ffmpeg('demo.mp4', function (err, video) {
       if (!err) {
           video
               .setVideoSize('50%', true, false)
               .setVideoFrameRate(30)
               .save('output.mp4', function (error, file) {
                   if (error) {
                       console.log("error : ", error);
                   }
                   if (!error)
                       console.log('Video file: ' + file);
               });
           console.log('The video is ready to be processed');
       } else {
           console.log('Error: ' + err);
       }
    });

    }

    But the issue is I can’t find where is the video coming from in this application. We need to pass like "demo.mp4" to my code as you can see. This is the index file if this application : https://github.com/chanakaDe/replay-lite/blob/master/frontend/index.html

    And this is the player file : https://github.com/chanakaDe/replay-lite/blob/master/frontend/player.js

    This is the file called api.js : https://github.com/chanakaDe/replay-lite/blob/master/frontend/api.js

    This file also has some video functions : https://github.com/chanakaDe/replay-lite/blob/master/gopro/index.js

    Please guys, sometimes you will see this questions as a silly question. But you have the repo to check and can you guys please check and let me know where to get a video file or stream to add my size reduce code ?

  • ffmpeg How to stream to my own server ?

    10 février 2018, par Ricky

    I have an app that can take in an hls source and output to an rtmp endpoint but what if I want to stream to my own server ? How would I set up my own rtmp end point. I would love to be able take a stream in and stream that stream to my own app so the user can see the stream. for example :

    if I stream to my own server like this

    ffmpeg -re -i "https://mnmedias.api.telequebec.tv/m3u8/29880.m3u8" -f flv "160.222.22.22"

    I have been googling all around and haven’t found any tutorials or guides in doing so. Any pointers would greatly be appreciated.