Recherche avancée

Médias (91)

Autres articles (75)

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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

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

Sur d’autres sites (7683)

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

  • avfilter/buffersrc : promote unspecified color metadata

    12 janvier 2024, par Niklas Haas
    avfilter/buffersrc : promote unspecified color metadata
    

    Currently, this only affects untagged RGB/XYZ/Gray, which get forced to
    their corresponding metadata before entering the filter graph. The main
    justification for this change, however, is the planned ability to add
    automatic promotion of unspecified yuv to mpeg range yuv.

    Notably, this change will never allow accidentally cross-promoting
    unspecified to jpeg or to a specific YUV matrix, since that is still
    bound by the constraints of YUV range negotiation as set up by
    query_formats.

    • [DH] libavfilter/buffersrc.c
    • [DH] tests/ref/fate/rgb24-mkv