Advanced search

Medias (91)

Other articles (23)

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

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

  • List of compatible distributions

    26 April 2011, by

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

On other websites (6060)

  • Obtain the total number of samples with FFMpeg

    10 October 2018, by Henricus V.

    Currently my application reads audio files based on a while-realloc loop:

    // Pseudocode
    float data* = nullptr;
    int size = 0;
    AVFrame* frame;
    while(readFrame(formatContext, frame))
    {
       data = realloc(data, size + frame.nSamples);
       size += frame.nSamples;
       /* Read frame samples into data */
    }

    Is there a way to obtain the total number of samples in a stream at the beginning? I want to be able to create the array with new[] instead of malloc.

  • avutil/opt: Better print representation of number limits

    24 January 2014, by João Bernardo
    avutil/opt: Better print representation of number limits
    

    Signed-off-by: João Bernardo Oliveira <jbvsmo@gmail.com>
    Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavutil/opt.c
  • Revision 463ba70581: vp9_rd_pick_inter_mode_sb() reorganization * Reduce the number of short cirtcui

    20 February 2014, by Alex Converse

    Changed Paths:
     Modify /vp9/encoder/vp9_block.h


     Modify /vp9/encoder/vp9_rdopt.c



    vp9_rd_pick_inter_mode_sb() reorganization

    * Reduce the number of short cirtcuit checks by pre-computing and combining like
    checks.
    * Postpone non-trivial initializations until after the shortcircuits are
    evaluated.
    * Add some consts and const pointers.

    No change to the actual results of the call or output of the encoder.

    Change-Id: Ie44c4702aec6e08cfe0b8b0ba3cd6b57206478d1