Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (89)

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

  • 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

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

Sur d’autres sites (8529)

  • Merge commit ’f1ccd076801444ab7f524cb13e0886faaf10fd50’

    17 décembre 2015, par Hendrik Leppkes
    Merge commit ’f1ccd076801444ab7f524cb13e0886faaf10fd50’
    

    * commit ’f1ccd076801444ab7f524cb13e0886faaf10fd50’ :
    h264 : do not call frame_start() for missing frames

    Not merged, FFmpeg does a lot more in frame_start to setup missing frames
    as well (like coloring them), and the overhead of the other setup is
    minimal.

    Merged-by : Hendrik Leppkes <h.leppkes@gmail.com>

  • Revision 6fb8953c19 : Restrict ref mv search range. Experiment to test speed trade off of reducing th

    5 novembre 2012, par Paul Wilkins

    Changed Paths : Modify /vp9/common/blockd.h Modify /vp9/common/mvref_common.c Restrict ref mv search range. Experiment to test speed trade off of reducing the extent of the ref mv search. Reducing the maximum number of tested candidates to 9 had minimal net effect on quality in any of the tests (...)

  • Libav FFv1 read_quant_table decoding errors

    16 novembre 2023, par flansel

    I am having trouble encoding and decoding video using the 'ffv1' codec. Interestingly when the width and height are 640 or less, this works correctly, but with any "large" frame size such as 1280x720 I get the follow errors ...

    &#xA;

    [ffv1 @ 0x5612f4ab2240] read_quant_table error&#xA;[ffv1 @ 0x5612f4ab2240] Cannot decode non-keyframe without valid keyframe&#xA;

    &#xA;

    Are there any options which need to be set, or am I doing something else incorrectly, I made the example very minimal, I am aware that I am not writing an image to the frame and simply allocating garbage in the buffers among other things.&#xA;Thanks in advance.

    &#xA;

    // minimal example&#xA;// ...&#xA;#define FRAMES (500)&#xA;&#xA;int main(int argc, char **argv)&#xA;{&#xA;    AVCodecContext *enc, *dec;&#xA;    AVFrame *frame = av_frame_alloc();&#xA;    AVFrame *decoded_frame = av_frame_alloc();&#xA;    AVPacket *packet = av_packet_alloc();&#xA;    AVPacket *padded_packet = av_packet_alloc();&#xA;&#xA;    const AVCodec *enc_codec = avcodec_find_encoder_by_name("ffv1");&#xA;    const AVCodec *dec_codec = avcodec_find_decoder_by_name("ffv1");&#xA;    enc = avcodec_alloc_context3(enc_codec);&#xA;    dec = avcodec_alloc_context3(dec_codec);&#xA;&#xA;    enc->width   = 1280;&#xA;    enc->height  = 720;&#xA;    enc->pix_fmt = AV_PIX_FMT_YUV420P;&#xA;    enc->time_base.num = 1001;&#xA;    enc->time_base.den = 60000;&#xA;&#xA;    dec->width  = enc->width;&#xA;    dec->height = enc->height;&#xA;&#xA;    avcodec_open2(enc, enc_codec, NULL);&#xA;    avcodec_open2(dec, dec_codec, NULL);&#xA;&#xA;    frame->height = enc->height;&#xA;    frame->width  = enc->width;&#xA;    frame->format = enc->pix_fmt;&#xA;    av_frame_get_buffer(frame, 32);&#xA;    printf("frame linesz %i,%i,%i\n", frame->linesize[0], frame->linesize[1], frame->linesize[2]);&#xA;&#xA;    for (int i = 0; i &lt; FRAMES; &#x2B;&#x2B;i)&#xA;    {&#xA;        avcodec_send_frame(enc, frame);&#xA;        while (!avcodec_receive_packet(enc, packet))&#xA;        {&#xA;            av_new_packet(padded_packet, packet->size &#x2B; AV_INPUT_BUFFER_PADDING_SIZE);&#xA;            padded_packet->size -= AV_INPUT_BUFFER_PADDING_SIZE;&#xA;&#xA;            memset(padded_packet->data, 0, padded_packet->size);&#xA;            memcpy(padded_packet->data, packet->data, packet->size);&#xA;            printf("frame %i encoded %i bytes\n", i, padded_packet->size);&#xA;            if (!avcodec_send_packet(dec, padded_packet))&#xA;            {&#xA;                printf("sent bytes to decoder\n");&#xA;            }&#xA;        }&#xA;&#xA;        while (!avcodec_receive_frame(dec, decoded_frame))&#xA;        {&#xA;            printf("decoded frame height %i, width %i\n", decoded_frame->height, decoded_frame->width);&#xA;        }&#xA;        usleep(16000);&#xA;    }&#xA;    return 0;&#xA;}&#xA;

    &#xA;