Advanced search

Medias (91)

Other articles (19)

  • Keeping control of your media in your hands

    13 April 2011, by

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Creating farms of unique websites

    13 April 2011, by

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things): implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Submit bugs and patches

    13 April 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information: the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

On other websites (5690)

  • movenc: Timecode in MP4 Although MP4 does not have a concrete specification to store...

    21 January 2016, by Syed Andaleeb Roomy
    movenc: Timecode in MP4 Although MP4 does not have a concrete specification to store timecode information, the following technical note from Apple describes a way to achieve this via timecode track, similar to how it is done for MOV files.
    

    https://developer.apple.com/library/mac/technotes/tn2174/_index.html

    - Enabled creation of timecode tracks for MP4 in the same way as MOV.
    - Used nmhd as media information header of timecode track of MP4 instead
    of gmhd used in MOV, thus avoiding tcmi also, as recommended above.
    - Bypassed adding source reference field for MP4, as suggested above.

    Issue: https://trac.ffmpeg.org/ticket/4704

    Signed-off-by: Syed Andaleeb Roomy <andaleebcse@gmail.com>
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/movenc.c
  • qsvenc: store the sync point in heap memory

    22 February 2016, by Maxym Dmytrychenko
    qsvenc: store the sync point in heap memory
    

    The QSV runtime expects the sync point address passed to
    MFXVideoENCODE_EncodeFrameAsync() to be valid until
    MFXVideoCORE_SyncOperation().

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

    • [DBH] libavcodec/qsvenc.c
  • hls: Store first_timestamp in units of AV_TIME_BASE

    29 July 2013, by Martin Storsjö
    hls: Store first_timestamp in units of AV_TIME_BASE
    

    When first_timestamp was stored as-is, its actual time base
    wasn’t known later in the seek function.

    Additionally, the logic (from 795d9594cfa) for scaling it
    based on stream_index is flawed - stream_index in the seek
    function only specifies which stream the seek timestamp refers
    to, but obviously doesn’t say anything about which stream
    first_timestamp belongs to.

    In the cases where stream_index was >= 0 and all streams had the
    same time base, this didn’t matter in practice.

    Seeking taking first_timestamp into account is problematic
    when one variant is mpegts (with real timestamps) and one variant
    is raw ADTS (with timestamps only being accumulated packet
    duration), where the variants start at totally different timestamps.

    Signed-off-by: Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/hls.c