Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (86)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (7188)

  • x86/vvc/vvc_mc : set the correct number of used registers in vvc_w_avg functions

    1er février 2024, par James Almer
    x86/vvc/vvc_mc : set the correct number of used registers in vvc_w_avg functions
    

    Fixes crashes when running fate-vvc-conformance-WP_A_3 on Win64 targets

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

    • [DH] libavcodec/x86/vvc/vvc_mc.asm
  • 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;

  • doc/codecs : Change common boolean parameters listed to "bool"

    10 mai 2017, par Michael Niedermayer
    doc/codecs : Change common boolean parameters listed to "bool"
    

    Reviewed-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/codecs.texi