Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (46)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (6402)

  • avcodec/hevcdec : Check s->ref in the md5 path similar to hwaccel

    14 août 2022, par Michael Niedermayer
    avcodec/hevcdec : Check s->ref in the md5 path similar to hwaccel
    

    This is somewhat redundant with the is_decoded check. Maybe
    there is a nicer solution

    Fixes : Null pointer dereference
    Fixes : 49584/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_HEVC_fuzzer-5297367351427072

    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/hevcdec.c
  • avcodec/utils : treat PAL8 for jpegs similar to other colorspaces

    29 avril 2021, par Michael Niedermayer
    avcodec/utils : treat PAL8 for jpegs similar to other colorspaces
    

    Fixes : out of array access
    Fixes : 33713/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MJPEG_fuzzer-5778775641030656
    Fixes : 33717/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_JPEGLS_fuzzer-4960397238075392
    Fixes : 33718/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SMVJPEG_fuzzer-5314270096130048.fuzz
    Fixes : 33719/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MJPEG_fuzzer-5352721864589312
    Fixes : 33721/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_THP_fuzzer-5938892055379968

    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/utils.c
  • How to get ffmpeg configuration similar to that of youtube for 480p and 1080p video ? I have got a function but the output quality is too low

    14 avril 2021, par prehistoricbeast

    Hey guys I am learning to develop a website that converts videos to youtube quality (or close enough) 480p and 1080p, I am not much familiar with ffmpeg and struggling with its documentation.

    &#xA;

    I have these functions,

    &#xA;

    video_480p      = subprocess.call([FFMPEG_PATH, &#x27;-i&#x27;, input_file, &#x27;-codec:v&#x27;, &#x27;libx264&#x27;, &#x27;-crf&#x27;, &#x27;20&#x27;, &#x27;-preset&#x27;, &#x27;medium&#x27;,&#xA;                    &#x27;-b:v&#x27;, &#x27;1000k&#x27;, &#x27;-maxrate&#x27;, &#x27;1000k&#x27;, &#x27;-bufsize&#x27;, &#x27;2000k&#x27;,&#x27;-vf&#x27;, &#x27;scale=-2:480&#x27;, &#x27;-codec:a&#x27;, &#x27;aac&#x27;, &#x27;-b:a&#x27;,&#xA;                     &#x27;128k&#x27;, &#x27;-strict&#x27;, &#x27;-2&#x27;, file_480p])&#xA;

    &#xA;

    similarly I have another function,

    &#xA;

    new_video       = subprocess.call([FFMPEG_PATH, &#x27;-i&#x27;, input_file, &#x27;-codec:v&#x27;, &#x27;libx264&#x27;, &#x27;-crf&#x27;, &#x27;20&#x27;, &#x27;-preset&#x27;, &#x27;medium&#x27;,&#xA;                    &#x27;-b:v&#x27;, &#x27;1000k&#x27;, &#x27;-maxrate&#x27;, &#x27;1000k&#x27;, &#x27;-bufsize&#x27;, &#x27;2000k&#x27;,&#x27;-vf&#x27;, &#x27;scale=-2:1080&#x27;, &#x27;-codec:a&#x27;, &#x27;aac&#x27;, &#x27;-b:a&#x27;,&#xA;                     &#x27;128k&#x27;, &#x27;-strict&#x27;, &#x27;-2&#x27;, output_file])&#xA;

    &#xA;

    Both these functions, transcode the video, but returns low quality videos, Can anyone provide me with the right settings for 480p and 1080p which is similar or close to youtube quality ?

    &#xA;

    Thanks

    &#xA;