Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (52)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    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 (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (5260)

  • How to set as the same size for the input color as the video size ?

    2 janvier 2021, par Yaroslav Akulov

    I have many videos with different widths and heights on which I need to overlay a random color. And I don't know how to set the same size for the color input as the size of each of all of my videos...

    


    The exact color size only works for the video with the same size. But when the queue comes to another video with different widths and heights the error popping out.

    


    enter image description here

    


    for %%i in (*.mp4) do ffmpeg /
-i "%%i" -f lavfi -i "color=random@1:s=624x1110" /
-hide_banner -y -c:v libx264 -preset slow /
-filter_complex /
"[0:v]setsar=sar=1/1[ckout]; /
 [ckout][1:v]blend=shortest=1:all_mode=overlay:all_opacity=0.05[out]" -map "[out]" "output/%%~ni.mp4"


    


  • avcodec/dpx : Read color information from DPX header

    7 décembre 2020, par Harry Mallon
    avcodec/dpx : Read color information from DPX header
    

    Signed-off-by : Harry Mallon <harry.mallon@codex.online>

    • [DH] libavcodec/dpx.c
    • [DH] tests/ref/fate/dpx-probe
  • FFMPEG : Transcode UHD H265 to SDR H264 without color loss

    29 juin 2021, par Abhinandan Chakraborty

    I'm testing FFMPEG on my server. I'm trying to transcode H265 10-bit to H264 8-bit to support playing the video on all major web browser.

    &#xA;

    1. This is the first command :

    &#xA;

    ffmpeg -i 4K.ts -c:a aac -c:v h264 -crf 19 -preset ultrafast out.mp4&#xA;

    &#xA;

    Result : Video only playable on VLC media player. Doesn't play on any browser

    &#xA;

    2. Then I tried using this command :

    &#xA;

    ffmpeg -i 4K.ts -c:a aac -c:v h264 -crf 19 -profile:v main -preset ultrafast -vf "format=yuv420p" out.mp4&#xA;

    &#xA;

    Result : Video is playable everywhere but massive color loss.

    &#xA;

    3. Then I tried another command :

    &#xA;

    ffmpeg -i 4K.ts -c:a aac -c:v h264 -crf 19 -profile:v main -preset ultrafast -vf "format=yuvj420p" out.mp4&#xA;

    &#xA;

    Result : Video is playable everywhere but increased color range

    &#xA;

    I don't know if I am missing anything or If I should completely disallow users to upload video with 10-bit depth. Any help will be greatly appreciated

    &#xA;

    If anyone interested in the video which I am testing on then here is the link : https://drive.google.com/uc?export=download&id=1pGsnknkoIDRPKrW-YPFS7U31J09PeM4N

    &#xA;

    I followed through many google results to come up with these command, Some of them are :

    &#xA;

      &#xA;
    1. FFMPEG Transcode H265 video from 10-bit to 8-bit
    2. &#xA;

    3. https://blender.stackexchange.com/questions/73743/lossless-10-bit-colorspace-yuvj420p-video-output
    4. &#xA;

    5. https://askubuntu.com/questions/922563/set-bit-depth-in-ffmpeg-encoding-for-hevc
    6. &#xA;

    &#xA;