Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (77)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (10330)

  • Is there a way to add watermark to all videos in Google Drive’s folder ?

    30 avril 2015, par whitesiroi

    Is there a way to add watermark to all videos in Google Drive’s folder ?

    I found similar service, but it works only with pictures, pdfs - Wappwolf

    Maybe, it’s possible to do by Google Apps Script or some other services (like ffmpeg) ?

  • send browser camera to rtmp server

    22 juin 2022, par anamul

    i am using python and in frotnend javascript.

    


    I am using ffmpeg to push video to rtmp server.

    


    ffmpeg -y -f mp4 -stream_loop -1 -re -i myvideo.mp4
-b:v 3M -vcodec libx264 -r 30.0 -s 1280x720
-c:a copy -b:a 96k
-f flv "rtmps://dfdf222.global-contribute.live-video.net:443/app/"


    


    It is working well but i am not getting how to push to rtmp server of my browser camera ? i mean from javascript ?

    


    i am trying like this :

    


    &#xA;    <video autoplay="autoplay"></video>&#xA;&#xA;    <a href="#">open and stream</a>&#xA;&#xA;    <code class="echappe-js">&lt;script&gt;&amp;#xA;        function streamVideo () {&amp;#xA;            console.log(&amp;#x27;ddd&amp;#x27;)&amp;#xA;            navigator.mediaDevices.getUserMedia({&amp;#xA;            video: {&amp;#xA;&amp;#xA;            },&amp;#xA;            audio: {&amp;#xA;                &amp;#xA;            }&amp;#xA;            }).then(stream=&gt;{&amp;#xA;                console.log(stream)&amp;#xA;                document.getElementById(&amp;#x27;vid&amp;#x27;).srcObject = stream; &amp;#xA;            })&amp;#xA;&amp;#xA;        }&amp;#xA;    &lt;/script&gt;&#xA;&#xA;

    &#xA;

    It is working but not getting any way to push from browser to rtmp server. I know browser doesnt support rtmp protocol, we need to send it from the backend but can i push to server so that it push to rtmp server ?

    &#xA;

    Anyone know the way ?

    &#xA;

  • FFmpeg video conversion wont play in my browser

    3 juin 2015, par Marc Rasmussen

    I am trying no matter what format of video my clients upload to convert them into three different formats :

    var videoExtensions = ['mp4', 'webm', 'ogg'];

       var ffmpeg = require('fluent-ffmpeg');
    videoExtensions.forEach(function (extension) {
       var proc = new ffmpeg({source: media.file.path, nolog: false})
           .withVideoCodec('libx264')
           .withVideoBitrate(800)
           .withAudioCodec('libvo_aacenc')
           .withAudioBitrate('128k')
           .withAudioChannels(2)
           .toFormat(extension)
           .saveToFile(media.targetDir + media.getName() + '.' + extension,
           function (retcode, error) {
               console.log('file has been converted succesfully');
           });
    });

    On my local machine I am able to open and play the videos no problem

    However as soon as I load them as resources into my browser it simply will not play.

    If I however instead of converting just move the file I have no problem opening the file in my browser however then I will not be able to get the file in all three formats.

    My question is am I doing something wrong in the above code or why is my browser "rejecting" the files so to speak ?