Recherche avancée

Médias (0)

Mot : - Tags -/utilisateurs

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

Autres articles (31)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

Sur d’autres sites (5342)

  • FFMPEG - Extract sequence while recording

    26 février 2020, par Vincent Carretero

    I have a ffmpeg process to record a webcam, thats very classic...
    I would like to extract a sequence from the recording file before the end of the record.

    example :
    - my recording start at 10:00 am and finish at 11:00 am
    - at 10:15 am, an event append, and an operator need to watch it quickly,
    - i would like to extract the sequence, and than he can watch at 10:20 am (but the video still recording and the Mp4.file not ended).

    is that possible ?

    thanks !!

  • Android video saves as type "file" instead of video format

    25 novembre 2015, par Marc Rasmussen

    So I have a website where I allow people to upload a video from their phone and send it to their friends.

    Now Iphone works well because it is usually an .mov file. However when I attempt on my android (Samsung galaxy) I get FileType : file

    Howere is an image from my filezilla as to what has been uploaded :

    enter image description here

    The highlighted are the files uploaded from the android device.

    Can anyone tell me why this is happening ? and how I can make sure that it is a video ? and/or convert it into a mp4 format.

  • avcodec/qsvenc : Fix leak and crash when encoding H.264 due to A53_CC

    25 septembre 2021, par Andreas Rheinhardt
    avcodec/qsvenc : Fix leak and crash when encoding H.264 due to A53_CC
    

    Since commit 3bbe0c210b05fc6fbd7b1d4bbd8479db7f2cf957, the Payloads
    array of every QSVFrame leaks as soon as the frame is reused ;
    the leak is small and not very noticeable, but if there is an attempt
    to use said array the ensuing crash is much more noticeable.
    This happens when encoding H.264 with A53 CC side data.

    Furthermore, if said array can not be allocated at all, an AVFrame
    leaks.

    Fix all of this by not allocating the array separately at all ; put it
    in QSVFrame instead and restore the Payloads array upon reusing the
    frame.

    Finally, use av_freep() instead of av_free() to free the payload
    entries.

    Reviewed-by : Xiang, Haihao <haihao.xiang@intel.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/qsv_internal.h
    • [DH] libavcodec/qsvenc.c