Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

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 (12014)

  • Revision cdc954fdc8 : skip the un-necessary motion search in the first pass This patch allows the VP9

    16 juin 2014, par Pengchong Jin

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



    skip the un-necessary motion search in the first pass

    This patch allows the VP9 encoder to skip the un-necessary
    motion search in the first pass. It computes the motion error
    of 0,0 motion using the last source frame as the reference,
    and skips the further motion search if this error is small.

    Borg test shows overall the patch gives PSNR gain (derf -0.001%,
    yt 0.341%, hd 0.282%). Individual clips may have PSNR gain or
    loss. The best PSNR performance is 7.347% and the worst is -0.662%.
    The first pass encoding speedup for slideshow clips is over 30%.

    Change-Id : I4cac4dbd911f277ee858e161f3ca652c771344fe

  • Revision 096ab11012 : Removing pass number check from ivf_write_file_header(). Putting appropriate ch

    14 janvier 2014, par Dmitry Kovalev

    Changed Paths :
     Modify /ivfenc.c


     Modify /vpxenc.c



    Removing pass number check from ivf_write_file_header().

    Putting appropriate check to open_output_file() and close_output_file().
    Before that the output file has been opened twice during two-pass encoding.

    Change-Id : I290cecf00513d6a31ca3f45bc20fef7efcb10190

  • ffmpeg - How to pass http headers ?

    30 novembre 2015, 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 ?