Recherche avancée

Médias (0)

Mot : - Tags -/optimisation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (20)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (5878)

  • Best Codec and Pixel Formats to use in FFMPEG Pipeline

    19 décembre 2022, par user20623229

    I have created an FFMPEG Pipeline to stream video frames to an RTSP server. The frames are RGB frames with 3 dimensions. My pipeline command is as follows :

    


    openPipeLine = _popen("ffmpeg -f rawvideo -r 30 -video_size 720x1280 -pixel_format bgr24 -i pipe: -vcodec libx264 -crf 24 -pix_fmt yuv420p -f rtsp rtsp://localHost:8554/mystream", "w");


    


    I can barely make out the picture when I connect to the server via VLC Media. The colors seem scrambled. I've attached a sample image and the output on the server.

    


    Are there any recommended Codec's that I can use to solve this ? Perhaps the pixel format should be changed. I'm currently using a Codec and pixel format that I found online without knowing if these are the best options.
original frame
server output

    


    Thank you very much.

    


  • ffmpeg convert video to size 275x157 pixels [closed]

    21 janvier 2024, par degr

    I want to make video of exact size 275x157, but ffmpeg always make it 274x156.

    


    So far I try next list of commands :

    


    //it from my opinion, it should make vide of my size, and add padding if necessary, but result is same - 274x156
ffmpeg -i ScreenRecorderProject7.mkv  -strict -2 -filter:v "pad=275:157:(275-iw*min(275/iw\,157/ih))/2:(157-ih*min(275/iw\,157/ih))/2" WrathTrailer1334x750.mp4

//more advanced variant of previous command, not work also
ffmpeg -i ScreenRecorderProject7.mkv  -strict -2 -filter:v "pad=275:157:(275-iw*min(275/iw\,157/ih))/2:(157-ih*min(275/iw\,157/ih))/2" WrathTrailer1334x750.mp4

//it told width is not divisible by 2
ffmpeg -i ScreenRecorderProject5.mkv -strict -2 -vf scale=275x157 -aspect 1.75259 output.mp4

//in description it was mentioned it add 1px pad, but I feel it is wrong; result incorrect
ffmpeg -i ScreenRecorderProject5.mkv -strict -2 -vf pad="width=ceil(iw/2)*2:height=ceil(ih/2)*2" output.mp4


    


    Also I try to do so with movavi video editor, streamlabs and couple online video converters and always I'm getting wrong resolution. Cant understand what is wrong with that numbers

    


  • Where can I get 16-bit video sequences ? [on hold]

    9 mai 2017, par govind

    I understand that I can create 16-bit videos from 8-bit ones, but I want to work on actual 16-bit data (for a class project) and not just the bit-shifted pixel values. I just want to extract and work on the 16-bit Luma component from the video.

    https://media.xiph.org/ has 16-bit raw contents but the file size is 500GB. I would like to limit my downloads to 1-2 GB.
    The footnote at https://media.xiph.org/video/derf/ says "These were converted from 16-bit linear RGB to Y’CbCr", can I get the source from which these conversion took place.

    I could create my own content with some custom pattern but that’s not an option since I want to work on natural-looking imagery.

    I do understand that regular monitors can only display 8-bit. I also understand that it’s not a typical StackOverflow question, but I have already spent 2 hours online searching for it. Any links will be appreciated. Thanks in advance.