Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (55)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (4483)

  • lavc/qsvenc : pass the color properties to the SDK

    28 juillet 2021, par Haihao Xiang
    lavc/qsvenc : pass the color properties to the SDK
    

    Otherwise the color properties won't be encoded into the bitstream
    header

    Reviewed-by : Xiang, Haihao <haihao.xiang@intel.com>
    Reviewed-by : Soft Works <softworkz@hotmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/qsvenc.c
    • [DH] libavcodec/qsvenc.h
  • How to change color scheme of frame extracted via FFMPEG library on C++ ?

    22 septembre 2014, par user2742299

    I have been able to decode the video file using the FFMPEG as well as to save them in *.ppm files.

    I would like to know how can I change the color of each frame soon after decoding and before saving them ?

    For example : if I have a colored frame which I decoded and extracted from the video file, I would now like to change it to black and white frame and then save it to the file.

    I am quite new to FFMPEG library and further more less documentation is available on it for developers. Therefore any help on it would be highly appreciable.

    Thanks

  • Color spot in FFmpeg output

    2 juin 2022, par Fabian Garcia

    I work in a company that serves multimedia content to different clients and one of these requests that the videos contain the following specifications :

    &#xA;

      &#xA;
    • Codec : H264 High@4.0
    • &#xA;

    • Mode : CBR 1 pass
    • &#xA;

    • Window Buffer : 5 secs
    • &#xA;

    • Frame Rate : 29.97/23.97
    • &#xA;

    • Key Frame Interval : 2 secs
    • &#xA;

    • Bitrate : 4000 Kbps
    • &#xA;

    • Size : 1920x1080
    • &#xA;

    • Window Buffer : 5 secs
    • &#xA;

    • GOP : closed
    • &#xA;

    • GOP size : fixed (no scene change detection)
    • &#xA;

    • Window Buffer : 5 secs
    • &#xA;

    • B Frames : As needed
    • &#xA;

    &#xA;

    For the above, i build following script :

    &#xA;

    ffmpeg -hide_banner -nostats -loglevel error -y&#xA;-init_hw_device cuda=cuda -hwaccel cuda -hwaccel_device cuda&#xA;-i &#x27;video_source.mxf&#x27; -filter_hw_device cuda&#xA;-filter_complex &#x27;[0:v]format=nv12,hwupload,yadif_cuda,scale_cuda=1920:1080[v0]&#x27;&#xA;-map &#x27;[v0]&#x27; -c:v h264_nvenc -rc cbr -b:v 4M -bufsize 8M -x264-params "keyint=60:min-keyint=48:no-scenecut" -r &#x27;30000/1001&#x27; -profile:v high -level:v 4&#xA;-map 0:1 -c:a libfdk_aac -b:a 96k -ar 44100 -ac 2 -sample_fmt s16&#xA;&#x27;output.mp4&#x27;&#xA;

    &#xA;

    The inconvenience is that the generated output presents some color spots in the scene changes (it's a fade) as can be seen in the attached image.

    &#xA;

    I could notice that in the output video, the time does not match the input precisely, the output is a few milliseconds ahead, I think that the color spot corresponds to the image that should be shown at that moment in the original video.

    &#xA;

    Can you see something wrong in script ? Or maybe some concept that i don't know is causing a conflict with the output (This is my first time using ffmpeg).

    &#xA;

    Thank for your help !

    &#xA;

    color spot example

    &#xA;