Recherche avancée

Médias (0)

Mot : - Tags -/optimisation

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

Autres articles (63)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (8725)

  • keyframe frequency of four seconds or less error when trying to stream a VOD file to ant media server

    24 janvier 2023, par Usama

    I am trying to stream a VOD file to Youtube using ant media server. I have uploaded the file to AMS and added the RTMP url but after starting the broadcast I am getting an error from YouTube saying "Please use a keyframe frequency of four seconds or less. Currently, keyframes are not being sent often enough, which can cause buffering. The current keyframe frequency is 6.8 seconds. Note that ingestion errors can cause incorrect GOP (group of pictures) sizes."
How do I configure the keyframe frequency for my file

    


  • avcodec/cbs_h266 : Fix regression in DVB clip introduced by 93281630a71c06642adfebebb0...

    10 novembre 2024, par Nuo Mi
    avcodec/cbs_h266 : Fix regression in DVB clip introduced by 93281630a71c06642adfebebb0d4b105a4e02e91
    

    This commit introduced a regression to VVC_HDR_UHDTV1_OpenGOP_3840x2160_50fps_HLG10_mosaic.ts.

    Root Cause :
    The AV_CEIL_RSHIFT(a, b) macro uses bit tricks that work only when -a is a negative value.
    However, due to integer promotion rules, this behavior does not extend to the unsigned int type.

    See "6.3.1.1 Boolean, characters, and integers" in the "ISO/IEC 9899" for details.

    Reported-by : Frank Plowman <post@frankplowman.com>

    • [DH] libavcodec/cbs_h266_syntax_template.c
  • Blurry picture when decoding h264 mpegts udp stream with ffmpeg

    10 juin 2019, par Fredrik Axling

    Im using ffmpeg do read an udp stream (contains only video) and to decode frames , I then like to encode again , but during the decoding or from the demuxing i get blurry pictures pictures especially the lower part.

    I have a video player that also uses ffmpeg that displays the video perfectly and I try to look in that code but I don’t see any differences.
    In the log I se things like

    Invalid NAL unit 8, skipping.
    

    nal_unit_type : 1(Coded slice of a non-IDR picture), nal_ref_idc : 3
    Invalid NAL unit 7, skipping.
    bytestream overread td
    error while decoding MB 109 49, bytestream td

    The main things in the code looks like :

    av_register_all();

    AVFormatContext *fmt_ctx = 0;

    AVDictionary *options = 0;
    av_dict_set(&amp;options, "analyzeduration", "500000", NULL);
    av_dict_set(&amp;options, "probesize", "500000", NULL);
    char* url = "udp://239.0.0.3:8081";
    avformat_open_input(&amp;fmt_ctx, url, 0, &amp;options);

    avformat_find_stream_info(fmt_ctx, &amp;options);

    int nRet = 0;
    av_dump_format(fmt_ctx, 0, url, 0);
    AVStream *pStream = fmt_ctx->streams[0];
    AVCodecID nCodecid = pStream->codec->codec_id;
    AVCodec* pCodec = avcodec_find_decoder(nCodecid);
    AVCodecContext* pCodecCtx = pStream->codec;

    nRet = avcodec_open2(pCodecCtx, pCodec, NULL);
    int nInH = pStream->codec->height;
    int nInW = pStream->codec->width;
    int nOutW = nInW / 4;
    int nOutH = nInH / 4;

    SwsContext* pSwsCtx = sws_getContext(nInW, nInH, AV_PIX_FMT_YUV420P,
                                        nOutW, nOutH, AV_PIX_FMT_RGB24,
                                        SWS_BICUBIC, NULL, NULL, NULL);


    m_pFilmWdg->m_img = QImage(nOutW, nOutH, QImage::Format_RGB888);
    int linesizes[4];
    av_image_fill_linesizes(linesizes, AV_PIX_FMT_RGB24, nOutW);


    for (;;)
    {
       av_init_packet(&amp;pkt);
       pkt.data = NULL;
       pkt.size = 0;
       nRet = av_read_frame(fmt_ctx, &amp;pkt);

       nRet = avcodec_send_packet(pCodecCtx, &amp;pkt);

       AVFrame*  picture = av_frame_alloc();

       nRet = avcodec_receive_frame(pCodecCtx, picture);

       if (AVERROR(EAGAIN) == nRet)
           continue;

       uint8_t* p[] = { m_pFilmWdg->m_img.bits() };



       nRet = sws_scale(pSwsCtx, picture->data, picture->linesize, 0, nInH, p, linesizes);

       av_packet_unref(&amp;pkt);
       av_frame_free(&amp;picture);
       m_pFilmWdg->update();

    }