Recherche avancée

Médias (91)

Autres articles (36)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (5398)

  • udp : Provide additional information on getaddrinfo failure

    24 novembre 2015, par Luca Barbato
    udp : Provide additional information on getaddrinfo failure
    
    • [DBH] libavformat/udp.c
  • vaapi_encode_h265 : Insert content light level information

    10 mai 2018, par Haihao Xiang
    vaapi_encode_h265 : Insert content light level information
    

    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] libavcodec/vaapi_encode_h265.c
  • How to get frame information from fragmented mp4

    17 novembre 2020, par Duke Atista

    I'm using the following command to generate fmp4 files

    &#xA;

    ffmpeg -rtsp_transport tcp -i rtsp://someuser:somepassword@somedomain:someport/Streaming/Channels/101 -acodec copy -vcodec copy -hls_segment_type fmp4 -hls_time 2 -hls_list_size 10 -hls_flags delete_segments&#x2B;append_list&#x2B;split_by_time -hls_playlist_type event test.m3u8

    &#xA;

    I need to know the exact duration and frame count of each fragment. Unfortunately -vstats appears to be ignored.

    &#xA;

    I tried to probe one of the segments using

    &#xA;

    ffprobe -show_frames ./test0.m4s

    &#xA;

    But I get

    &#xA;

    [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb68e80b000] could not find corresponding track id 1 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb68e80b000] could not find corresponding trex (id 1) [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb68e80b000] could not find corresponding track id 0 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb68e80b000] trun track id unknown, no tfhd was found [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb68e80b000] error reading header ./test0.m4s: Invalid data found when processing input

    &#xA;

    I'm assuming that is because the initialisation segment has not been loaded but I can't find the option to do so.

    &#xA;

    If I try probing the initialisation segment with

    &#xA;

    ffprobe -show_frames ./init.mp4

    &#xA;

    I get no frame information and the error

    &#xA;

    Could not find codec parameters for stream 0 (Video: h264 (avc1 / 0x31637661), none, 2560x1440): unspecified pixel format Consider increasing the value for the &#x27;analyzeduration&#x27; and &#x27;probesize&#x27; options

    &#xA;

    Would appreciate any help.

    &#xA;