Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (102)

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

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (9865)

  • How to set profile compatibility and level indication of an fMP4 using ffmpeg ?

    27 novembre 2014, par Pablo Montilla

    I’m using ffmpeg to generate a fragmented mp4 stream that will be consumed by an HTML5 player using MSE. I think I have a correctly formatted mp4 stream of data with an empty moov at the start and a series of moof+mdat for the video fragments. What I’m stuck is with the codec that’s being received by Chrome.

    chrome ://media-internals has this to say :

    00:00:00 00 pipeline_state  kCreated
    00:00:00 00 EVENT           PIPELINE_CREATED
    00:00:00 00 EVENT           WEBMEDIAPLAYER_CREATED
    00:00:00 00 url             blob:http%3A//localhost/3388b7f1-5567-4d76-a585-0b247affd16a
    00:00:00 00 pipeline_state  kInitDemuxer
    00:00:07 68 error           Video codec: avc1.4d401e

    From which I gather the problem is with the encoded data, which should be in avc1.4d0020 as its specified in the javascript.

    I’ve seen the answer to html5 video tag codecs attribute, which tells me I need to reset profile_compatibility and AVCLevelIndication, but I couldn’t find an option to do that.

    Here’s the command line I’m using (the pipe is read and sent to the web page using web sockets) :

    ffmpeg -re -i Input.mp4 -map 0:0 -y -c:v libx264 -preset veryslow -x264opts intra-refresh=1 -tune psnr -refs 1 -b:v 1500k -bf 0 -g 8 -b-pyramid none -f mp4 -movflags empty_moov+omit_tfhd_offset+frag_keyframe -frag_duration 1000000 -profile:v main -iods_video_profile 0 -flags +loop \\.\pipe\FeedPipe

    So the question is, can I set the profile_compatiblity and AVCLevelIndictation in the ffmpeg command line ?

  • vdpau : add AV_HWACCEL_FLAG_IGNORE_LEVEL to skip the codec level check

    14 octobre 2014, par Rémi Denis-Courmont
    vdpau : add AV_HWACCEL_FLAG_IGNORE_LEVEL to skip the codec level check
    

    Decoding acceleration may work even if the codec level is higher than
    the stated limit of the VDPAU driver. Or the problem may be considered
    acceptable by the user. This flag allows skipping the codec level
    capability checks and proceed with decoding.

    Applications should obviously not set this flag by default, but only if
    the user explicitly requested this behavior (and presumably knows how
    to turn it back off if it fails).

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] doc/APIchanges
    • [DBH] libavcodec/avcodec.h
    • [DBH] libavcodec/vdpau.c
    • [DBH] libavcodec/vdpau.h
    • [DBH] libavcodec/vdpau_internal.h
    • [DBH] libavcodec/version.h
  • avcodec : add stream-level stereo3d side data

    23 juillet 2014, par Vittorio Giovara
    avcodec : add stream-level stereo3d side data
    
    • [DH] doc/APIchanges
    • [DH] libavcodec/avcodec.h
    • [DH] libavcodec/utils.c
    • [DH] libavcodec/version.h
    • [DH] libavformat/dump.c