Recherche avancée

Médias (3)

Mot : - Tags -/Valkaama

Autres articles (61)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (11225)

  • Force x264 to only use long term reference frames

    12 décembre 2019, par cloudraven

    I want to generate a h.264 stream in which P-frames are using references exclusively using long-term references identifiers rather than defaulting to a short-term reference given by the previous frame.

    At this point this is an academic experiment to understand the encoding behavior of long-term references and the consequences of forcing frames to refer to a specific frame rather than several.

    It would be great if I could do this from the command line, but if not possible I am open to modifying x264 for this purpose.

    Could anyone point me to where in the source code it is determined :

    • the reference frame / macroblock / partition for the current macroblock
    • changes made to the short term, long term reference frame list
    • whether to use a short term reference frame or a long term reference frame.

    Using another encoder like nvenc is also acceptable.

  • Force x264 to only use long term reference frames

    12 décembre 2019, par cloudraven

    I want to generate a h.264 stream in which P-frames are using references exclusively using long-term references identifiers rather than defaulting to a short-term reference given by the previous frame.

    At this point this is an academic experiment to understand the encoding behavior of long-term references and the consequences of forcing frames to refer to a specific frame rather than several.

    It would be great if I could do this from the command line, but if not possible I am open to modifying x264 for this purpose.

    Could anyone point me to where in the source code it is determined :

    • the reference frame / macroblock / partition for the current macroblock
    • changes made to the short term, long term reference frame list
    • whether to use a short term reference frame or a long term reference frame.

    Using another encoder like nvenc is also acceptable.

  • lavc/hevc_refs : exclude current frame from long term refs

    15 juillet 2022, par Xu Guangxin
    lavc/hevc_refs : exclude current frame from long term refs
    

    suppose
    a. You have 3 frames, 0, 1, 4096.
    b. The ltMask is 0xfff and use_msb is 0.
    c. The 0, 1 are lt refs for 4096.
    d. you are decoding frame 4096, and get the 0 frame.
    Since 4096 & ltMask is 0 too, even you want get 0, find_ref_idx may give you 4096.
    add_candidate_ref will report an error for this

    Tested-by : Fei Wang <fei.w.wang@intel.com>
    Signed-off-by : Xu Guangxin <guangxin.xu@intel.com>

    • [DH] libavcodec/hevc_refs.c