Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (72)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • Revision 463ba70581 : vp9_rd_pick_inter_mode_sb() reorganization * Reduce the number of short cirtcui

    20 février 2014, par 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

  • avutil/opt : Better print representation of number limits

    24 janvier 2014, par 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
  • Obtain the total number of samples with FFMpeg

    10 octobre 2018, par 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.