Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (100)

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

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (10616)

  • lavc/libopenh264 : Support full range videos in transcoding

    18 avril 2023, par Jun Zhao
    lavc/libopenh264 : Support full range videos in transcoding
    

    Support full range videos when transcoding, enabled the
    YUVJ420P to avoid auto scale from YUVJ420P to YUV420P

    Signed-off-by : Jun Zhao <barryjzhao@tencent.com>

    • [DH] libavcodec/libopenh264enc.c
  • Capture full-range/lossless rgb frame from capture card that supports NV12 and YUYV output

    13 janvier 2023, par kunal joshi

    I am trying to make a program which captures an image, then i need to compare captured image and the input data which i displayed, both should matc pixel by pixel

    &#xA;

    Here are the details of my capture card

    &#xA;

    $ v4l2-ctl —list-formats-ext -d /dev/video0

    &#xA;

    ioctl: VIDIOC_ENUM_FMT&#xA;        Type: Video Capture&#xA;&#xA;        [0]: &#x27;NV12&#x27; (Y/CbCr 4:2:0)&#xA;                Size: Discrete 3840x2160&#xA;                        Interval: Discrete 0.033s (30.000 fps)&#xA;                Size: Discrete 2560x1440&#xA;                        Interval: Discrete 0.017s (60.000 fps)&#xA;                Size: Discrete 1920x1080&#xA;                        Interval: Discrete 0.017s (60.000 fps)&#xA;                Size: Discrete 1280x720&#xA;                        Interval: Discrete 0.017s (60.000 fps)&#xA;                Size: Discrete 640x480&#xA;                        Interval: Discrete 0.017s (60.000 fps)&#xA;        [1]: &#x27;YUYV&#x27; (YUYV 4:2:2)&#xA;                Size: Discrete 2560x1440&#xA;                        Interval: Discrete 0.020s (50.000 fps)&#xA;                Size: Discrete 1920x1080&#xA;                        Interval: Discrete 0.017s (60.000 fps)&#xA;                Size: Discrete 1280x720&#xA;                        Interval: Discrete 0.017s (60.000 fps)&#xA;                Size: Discrete 640x480&#xA;                        Interval: Discrete 0.017s (60.000 fps)&#xA;        [2]: &#x27;&#x27; (30313050-0000-0010-8000-00aa003)&#xA;        [3]: &#x27;&#x27; (e436eb7e-524f-11ce-9f53-0020af0)&#xA;&#xA;

    &#xA;

    $ v4l2-ctl —all

    &#xA;

    Driver Info:&#xA;        Driver name      : uvcvideo&#xA;        Card type        : ITE HDMI 4K&#x2B; Bridge: ITE HDMI 4&#xA;        Bus info         : usb-0000:00:14.0-6&#xA;        Driver version   : 5.18.0&#xA;        Capabilities     : 0x84a00001&#xA;                Video Capture&#xA;                Metadata Capture&#xA;                Streaming&#xA;                Extended Pix Format&#xA;                Device Capabilities&#xA;        Device Caps      : 0x04200001&#xA;                Video Capture&#xA;                Streaming&#xA;                Extended Pix Format&#xA;Priority: 2&#xA;Video input : 0 (Camera 1: ok)&#xA;Format Video Capture:&#xA;        Width/Height      : 1920/1080&#xA;        Pixel Format      : &#x27;YUYV&#x27; (YUYV 4:2:2)&#xA;        Field             : None&#xA;        Bytes per Line    : 3840&#xA;        Size Image        : 4147200&#xA;        Colorspace        : sRGB&#xA;        Transfer Function : Rec. 709&#xA;        YCbCr/HSV Encoding: Rec. 709&#xA;        Quantization      : Default (maps to Limited Range)&#xA;        Flags             :&#xA;Crop Capability Video Capture:&#xA;        Bounds      : Left 0, Top 0, Width 1920, Height 1080&#xA;        Default     : Left 0, Top 0, Width 1920, Height 1080&#xA;        Pixel Aspect: 1/1&#xA;Selection Video Capture: crop_default, Left 0, Top 0, Width 1920, Height 1080, Flags:&#xA;Selection Video Capture: crop_bounds, Left 0, Top 0, Width 1920, Height 1080, Flags:&#xA;Streaming Parameters Video Capture:&#xA;        Capabilities     : timeperframe&#xA;        Frames per second: 60.000 (60/1)&#xA;        Read buffers     : 0&#xA;&#xA;&#xA;

    &#xA;

    I have tried using various methods opencv but ffmpeg came the closest

    &#xA;

    With below command i am able to get good results but not what i want

    &#xA;

    ffmpeg -y -f v4l2 -pix_fmt NV12 -video_size 1920x1080 -i /dev/video0 -pix_fmt bgra -frames:v 10 webcam%03d.bmp&#xA;

    &#xA;

    Reference Image

    &#xA;

    RGB of Reference image

    &#xA;

    RGB of captured image

    &#xA;

    Note :- I am able to capture fine with Aforge on windows, but not with ffmpeg on linux.&#xA;Would like to know if anyone has already got solution to this.

    &#xA;

    Thanks in advance.

    &#xA;

  • avfilter/vf_blackdetect : support full-range YUV

    8 décembre 2022, par Niklas Haas
    avfilter/vf_blackdetect : support full-range YUV
    

    This filter currently makes the distinction between limited and full
    range by testing for the deprecated YUVJ pixel formats at link setup
    time. This is deprecated and should be improved to perform the detection
    based on the per-frame metadata.

    Rewrite it to calculate the black pixel threshold at the time of
    filtering a frame, when metadata about the frame's color range is known.
    Doing it this way has the small side benefit of being able to handle
    streams with variable metadata, and is not a meaningful performance
    cost.

    Signed-off-by : Niklas Haas <git@haasn.dev>

    • [DH] libavfilter/vf_blackdetect.c