Recherche avancée

Médias (0)

Mot : - Tags -/page unique

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

Autres articles (69)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (12920)

  • avcodec/g729dec : Use 64bit and clip in scalar product

    5 novembre 2019, par Michael Niedermayer
    avcodec/g729dec : Use 64bit and clip in scalar product
    

    The G729 reference decoder clips after each individual operation and keeps track if overflow
    occurred (in the fixed point implementation), this here is
    simpler and faster but not 1:1 the same what the reference does.

    Non fuzzed samples which trigger any such overflow are welcome, so
    the need and impact of different clipping solutions can be evaluated.

    Fixes : signed integer overflow : 1271483721 + 1073676289 cannot be represented in type 'int'
    Fixes : 18617/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ACELP_KELVIN_fuzzer-5137705679978496

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/g729dec.c
  • Restrict FFmpeg/FFserver stream to logged user

    11 juillet 2018, par Homero Bonomini

    I have a live feed setup with FFmpeg streaming audio/video from a webcam through a FFserver. Also, I have a Apache server running a website with a login page, all on the same machine.

    The question is : how can I protect this live stream over a user authentication, so that my camera doesn’t go public ?

    The goal is to provide the resource over http://myexternalip/camera-for-auth-user, for example. The login routes are working fine, but anyone with the stream link (e.g. http://myexternalip:1099/camera.webm) can watch the stream.

    In the website adding a video element with a local reference, after a user authentication :

    <video controls="controls">
    </video>

    obviously fails, since the remote client tries to access the resource on itself. However, I think some sort of local redirect, or maybe don’t use FFServer at all, would meet my needs, but I couldn’t manage to find out how.

  • avcodec/v4l2 : set sizeimage param for non-raw buffers [fixes #6716]

    4 octobre 2017, par Jorge Ramirez-Ortiz
    avcodec/v4l2 : set sizeimage param for non-raw buffers [fixes #6716]
    

    Some V4L2 drivers fail to allocate buffers when sizeimage is not set
    to a max value. This is indeed the case for s5p-mfc [1]

    Most drivers should be able to calculate this value from the frame
    dimensions and format - or at least have their own default.

    However since this work around should not impact those drivers doing
    the "right thing" this commit just provides such a default.

    The calculations were extracted from the v4l2 driver used to develop
    the ffmpeg v4l2_m2m support [2]. See venc.c and vdec.c

    [1] linux.git/drivers/media/platform/s5p-mfc
    [2] linux.git/drivers/media/platform/qcom/venus/

    • [DH] libavcodec/v4l2_context.c