Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (103)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • 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 (...)

  • 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 (12015)

  • ffmpeg - How to pass http headers ?

    14 août 2024, par Lizozom

    I need to pass http headers (user agent and ip) to an ffmpeg command.

    



    I use the following command :

    



    ffmpeg  -y -timeout 5000000 -map 0:0 -an -sn -f md5 - -headers "User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36" -headers "X-Forwarded-For: 13.14.15.66"  -i "http://127.0.0.1" 


    



    And I run a local node.js server to see the headers I get :

    



    'use strict';

var express = require('express');

var server = express();

server.all('/*', function(req, res) {
  console.log(JSON.stringify(req.headers));
  res.sendFile('SampleVideo_1080x720_1mb.mp4', {root: '.'});

});


server.listen(80);


    



    I keep getting an error saying "No trailing CRLF found in HTTP header." and the request is stuck.

    



    If I drop the headers - everything works normally.

    



    I also tried putting both headers in one string, but any line breaking character I used (\r\n, \r\n, etc.) didn't work.

    



    Can someone help me figure out how to write this command correctly with the headers included ?

    


  • Revision 9e49ba05f4 : Fix first-pass encoding test Always initialize the mode_info with sb_type of BL

    15 mai 2013, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_firstpass.c



    Fix first-pass encoding test

    Always initialize the mode_info with sb_type of BLOCK_SIZE_MB16X16
    for the first-pass encoding test.

    Change-Id : Ic86393eeef981bdd523a5b44cfac3f0b24c068b7

  • How to pass input (Feeds) from camera to ffmpeg for live streaming

    1er janvier 2017, par A Sahra

    I want to stream video live that’s captured via getUserMedia and pass it to ffmpeg as an Input or feed to make it live for other users on my website.

    How would i get the Video as video4linux2 here ?

    $ffmpeg -f video4linux2 -i /dev/video0

    I am getting video via getUserMedia from camera and in BackEnd it’s PHP codeigniter.