Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

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

Autres articles (96)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (8706)

  • vaapi : fix usage of invalid buffer ids.

    28 juillet 2015, par Gwenole Beauchesne
    vaapi : fix usage of invalid buffer ids.
    

    Invalid buffer ids are defined by VA_INVALID_ID. Use that through out
    vaapi_*.c support files now that we have private data initialized and
    managed by libavcodec. Previously, the only requirement for the public
    vaapi_context struct was to be zero-initialized.

    This fixes support for 3rdparty VA drivers that strictly conform to
    the API whereby an invalid buffer id is VA_INVALID_ID and the first
    valid buffer id can actually be zero.

    Signed-off-by : Gwenole Beauchesne <gwenole.beauchesne@intel.com>

    • [DH] libavcodec/vaapi.c
  • vaapi_decode : Remove vestigial unmap code

    20 octobre 2016, par Mark Thompson
    vaapi_decode : Remove vestigial unmap code
    

    The buffer map/unmap code was in an early version of this before it
    was committed, but the unmap was never removed. While wrong, this
    was harmless (and therefore unnoticed) because the buffers can’t be
    mapped at this point - all drivers just did nothing with the call.

    • [DBH] libavcodec/vaapi_decode.c
  • Is FFmpegAudioDecoder supposed to reinitialize upon append of new init segment

    14 novembre 2023, par martin

    I am attempting to switch audio tracks but when switching the FFmpegAudioDecoder never reinitializes like it does with video tracks of differing resolutions. I am not certain if this is the intended behavior of FFmpegAudioDecoder and would love to learn more about the expected behavior.

    &#xA;

    When switching audio tracks I end up calling the following operations :

    &#xA;

    if sourceBuffer.getIsUpdate() {sourceBuffer.abort()}&#xA;sourceBuffer.remove(0-videoDuration)&#xA;initSegmentDataStream = fetch init segment of new audio representation&#xA;sourceBuffer.appendBuffer(initSegmentDataStream)&#xA;

    &#xA;

    These are the Media tab messages from initial video load

    &#xA;

    ChunkDemuxer&#xA;Selected FFmpegAudioDecoder for audio decoding, config: codec: aac, profile: unknown, bytes_per_channel: 2, channel_layout: STEREO, channels: 2, samples_per_second: 48000, sample_format: Signed 16-bit, bytes_per_frame: 4, seek_preroll: 0us, codec_delay: 0, has extra data: false, encryption scheme: Unencrypted, discard decoder delay: false, target_output_channel_layout: STEREO, target_output_sample_format: Unknown sample format, has aac extra data: true&#xA;Cannot select DecryptingVideoDecoder for video decoding&#xA;Cannot select VDAVideoDecoder for video decoding&#xA;Cannot select VpxVideoDecoder for video decoding&#xA;Selected Dav1dVideoDecoder for video decoding, config: codec: av1, profile: av1 profile main, level: not available, alpha_mode: is_opaque, coded size: [1280,720], visible rect: [0,0,1280,720], natural size: [1280,720], has extra data: false, encryption scheme: Unencrypted, rotation: 0&#xB0;, flipped: 0, color space: {primaries:BT709, transfer:BT709, matrix:BT709, range:LIMITED}&#xA;Dropping audio frame (DTS 0us PTS -105375us,-62709us) that is outside append window [0us,9223372036854775807us).&#xA;Dropping audio frame (DTS 42666us PTS -62708us,-20042us) that is outside append window [0us,9223372036854775807us).&#xA;Truncating audio buffer which overlaps append window start. PTS -20041us frame_end_timestamp 22625us append_window_start 0us&#xA;Effective playback rate changed from 0 to 1&#xA;

    &#xA;

    For comparison this is what I get when appending the init segment of a different video resolution / track

    &#xA;

    video decoder config changed midstream, new config: codec: av1, profile: av1 profile main, level: not available, alpha_mode: is_opaque, coded size: [1920,1080], visible rect: [0,0,1920,1080], natural size: [1920,1080], has extra data: false, encryption scheme: Unencrypted, rotation: 0&#xB0;, flipped: 0, color space: {primaries:BT709, transfer:BT709, matrix:BT709, range:LIMITED}&#xA;&#xA;

    &#xA;

    Chrome version : Version 119.0.6045.123 (Official Build)

    &#xA;

    When appending the new init segment of an audio track I was expecting the FFmpegAudioDecoder to be reinitialized like the Dav1dVideoDecoder does for video tracks

    &#xA;