Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (72)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

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

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

Sur d’autres sites (4853)

  • Revision 74593c1eae : Directly split the block in partition search This patch allows the encoder to d

    5 août 2014, par Pengchong Jin

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c



    Directly split the block in partition search

    This patch allows the encoder to directly split the block
    in partition search, therefore skip searching NONE. It
    computes a score which measures whether 16x16 motion vectors
    from the first pass in the current block are consistent with
    each others. If they are inconsistent and we have enough Q
    to encode, split the block directly, and skip searching NONE.

    This feature is under flag CONFIG_FP_MB_STATS. In speed 2,
    it further gives a speedup of 3-8% on sample yt clips as
    compared to the previous version under the same flag. Overall,
    the features under the flag will give 7-15% on typical yt
    clips at up to 6000kbps data rate. The speedup at very high
    data rate is not significant.

    For hard stdhd clips :
    park_joy_1080p @ 15000kbps : 504541ms -> 506293ms (-0.35%)
    pedestrian_area_1080p @ 2000kbps : 326610ms -> 290090ms (+11.2%)

    The compression performance using the features under the flag :
    derf : -0.068%
    yt : -0.189%
    hd : -0.318%
    stdhd :-0.183%

    To use the feature, set CONFIG_FP_MB_STATS and turn on
    cpi->use_fp_mb_stats.

    Change-Id : Iad58a2966515c8861aa9eb211565b1864048d47f

  • Revision a5d930e464 : vp10 : don't reset contextual skip flag if block has no coefficients. The implic

    8 septembre 2015, par Ronald S. Bultje

    Changed Paths :
     Modify /vp10/common/blockd.h


     Modify /vp10/common/loopfilter.c


     Modify /vp10/decoder/decodeframe.c



    vp10 : don’t reset contextual skip flag if block has no coefficients.

    The implicitly changed value would be used for contextualizing future
    skip flags of neighbour blocks (bottom/right), which is certainly not
    what was intended. The original code stems from vp8, and was useful
    in cases where coding of the skip flag was disabled. In vp9, the skip
    flag is always coded. The result of this change is that for bitstream
    parsing purposes, decoding of the skip flag becomes independent of
    decoding of block coefficients.

    See issue 1014.

    Change-Id : I8629e6abe76f7c1d649f28cd6fe22a675ce4a15d

  • How to add a text watermark to multiple videos with ffmpeg

    28 avril 2022, par che10

    I am currently using this command to output all videos in folder without the first 5 seconds :

    


    FORFILES /M "*.mkv" /c "cmd /c ffmpeg -ss 5.5 -i  ^"@file^" -c copy -map 0 ^"done\\@file^""


    


    I would like to know how can I add a text watermark to all of them in the same command. The location of the watermark should be on top left of the video.