Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (65)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (3362)

  • Anomalie #3910 (Nouveau) : URL mal formaté dans le mail pour "Mot de passe oublié"

    24 février 2017, par Vincent Legeard

    Sur deux installations de SPIP en sous-répertoire (apache et nginx), je constate que l’URL qui permet de récupérer son mot de passe est mal formaté.

    http://localhost/spip.php?page=spip_pass&p=129552674058b054a01ced83.27305344

    devrait être

    http://localhost/spip/spip.php?page=spip_pass&p=129552674058b054a01ced83.27305344

    Le problème semble venir de la regex qui se trouve à la ligne 87 de ecrire/inc/filtre_mini.php

    https://core.spip.net/projects/spip/repository/entry/spip/ecrire/inc/filtres_mini.php#L87

    J’arrive à patcher le truc en ajoutant juste au dessus de la ligne 87 le code suivant, ce qui permet d’ajouter un / à la fin de l’URL (soit après le sous répertoire)

       if ($url) {<br />        $url .= substr($url, -1) == '/' ? '' : '/';<br />    }

    Mon patch n’est surement pas propre et peut faire des bug dans la fonction suivre_lien. Pour celà je le dépose ici.

  • C++ FFMPEG not writing AVCC box information

    10 juin 2019, par awr

    I’m trying to encode raw H264 into an mp4 container using the FFMPEG API in C++. It all works fine, however the AVCC box is empty, and it returns the error :
    [iso file] Box "avcC" size 8 invalid

    If I then use the command line tool on the output file :

    ffmpeg -i output.mp4 -vcodec copy fixed.mp4

    The output file works and AVCC is populated with the required information. I’m at a loss as to why this command line argument works but I’m unable to produce the same result using the API.

    What I do in the C++ code (also do things in between the function calls) :

    outputFormat_ = av_guess_format( "mp4", NULL, NULL ); //AV_CODEC_H264
    formatContext_ = avformat_alloc_context();
    formatContext_->oformat = outputFormat_;
    ...
    AVDictionary *opts = NULL;
    char tmpstr[50]; sprintf(tmpstr, "%i", muxRate * KILOBYTESTOBYTES);
    av_dict_set(&amp;opts, "muxrate", tmpstr, 0);
    avformat_write_header( formatContext_, &amp;opts);
    av_write_trailer(formatContext_);

    The output of this is correct, except it’s missing the AVCC information. Adding this is manually (and fixing the box lengths accordingly) lets me playback the video fine. Any idea why the API calls are not generating the AVCC info ?

    For reference, here’s the chars from the mp4 before the fix :

    .avc1.........................€.8.H...H..........................................ÿÿ....avcC....stts

    and after :

    avc1.........................€.8.H...H..........................................ÿÿ...!avcC.B€(ÿá..gB€(Ú.à.—•...hÎ<€....stts

  • avutil/pixdesc : add alpha component information to pixfmts with reserved but undefine...

    17 octobre 2024, par James Almer
    avutil/pixdesc : add alpha component information to pixfmts with reserved but undefined alpha bits
    

    This can be useful to simplify certain processes that need to know how many
    reserved bits there are and where they are placed, even if they are ultimately
    unused, as will be shown in the next commit.
    For any other case where the user simply looks at nb_components components, it
    will make no difference.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavutil/pixdesc.c
    • [DH] libavutil/tests/pixelutils.c