Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (79)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

Sur d’autres sites (9652)

  • libavcodec/dnxhd : Enable 12-bit DNxHR support.

    2 août 2016, par Steven Robertson
    libavcodec/dnxhd : Enable 12-bit DNxHR support.
    

    10- and 12-bit DNxHR use the same DC coefficient decoding process and
    VLC table, just with a different shift value. From SMPTE 2019-1:2016,
    8.2.4 DC Coefficient Decoding :

    "For 8-bit video sampling, the maximum value of η=11 and for
    10-/12-bit video sampling, the maximum value of η=13."

    A sample file will be uploaded to show that with this patch, things
    decode correctly :
    dnxhr_hqx_12bit_1080p_smpte_colorbars_davinci_resolve.mov

    Signed-off-by : Steven Robertson <steven@strobe.cc>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/dnxhddec.c
  • FFMPEG streaming ip cam get delay from start record to first frame

    4 janvier 2019, par Vincent Carretero

    I’m recording stream from IP CAM with FFMPEG.
    I would like to know the exact timestamp when start the output video.

    Example :
    I have an output mp4 file created at 2019/01/04 09:10:15 (file created).
    FFMpeg take few seconds to really start streaming (initialising, etc...)
    The first frame really start at 2019/01/04 09:10:19 (just supposed, I would like to get this info).

    Thanks !

  • How to save multiple frames in JPG with FFMPEG using timestamp

    13 janvier 2019, par user3228278

    I’m trying to save JPG files from a UDP stream using FFMPEG.

    I want the filenames to be timestamp like YYYY-MM-DD_HH-MM-SS_MMM.jpg, but it seems that milliseconds not are supported by FFMPEG. I need a unique number after the second to be able to save multiple frames per second.

    ffmpeg -i udp://@239.255.37.1:18888 -f image2 -vf fps=1 -strftime 1 "R:\Recordings\Images\Stream1\%Y-%m-%d_%H-%M-%S.jpg"

    I expect the files to be like this :
    2019-01-13_01-58-15_100.jpg, 2019-01-13_01-58-15_600.jpg