Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (79)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

Sur d’autres sites (6857)

  • ffmpeg : How to keep audio synced when doing many (100) cuts with filter select='between(t,start,stop)+between...'

    4 février 2021, par Louis

    I am cutting out silent parts of a 45 minute video (a lecture).
To do this, I use a filter to select, say one hundred, non-silent parts (I already know their start and end times).

    


    ffmpeg -i in.mp4
-vf "select='between(t,start_1,stop_1)+...+between(t,start_100,stop_100)', setpts=N/FRAME_RATE/TB"
-af "aselect='between(t,start_1,stop_1)+...+between(t,start_100,stop_100)', asetpts=N/SR/TB"
-c:a aac -c:v libx264 out.mp4


    


    It works, but at the end of the video the images are delayed relative to the audio.
After reading this answer I also added

    


    -shortest -avoid_negative_ts make_zero -fflags +genpts


    


    at the end of the command. It didn't help.

    


    As audio and video are concatenated independently I'm not surprised that tiny time errors due to finite frame rate add up.

    


    Is there a solution that doesn't involve saving every non-silent part as a file ?

    


  • mjpegdec : stop setting the QP table

    26 janvier 2021, par Anton Khirnov
    mjpegdec : stop setting the QP table
    

    MJPEG does not have a single quantiser scale, so this does not fit into
    the intended API use.

    This removes the last use of the long-deprecated QP table API.

    • [DH] libavcodec/mjpegdec.c
    • [DH] tests/ref/fate/exif-image-embedded
    • [DH] tests/ref/fate/exif-image-jpg
  • avcodec/cri : Stop the bitreader at the end of uncompressed input

    1er février 2021, par Michael Niedermayer
    avcodec/cri : Stop the bitreader at the end of uncompressed input
    

    Fixes : Timeout
    Fixes : 29983/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_CRI_fuzzer-6420415838814208
    Fixes : 30595/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_CRI_fuzzer-6559089360502784

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/cri.c