Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (60)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • avfilter/delogo : Set default band to 1

    7 octobre 2015, par Jean Delvare
    avfilter/delogo : Set default band to 1
    

    The original interpolation algorithm behaved poorly on the borders and
    did not even guarantee continuity at the borders. For this reason, a
    second interpolation/blending pass was required on the borders to make
    them seamless.

    However, since the interpolation algorithm was improved in June 2013,
    the border issues no longer exist. The new algorithm does guarantee
    continuity at the borders, making the second pass useless. A larger
    band always increases the cumulated interpolation error. In most cases
    it also increases the average interpolation error, even though the
    samples in the band are only partially interpolated.

    For this reason I would like to get rid of the "band" parameter. As a
    first step, let’s change its default value from 4 to 1 and document it
    as deprecated.

    I have benchmarked this change on a combination of input sources and
    realistic logo areas. Lowering the band value from 4 to 1 resulted in
    8 to 39 % less interpolation error per frame (or 1 to 34 % less
    interpolation error per luma sample.)

    Signed-off-by : Jean Delvare <jdelvare@suse.de>
    Signed-off-by : Stefano Sabatini <stefasab@gmail.com>

    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_delogo.c
  • convert from jpg to mp4 by ffmpeg

    23 juin 2022, par Sam

    I have 320 jpg(320x574) images which I have recorded them with 2004 fps. I want to make a .mp4 video of them. I have run below codes in cmd (win7) and it just make a video of jpg number 320 and if I go for this ('*.jpg') insted of 320 it does not work. I really appreciate any help.

    &#xA;&#xA;

    ffmpeg -r 1/5 -i C:\data-Sam\320.jpg -c:v libx264 -r 30 -pix_fmt yuv420p C:\data-Sam\out.mp4&#xA;

    &#xA;

  • Measure "delta time" between two simulation conditions

    14 décembre 2017, par mrj

    i understand that to measure BD-BR and BD-PSNR 4 data points are required (4 differents QPs). i want to measure time difference between two simulation conditions and each QP provide me a time.

    should i calculate the time difference between each one of the four QPs and then the average of them all** ? thanks in advance.

    ** as in :

    deltaTimeQP22 = timeSimulation1QP22 - timeSimulation2QP22
    deltaTimeQP27 = timeSimulation1QP27 - timeSimulation2QP27
    deltaTimeQP32 = timeSimulation1QP32 - timeSimulation2QP32
    deltaTimeQP37 = timeSimulation1QP37 - timeSimulation2QP37
    deltaTime = (deltaTimeQP22 + deltaTimeQP27 + deltaTimeQP32 + deltaTimeQP37)/4