Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (83)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (12222)

  • avcodec/get_buffer : Don't get AVPixFmtDescriptor unnecessarily

    15 août 2022, par Andreas Rheinhardt
    avcodec/get_buffer : Don't get AVPixFmtDescriptor unnecessarily
    

    It is unused since 3575a495f6dcc395656343380e13c57d48b9f976
    (and the error message is dangerous : av_get_pix_fmt_name(format)
    returns NULL iff av_pix_fmt_desc_get(format) returns NULL
    and using a NULL string for %s would be UB).

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/get_buffer.c
  • avcodec/smcenc : Move PutByteContext to stack

    19 novembre 2021, par Andreas Rheinhardt
    avcodec/smcenc : Move PutByteContext to stack
    

    This context is transient, so putting it on the stack is more natural.
    Also reduces codesize : 24E6->2296 B with GCC 10 and -O3.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/smcenc.c
  • Fragmented mp4 file is not played by MSE

    19 mai 2020, par Daniel

    I created a fragmented mp4 file with ffmpeg (from h264), and removed the first 6 moof and mdat pairs.

    &#xA;&#xA;

    So now it still has the correct order of boxes : ftyp, moov, moof, mdat, moof, mdat, ..., but the first moof packet has the sequenceNumber of 7.

    &#xA;&#xA;

    VLC can play it fine, 'Movies & TV' can also play, but the first some seconds are black.

    &#xA;&#xA;

    If I drag the file into the browser, it can also play it fine.

    &#xA;&#xA;

    It is however not being displayed at all in the browser (Chrome) if I feed it via MSE.

    &#xA;&#xA;

    No error messages are printed, and in the media-internals' log it can be seen that the videoplayer starts playing in the first second and suspends it only in the 18th second :

    &#xA;&#xA;

    Timestamp   Property    Value&#xA;00:00:00.000    origin_url  "https://localhost:8443/"&#xA;00:00:00.000    kFrameUrl   "https://localhost:8443/websocket/videodemo.html"&#xA;00:00:00.000    kFrameTitle "WebSocket and MSE demo"&#xA;00:00:00.000    url "blob:https://localhost:8443/3b4d4b1a-7c08-4136-95fe-dabc14fba95f"&#xA;00:00:00.000    info    "ChunkDemuxer"&#xA;00:00:00.000    pipeline_state  "kStarting"&#xA;00:00:01.067    kVideoTracks    [{"alpha mode":"is_opaque","codec":"h264","coded size":"1600x900","color space":"{primaries:BT709, transfer:BT709, matrix:BT709, range:LIMITED}","encryption scheme":"Unencrypted","flipped":false,"has_extra_data":false,"natural size":"1600x900","profile":"h264 main","rotation":"0&#xB0;","visible rect":"0,0 1600x900"}]&#xA;00:00:01.067    debug   "Video rendering in low delay mode."&#xA;00:00:01.070    info    "Using D3D11 device for DXVA"&#xA;00:00:01.075    kIsVideoDecryptingDemuxerStream false&#xA;00:00:01.075    kVideoDecoderName   "MojoVideoDecoder"&#xA;00:00:01.075    kIsPlatformVideoDecoder true&#xA;00:00:01.075    info    "Selected MojoVideoDecoder for video decoding, config: codec: h264, profile: h264 main, alpha_mode: is_opaque, coded size: [1600,900], visible rect: [0,0,1600,900], natural size: [1600,900], has extra data: false, encryption scheme: Unencrypted, rotation: 0&#xB0;, flipped: 0, color space: {primaries:BT709, transfer:BT709, matrix:BT709, range:LIMITED}"&#xA;00:00:01.075    pipeline_state  "kPlaying"&#xA;00:00:01.067    duration    "unknown"&#xA;00:00:18.926    pipeline_state  "kSuspending"&#xA;00:00:18.926    pipeline_state  "kSuspended"&#xA;00:00:18.927    event   "SUSPENDED"&#xA;

    &#xA;&#xA;

    Here is the video file for reference.

    &#xA;&#xA;

    What is the problem with this file, why is it not displayed in the browser with MSE ?

    &#xA;