Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (8)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (894)

  • Revision db71c1bd55 : Fix compile warning. warning : comparison between signed and unsigned integer ex

    20 septembre 2014, par hkuang

    Changed Paths :
     Modify /test/convolve_test.cc



    Fix compile warning.

    warning : comparison between signed and unsigned integer expressions.

    Change-Id : Ib6ee7500fe910983f290fc321ad89c0ab9989455

  • avcodec/hevcdsp : optimize pixel comparison in sao_edge_filter

    16 février 2015, par James Almer
    avcodec/hevcdsp : optimize pixel comparison in sao_edge_filter
    

    GCC 4.9.2 on a Core i5-4200U @ 1.60GHz, Linux x86_64

    Before
    715487 decicycles in sao_edge_filter_8, 262144 runs, 0 skips

    After
    672104 decicycles in sao_edge_filter_8, 262144 runs, 0 skips

    Reviewed-by : Michael Niedermayer <michaelni@gmx.at>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/hevcdsp_template.c
  • Turn two sets of images into a single comparison video

    20 janvier 2021, par bmvanity8723

    I have two folders with the exact same number of images : "folder1" and "folder2".

    &#xA;

    I want to take these images, convert them into two videos and have them rendered in the same video file. Think of it like a comparison video that's rendered side-by-side in the same file.

    &#xA;

    I can use ffmpeg to turn the still images into videos, but this will have one file for each video :

    &#xA;

    ffmpeg -start_number 0 -i "folder1/image-%06d.png" -c:v libx264 -vf "format=yuv420p" video1.mp4&#xA;&#xA;ffmpeg -start_number 0 -i "folder2/image-%06d.png" -c:v libx264 -vf "format=yuv420p" video2.mp4&#xA;

    &#xA;

    If I want to have both videos rendered side-by-side in the same file I would have to re-encode them, which means quality loss.

    &#xA;

    Is there a way to do this without the quality loss from reencoding ?

    &#xA;

    Or are there other tools other than ffmpeg that can do this work ?

    &#xA;