Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (65)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (8118)

  • Revision e52e8b7025 : Changed to use reference mv as nearest mv The reference motion vector selected

    6 août 2012, par Yaowu Xu

    Changed Paths : Modify /vp8/common/findnearmv.c Modify /vp8/decoder/decodemv.c Modify /vp8/encoder/rdopt.c Modify /vp8/encoder/tokenize.c Changed to use reference mv as nearest mv The reference motion vector selected by surrounding pixels that has the best matching score is used as nearest motion (...)

  • lavc/lpc : optimise RVV vector type for compute_autocorr

    26 mai 2024, par Rémi Denis-Courmont
    lavc/lpc : optimise RVV vector type for compute_autocorr
    

    On SpacemiT X60 (with len == 4000) :
    autocorr_10_c : 2303.7
    autocorr_10_rvv_f64 : 1411.5 (before)
    autocorr_10_rvv_f64 : 842.2 (after)

    • [DH] libavcodec/riscv/lpc_init.c
    • [DH] libavcodec/riscv/lpc_rvv.S
  • Access to motion vector's (x, y) coordinate while using libx264 encoder

    8 mars 2022, par Rockland

    I want to know if it is possible to get motion vectors values (x, y) somehwhere in the enconding process while using libx264 encoder.

    


    I have a project where I need to modify motion vectors values during encoding process.
What I want to do concretly is for exemple : motion_x = motion_x + 1 and/or motion_y = motion_y -1

    


    I want to know if it is possible to get motion vectors values (x, y) somehwhere in the enconding process while using libx264 encoder.

    


    I have a project where I need to modify motion vectors values during encoding process.
What I want to do concretly is for exemple : motion_x = motion_x + 1 and/or motion_y = motion_y -1

    


    I know that it is possible to do that while using the standards ffmpeg encoders. Precisily in the function static int encode_picture(MpegEncContext *s, int picture_number) in the file mpegvideo_enc.c located in the ffmpeg's libavcodec directory, we can get and modify motion vector's values in the struct MpegEncContext (->current_picture.motion_val).
When I use libx264 encoder, this function is not called so I don't know where and how to do that.

    


    Your help will be verry appreciated.