Recherche avancée

Médias (10)

Mot : - Tags -/wav

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (7750)

  • GSoC : Support fast guided filter.

    10 mai 2021, par Xuewei Meng
    GSoC : Support fast guided filter.
    

    Two modes are supported in guided filter, basic mode and fast mode.
    Basic mode is the initial pushed guided filter without optimization.
    Fast mode is implemented based on the basic one by sub-sampling method.
    The sub-sampling ratio which can be defined by users controls the
    algorithm complexity. The larger the sub-sampling ratio, the lower
    the algorithm complexity.

    Signed-off-by : Xuewei Meng <xwmeng96@gmail.com>
    Reviewed-by : Steven Liu <liuqi05@kuaishou.com>

    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_guided.c
  • ffmpeg output seeking not accurate even after -i [closed]

    3 septembre 2023, par hl037_

    In the documentation of ffmpeg, it is stated that if -ss is passed after -i, then it is frame accurate (Other questions are for -ss before -i).

    &#xA;

    Here is my command :

    &#xA;

    ffmpeg -i vid.mkv -ss 53 -codec copy test.mkv -y &#xA;

    &#xA;

    However, it is still not accurate, and seems to jump to the nearest keyframe. Am i missing something ?

    &#xA;

    Note : the problem only occurs when the video steam is copied. If reencoded or discarded, it works as expected

    &#xA;

    Note2 (As I am doing other tries) : There are also strange things with audio :

    &#xA;

    ffmpeg -i vid.mkv -ss 53 -codec copy test1.mkv -y &#xA;ffmpeg -i vid.mkv -ss 54 -codec copy test2.mkv -y &#xA;ffmpeg -i test1.mkv -vn -c:a copy test1a.mkv -y&#xA;ffmpeg -i test2.mkv -vn -c:a copy test2a.mkv -y&#xA;

    &#xA;

      &#xA;
    • test1.mkv is reported to be the right lenght, but the first frame correspond to the frame at 0:50 in original (end is good)
    • &#xA;

    • test2.mkv is reported to be the right lenght, but the first frame correspond to the frame at 0:55 in original (end is good)
    • &#xA;

    • test1a.mkv is the expected audio (starts at 0:53 of the original)
    • &#xA;

    • test2a.mkv is the expected audio (starts at 0:54 of the original)
    • &#xA;

    &#xA;

  • ftp: enhanced status code handling

    29 mai 2013, par Lukasz Marek
    ftp: enhanced status code handling
    

    Reimplementation of ftp_status function.
    New version requires explicit list of expected codes.
    It flush data connection input before sending a command
    and blocks until expected result appears.

    • [DH] libavformat/ftp.c