Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (34)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

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

Sur d’autres sites (5877)

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

    


    1. This is the first command :

    


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


    


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

    


    2. Then I tried using this command :

    


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


    


    Result : Video is playable everywhere but massive color loss.

    


    3. Then I tried another command :

    


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


    


    Result : Video is playable everywhere but increased color range

    


    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

    


    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

    


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

    


      

    1. FFMPEG Transcode H265 video from 10-bit to 8-bit
    2. 


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


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


    


  • ffmpeg transparent HVEC video from alpha matte and color video

    16 janvier 2023, par James

    I have an alpha.mp4 (alpha matte video) and a color.mp4 (color video). How do I use ffmpeg to make a transparent HVEC (.mov) video ?

    


    I can combine with ffmpeg to make a .webm file following the instruction here :
https://www.unscreen.com/api under "Convert unpacked Pro Bundle to WEBM video with transparency"

    


    I have a newer mac and should be able to use HVEC_videotoolbox from either these 2 videos or the .webm file created.

    


    The closest I found was this which seems to generate a corrupt video that cannot be viewed in safari. Use FFmpeg to generate a movie with alpha channel from separate video and fill movies ? but

    


  • What is the ideal image format extraction for YUV color space and lossless compression from mxf video format using ffmpeg

    15 février 2016, par DragonDance27

    I would like to be able to work on frames from an .mxf video file. The image format of the video is JPEG 2000, using a YUV color space with 4:2:2 subsampling and lossless compression.

    My intentions are to extract frames from this video using ffmpeg. Extracted frames would then be processed in Matlab (at the moment I’m interested in performing colorization).

    I want to extract the frames with as minimal data loss as possible and I would like to work in the YUV color space. I understand PNG involves a lossless process, but only involves the RGB color space - so not an option.

    I think I can extract jpeg2000 frames in the YUV color space, but I’m not sure if I’m losing data from the compression process. I attempted the following code in ffmpeg :

    ffmpeg -i video.mxf -r 1/5 out%03d.jp2

    ... however, the extracted jp2 files are unreadable in various software, including HiView which is a specialised JPEG 2000 software.

    Quesiton 1 : Is this jpeg 2000 extraction method lossless ? What am I doing wrong ?

    I also considered extracting the images in the tiff format where I can achieve the YUV and lossless requirements. I attempted the following code in ffmpeg :

    ffmpeg -i video.mxf -vcodec tiff f%10d.tif

    ... however, the extracted tiff files are unreadable in software such as paint, paint.net and windows photo viewer.

    Question 2 : Is this tiff extraction method correct ? What am I doing wrong ?

    Question 3 : What is an ideal image format that covers my YUV and lossless requirements ?