Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (97)

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

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (9752)

  • aacdec : move from scalefactor ranged arrays to flat arrays

    14 mai 2024, par Lynne
    aacdec : move from scalefactor ranged arrays to flat arrays
    

    AAC uses an unconventional system to send scalefactors
    (the volume+quantization value for each band).
    Each window is split into either 1 or 8 blocks (long vs short),
    and transformed separately from one another, with the coefficients
    for each being also completely independent. The scalefactors
    slightly increase from 64 (long) to 128 (short) to accomodate
    better per-block-per-band volume for each window.

    To reduce overhead, the codec signals scalefactor sizes in an obtuse way,
    where each group's scalefactor types are sent via a variable length decoding,
    with a range.
    But our decoder was written in a way where those ranges were carried through
    the entire decoder, and to actually read them you had to use the range.

    Instead of having a dedicated array with a range for each scalefactor,
    just let the decoder directly index each scalefactor.

    This also switches the form of quantized scalefactors to the format
    the spec uses, where for intensity stereo and regular, scalefactors
    are stored in a scalefactor - 100 form, rather than as-is.

    USAC gets rid of the complex scalefactor handling. This commit permits
    for code sharing between both.

    • [DH] libavcodec/aac/aacdec.c
    • [DH] libavcodec/aac/aacdec.h
    • [DH] libavcodec/aac/aacdec_dsp_template.c
  • detected problems with app native libraries libutility.so : text relocations

    28 mars 2019, par Everyone Needs some Help

    Hi everyone I try to use this project enter link description here for my App , its a custom camera for record video and edit it with ffmepg . Preview here , Second preview
    The problem is when I try to use it on my app I got this error libutility.so : text relocations , I make some research and I find the problem it looks like I can usethis project with a TargetSdk Higher than 22 . So I would like to know if someone here have a solution different than downgrade my app to 22 or if someone know a better custom camera who can edit video just as this one on android , thanks .

  • Install FFMPEG on Heroku

    13 mars 2017, par Max Zemsky

    I am trying to install FFMPEG to work with my NodeJs server.
    I am using heroku-buildpack-multi plugin :
    heroku config:set BUILDPACK_URL=https://github.com/ddollar/heroku-buildpack-multi.git

    I have created a .buildpacks (without extesion) file at my github repository. This is what it includes :

    https://github.com/jayzes/heroku-buildpack-ffmpeg
    https://github.com/heroku/heroku-buildpack-nodej

    Each time i am trying to push my changes to heroku, this is what i get :

    -----> Fetching custom git buildpack... failed
    !     Push rejected, error fetching custom buildpack

    Unforlunatly, there is not much information regarding ffmpeg installtion
    on heroku. What am i missing here ?