Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (69)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (8091)

  • How to render video and audio

    25 octobre 2011, par pic11

    I am trying to implement my own media player. What is the best way to render video and audio ? At this point I am thinking to use SurfaceView and AudioTrack classes, but not sure if it is the best option. I am interested in SDK and NDK solutions.

    File output on regular desktop is non-blocking, that is OS takes care of buffering and actual disk writes are asynchronous to the thread that initiates the output. Does the same principle apply to video and audio output ? If not, I would need to run a separate thread to handle output asynchronously from decoding/demuxing.

    What free software decoders are available for android ? I am thinking to use ffmpeg. Can relatively recent (say, top 30% in terms of CPU power) tablet handle 1,280×720 and 1,920×1,080 formats in software mode ?

  • imdct15 : replace the FFT with a faster PFA FFT algorithm

    4 janvier 2017, par Rostislav Pehlivanov
    imdct15 : replace the FFT with a faster PFA FFT algorithm
    

    This commit replaces the current inefficient non-power-of-two FFT with a
    much faster FFT based on the Prime Factor Algorithm.
    Although it is already much faster than the old algorithm without SIMD,
    the new algorithm makes use of the already very throughouly SIMD’d power
    of two FFT, which improves performance even more across all platforms
    which we have SIMD support for.

    Most of the work was done by Peter Barfuss, who passed the code to me to
    implement into the iMDCT and the current codebase. The code for a
    5-point and 15-point FFT was derived from the previous implementation,
    although it was optimized and simplified, which will make its future
    SIMD easier. The 15-point FFT is currently using 6% of the current
    overall decoder overhead.

    The FFT can now easily be used as a forward transform by simply not
    multiplying the 5-point FFT’s imaginary component by -1 (which comes
    from the fact that changing the complex exponential’s angle by -1 also
    changes the output by that) and by multiplying the "theta" angle of the
    main exptab by -1. Hence the deliberately left multiplication by -1 at
    the end.

    FATE passes, and performance reports on other platforms/CPUs are
    welcome.

    Performance comparisons :

    iMDCT, PFA :
    101127 decicycles in speed, 32765 runs, 3 skips
    iMDCT, Old :
    211022 decicycles in speed, 32768 runs, 0 skips

    Standalone FFT, 300000 transforms of size 960 :
    PFA Old FFT kiss_fft libfftw3f
    3.659695s, 15.726912s, 13.300789s, 1.182222s

    Being only 3x slower than libfftw3f is a big achievement by itself.

    There appears to be something capping the performance in the iMDCT side
    of things, possibly during the pre-stage reindexing. However, it is
    certainly fast enough for now.

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavcodec/imdct15.c
    • [DH] libavcodec/imdct15.h
  • libavcodec/ppc/hpeldsp_altivec.c : fix ff_put_pixels16_altivec() put_no_rnd_pixels16_...

    7 novembre 2014, par Rong Yan
    libavcodec/ppc/hpeldsp_altivec.c : fix ff_put_pixels16_altivec() put_no_rnd_pixels16_xy2_altivec() put_no_rnd_pixels8_xy2_altivec() avg_pixels8_altivec() avg_pixels8_xy2_altivec() put_pixels16_xy2_altivec() put_pixels8_xy2_altivec() ff_avg_pixels16_altivec() for POWER LE
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/ppc/hpeldsp_altivec.c