Recherche avancée

Médias (91)

Autres articles (96)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

Sur d’autres sites (11254)

  • avfilter/chromaber_vulkan : use FF_ARRAY_ELEMS instead of magic number

    19 novembre 2021, par Wu Jianhua
    avfilter/chromaber_vulkan : use FF_ARRAY_ELEMS instead of magic number
    

    Signed-off-by : Wu Jianhua <jianhua.wu@intel.com>

    • [DH] libavfilter/vf_chromaber_vulkan.c
  • avfilter/avgblur_vulkan : use FF_ARRAY_ELEMS instead of magic number

    19 novembre 2021, par Wu Jianhua
    avfilter/avgblur_vulkan : use FF_ARRAY_ELEMS instead of magic number
    

    Signed-off-by : Wu Jianhua <jianhua.wu@intel.com>

    • [DH] libavfilter/vf_avgblur_vulkan.c
  • How to set the reference frame number correctly in ffmpeg x265

    8 mai 2020, par luodonghui1234

    I have a problem when using x265 in ffmpeg. The following code is that I use x265 params to set the reference frame number of P frame. I have checked the x265 document and set the — ref parameter to achieve the purpose I want, but it is invalid. The resolution of the encoded P frame header to num_negative_pics is always 2. I need to set this number to 1, that is to say, any P frame only needs to refer to the previous frame.

    &#xA;&#xA;

    m_cVideoCodeCtxt->flags |= AV_CODEC_FLAG_CLOSED_GOP;&#xA;m_cVideoCodeCtxt->rc_max_rate    = m_iRate;&#xA;m_cVideoCodeCtxt->rc_min_rate    = (int)m_iRate / 2;&#xA;m_cVideoCodeCtxt->rc_buffer_size = m_iRate;&#xA;m_cVideoCodeCtxt->bit_rate       = (int)m_iRate;&#xA;&#xA;m_cVideoCodeCtxt->width          = 1920;    &#xA;m_cVideoCodeCtxt->height         = 1080;    &#xA;m_cVideoCodeCtxt->time_base      = { 1, 30 };&#xA;m_cVideoCodeCtxt->framerate      = { 30 ,1};&#xA;m_cVideoCodeCtxt->frame_number   = 1;  &#xA;m_cVideoCodeCtxt->gop_size       = 30; &#xA;m_cVideoCodeCtxt->max_b_frames   = 0; &#xA;m_cVideoCodeCtxt->thread_count   = 4;&#xA;m_cVideoCodeCtxt->pix_fmt        = pix_fmt;&#xA;m_cVideoCodeCtxt->codec_type     = AVMEDIA_TYPE_VIDEO;&#xA;m_cVideoCodeCtxt->codec_id       = m_fVideoFmCtxt->video_codec_id;&#xA;int ret = av_opt_set(m_cVideoCodeCtxt->priv_data, "preset", "ultrafast", 0);&#xA;ret = av_opt_set(m_cVideoCodeCtxt->priv_data, "tune", "zerolatency", 0);&#xA;&#xA;CString cstrX265Parms = L"";&#xA;cstrX265Parms.Format(L"keyint=%d:ref=1:no-open-gop=1:weightp=1:b_pyramid=1:weightb=0:cutree=0:rc-lookahead=0:bframes=0:scenecut=0:b-adapt=0:repeat-headers=1:max-merge=1", m_iFrameRate);&#xA;USES_CONVERSION;&#xA;char* cX265Parms = W2A(cstrX265Parms);&#xA;ret = av_opt_set(m_cVideoCodeCtxt->priv_data, "x265-params", cX265Parms, 0);&#xA;

    &#xA;&#xA;

    Is there a problem with my code ? Or need to cooperate with other parameter settings

    &#xA;