Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (105)

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

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

Sur d’autres sites (9756)

  • avformat/iff : check size against INT64_MAX

    27 octobre 2020, par Michael Niedermayer
    avformat/iff : check size against INT64_MAX
    

    Bigger sizes are misinterpreted as negative numbers by the API
    Fixes : infinite loop
    Fixes : 26611/clusterfuzz-testcase-minimized-ffmpeg_dem_IFF_fuzzer-4890614975692800

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

    • [DH] libavformat/iff.c
  • Encoding videos with mixed aspect ratios in hevc [closed]

    25 octobre 2020, par bader515

    I have a huge library of movies, TV Shows, Anime, and Cartoons (about 16tb sorted by plex on my NAS).

    &#xA;

    Most of them are encoded in h.264, and each video has a different aspect ratio (1920x1080,1280x720...etc).

    &#xA;

    Is there a way to re-encode them using any tool to hevc with the same aspect ratio and bit per pixel ?

    &#xA;

    I have already tried using this command using ffmpeg, but the result is a bigger size video (with the sd videos) :

    &#xA;

    pushd "%2"&#xA;SET paths=paths.txt&#xA;SET /A ffmpeg_qv=24&#xA;if EXIST %paths% (&#xA;for /f "tokens=*" %%a in (%paths%) do (&#xA;    echo Changing to directory %%a&#xA;    pushd "%%a"&#xA;    CALL :ffmpeg&#xA;    )&#xA;) else (&#xA;CALL :ffmpeg&#xA;)&#xA;pause&#xA;EXIT /B %ERRORLEVEL%&#xA;  :ffmpeg&#xA;    for /R %%A in (*.mp4, *.avi, *.mov, *.wmv, *.ts, *.m2ts, *.mkv, *.mts) do &#xA;(&#xA;        echo Processing "%%A"&#xA;    ffmpeg -hwaccel auto -i "%%A" -pix_fmt yuv420p -map 0:v -map 0:a -map_metadata 0 -c:v hevc_nvenc -rc constqp -qp %ffmpeg_qv% -b:v 0K -c:a aac -b:a 384k -movflags &#x2B;faststart -movflags use_metadata_tags "%%A_CRF%ffmpeg_qv%_HEVC.mp4"&#xA;    echo Processed %%A&#xA;)&#xA;GOTO :EOF&#xA;

    &#xA;

  • Video getting darker after Chromakey overlay with FFMPEG

    22 octobre 2020, par João Raimundo

    I'm trying to use FFMPEG to programatically put an overlay with greenscreen, and I'm using the following command :

    &#xA;

    ffmpeg -i bg.mp4 -i gs.mp4 -filter_complex "[1:v]chromakey=0x1aa700:0.18:0.01 [ckout];[0:v][ckout]overlay[out]" -preset ultrafast -map "[out]" output.mp4&#xA;

    &#xA;

    My problem is that, in background videos bigger than the video with chromakey when the video with chromakey ends, the output video gets darker on black (depending on blend values), as seen in this video.

    &#xA;

    The idea is to use this command with Python, so, if you know another way to remove chromakey and overlay vídeos with Python, I would like to know !

    &#xA;

    Thank you in advance !

    &#xA;