Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (73)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (8152)

  • avcodec/avcodec : Update check for identical colorspace/primaries/trc names

    21 mars 2021, par Andreas Rheinhardt
    avcodec/avcodec : Update check for identical colorspace/primaries/trc names
    

    If the numerical constants for colorspace, transfer characteristics
    and color primaries coincide, the current code presumes the
    corresponding names to be identical and prints only one of them obtained
    via av_get_colorspace_name(). There are two issues with this : The first
    is that the underlying assumption is wrong : The names only coincide in
    the 0-7 range, they differ for more recent additions. The second is that
    av_get_colorspace_name() is outdated itself ; it has not been updated
    with the names of the newly defined colorspaces.

    Fix both of this by using the names from
    av_color_(space|primaries|transfer)_name() and comparing them via
    strcmp ; don't use av_get_colorspace_name() at all.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/avcodec.c
  • how to add timeout of connection to ffmpeg command when retriving rtsp ?

    1er juillet 2021, par 多线程大脑

    I used the following command to transfer a rtsp stream to a .mp4 file :

    &#xA;

    ffmpeg -rtsp_transport tcp -timeout 5000000 -i "rtsp://zigong.stream.xl02.cn:557/HongTranSvr?DevId=1b038d27-858c-46a1-b803-a2984af343df&amp;Session=1b038d27-858c-46a1-b803-a2984af343df"  -vcodec copy -t 5 -y "capture.mp4" &#xA;

    &#xA;

    The result is as below :

    &#xA;

    [rtsp @ 0x5655577ccc00] Unable to open RTSP for listening&#xA;rtsp://zigong.stream.xl02.cn:557/HongTranSvr?DevId=1b038d27-858c-46a1-b803-a2984af343df&amp;Session=1b038d27-858c-46a1-b803-a2984af343df: Cannot assign requested address&#xA;

    &#xA;

    But it worded fine if I delete the timeout option...&#xA;the ffmpeg version is :

    &#xA;

    ffmpeg version 3.2.12-1~deb9u1 Copyright (c) 2000-2018 the FFmpeg developers&#xA;  built with gcc 6.3.0 (Debian 6.3.0-18&#x2B;deb9u1) 20170516&#xA;  configuration: --prefix=/usr --extra-version=&#x27;1~deb9u1&#x27; --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --disable-stripping --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libebur128 --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmp3lame --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libopencv --enable-libx264 --enable-shared&#xA;  libavutil      55. 34.101 / 55. 34.101&#xA;  libavcodec     57. 64.101 / 57. 64.101&#xA;  libavformat    57. 56.101 / 57. 56.101&#xA;  libavdevice    57.  1.100 / 57.  1.100&#xA;  libavfilter     6. 65.100 /  6. 65.100&#xA;  libavresample   3.  1.  0 /  3.  1.  0&#xA;  libswscale      4.  2.100 /  4.  2.100&#xA;  libswresample   2.  3.100 /  2.  3.100&#xA;  libpostproc    54.  1.100 / 54.  1.100&#xA;&#xA;

    &#xA;

  • how to record camera to file while encoding stream to v4l2-loopback device ?

    3 février 2021, par Jonatas

    So i have this logitech c920 camera 1920x1080 h264 capable and i would like to record the camera to file while at the same time copying/encoding the stream to a loopback device so the camera can be still used by other apps.&#xA;here is the code i got so far :

    &#xA;

    ffmpeg -report -f alsa -i hw:CARD=C920,DEV=0 -r 1500 -s 1920x1080 -f v4l2 -vcodec h264 \&#xA;-i /dev/video1 -copyinkf -vcodec copy /home/jonatas/Videos/2021-02-01185658.mp4 \ &#xA;-f v4l2 /dev/video0&#xA;

    &#xA;

    error :

    &#xA;

    Unknown V4L2 pixel format equivalent for yuvj420p&#xA;Could not write header for output file #1 (incorrect codec parameters ?): Invalid argument&#xA;Error initializing output stream 1:0 -- &#xA;

    &#xA;

    some info on /dev/video0(loopbackdevice) :

    &#xA;

    v4l2-ctl -d /dev/video0&#xA;&#xA;    Device Caps      : 0x05208003&#xA;        Video Capture&#xA;        Video Output&#xA;        Video Memory-to-Memory&#xA;        Read/Write&#xA;        Streaming&#xA;        Extended Pix Format&#xA;Priority: 0&#xA;Video input : 0 (loopback: ok)&#xA;Video output: 0 (loopback in)&#xA;Format Video Output:&#xA;    Width/Height      : 1280/720&#xA;    Pixel Format      : &#x27;YUYV&#x27; (YUYV 4:2:2)&#xA;    Field             : None&#xA;    Bytes per Line    : 2560&#xA;    Size Image        : 1843200&#xA;    Colorspace        : sRGB&#xA;    Transfer Function : Default (maps to sRGB)&#xA;    YCbCr/HSV Encoding: Default (maps to ITU-R 601)&#xA;    Quantization      : Default (maps to Limited Range)&#xA;    Flags             : &#xA;Streaming Parameters Video Capture:&#xA;    Frames per second: 30.000 (30/1)&#xA;    Read buffers     : 8&#xA;Streaming Parameters Video Output:&#xA;    Frames per second: 30.000 (30/1)&#xA;    Write buffers    : 8&#xA;&#xA;User Controls&#xA;&#xA;                    keep_format 0x0098f900 (bool)   : default=0 value=0&#xA;              sustain_framerate 0x0098f901 (bool)   : default=0 value=0&#xA;                        timeout 0x0098f902 (int)    : min=0 max=100000 step=1 default=0 value=0&#xA;               timeout_image_io 0x0098f903 (bool)   : default=0 value=0&#xA;

    &#xA;

    some info on my camera in /dev/video1

    &#xA;

    v4l2-ctl -d /dev/video1 --all&#xA;Driver Info:&#xA;    Driver name      : uvcvideo&#xA;    Card type        : HD Pro Webcam C920&#xA;    Bus info         : usb-0000:00:14.0-7.2&#xA;    Driver version   : 5.4.78&#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;Media Driver Info:&#xA;    Driver name      : uvcvideo&#xA;    Model            : HD Pro Webcam C920&#xA;    Serial           : EC6C336F&#xA;    Bus info         : usb-0000:00:14.0-7.2&#xA;    Media version    : 5.4.78&#xA;    Hardware revision: 0x00000011 (17)&#xA;    Driver version   : 5.4.78&#xA;Interface Info:&#xA;    ID               : 0x03000002&#xA;    Type             : V4L Video&#xA;Entity Info:&#xA;    ID               : 0x00000001 (1)&#xA;    Name             : HD Pro Webcam C920&#xA;    Function         : V4L2 I/O&#xA;    Flags         : default&#xA;    Pad 0x01000007   : 0: Sink&#xA;      Link 0x0200001f: from remote pad 0x100000a of entity &#x27;Processing 3&#x27;: Data, Enabled, Immutable&#xA;Priority: 2&#xA;Video input : 0 (Camera 1: ok)&#xA;Format Video Capture:&#xA;    Width/Height      : 1280/720&#xA;    Pixel Format      : &#x27;H264&#x27; (H.264)&#xA;    Field             : None&#xA;    Bytes per Line    : 2560&#xA;    Size Image        : 1843200&#xA;    Colorspace        : sRGB&#xA;    Transfer Function : Default (maps to sRGB)&#xA;    YCbCr/HSV Encoding: Default (maps to ITU-R 601)&#xA;    Quantization      : Default (maps to Full Range)&#xA;    Flags             : &#xA;Crop Capability Video Capture:&#xA;    Bounds      : Left 0, Top 0, Width 1280, Height 720&#xA;    Default     : Left 0, Top 0, Width 1280, Height 720&#xA;    Pixel Aspect: 1/1&#xA;Selection Video Capture: crop_default, Left 0, Top 0, Width 1280, Height 720, Flags: &#xA;Selection Video Capture: crop_bounds, Left 0, Top 0, Width 1280, Height 720, Flags: &#xA;Streaming Parameters Video Capture:&#xA;    Capabilities     : timeperframe&#xA;    Frames per second: 30.000 (30/1)&#xA;    Read buffers     : 0&#xA;                     brightness 0x00980900 (int)    : min=0 max=255 step=1 default=128 value=128&#xA;                       contrast 0x00980901 (int)    : min=0 max=255 step=1 default=128 value=128&#xA;                     saturation 0x00980902 (int)    : min=0 max=255 step=1 default=128 value=128&#xA; white_balance_temperature_auto 0x0098090c (bool)   : default=1 value=1&#xA;                           gain 0x00980913 (int)    : min=0 max=255 step=1 default=0 value=255&#xA;           power_line_frequency 0x00980918 (menu)   : min=0 max=2 default=2 value=2&#xA;                0: Disabled&#xA;                1: 50 Hz&#xA;                2: 60 Hz&#xA;      white_balance_temperature 0x0098091a (int)    : min=2000 max=6500 step=1 default=4000 value=3233 flags=inactive&#xA;                      sharpness 0x0098091b (int)    : min=0 max=255 step=1 default=128 value=128&#xA;         backlight_compensation 0x0098091c (int)    : min=0 max=1 step=1 default=0 value=0&#xA;                  exposure_auto 0x009a0901 (menu)   : min=0 max=3 default=3 value=3&#xA;                1: Manual Mode&#xA;                3: Aperture Priority Mode&#xA;              exposure_absolute 0x009a0902 (int)    : min=3 max=2047 step=1 default=250 value=333 flags=inactive&#xA;         exposure_auto_priority 0x009a0903 (bool)   : default=0 value=0&#xA;                   pan_absolute 0x009a0908 (int)    : min=-36000 max=36000 step=3600 default=0 value=0&#xA;                  tilt_absolute 0x009a0909 (int)    : min=-36000 max=36000 step=3600 default=0 value=0&#xA;                 focus_absolute 0x009a090a (int)    : min=0 max=250 step=5 default=0 value=0&#xA;                     focus_auto 0x009a090c (bool)   : default=1 value=0&#xA;                  zoom_absolute 0x009a090d (int)    : min=100 max=500 step=1 default=100 value=100&#xA;

    &#xA;

    if i remove the 3rd line of my script the camera records the stream of video and sound to the file flawless. i tried diferent things for the 3rd line as -vcodec and something to do with pix-format flag to YUYV without success.&#xA;Is it possible to achieve this with just one ffmpeg process ?&#xA;Will the sound be made available to the loopback device also ?&#xA;How to transcode it to the proper pixel format used by loopback device ?

    &#xA;