Recherche avancée

Médias (0)

Mot : - Tags -/acrobat

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (47)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • Revision c6ba3a3d85 : Further change to mv reference search. This experimental change reorders the se

    3 janvier 2013, par Paul Wilkins

    Changed Paths : Modify /vp9/common/vp9_mvref_common.c Further change to mv reference search. This experimental change reorders the search so that all possible references that match the target reference frame are tested first and these in order of distance from the current block. These will (...)

  • Revision 1e3dd49fe3 : Don't use hybrid transform (ADST) for superblocks. This is in line with other c

    13 novembre 2012, par Ronald S. Bultje

    Changed Paths : Modify /vp9/common/blockd.h Don't use hybrid transform (ADST) for superblocks. This is in line with other cases where we disable ADST if prediction size and transform size don't match. Before this patch, the RD loop will use ADST for superblocks, but frame (...)

  • decoding AAC in ffmpeg android

    12 octobre 2012, par synthcat

    I am attempting to decode an M4A file on an Android device using AAC.

    I use the following code to initialize the codec.

    codec = avcodec_find_decoder(CODEC_ID_AAC);
    c= avcodec_alloc_context();
    avcodec_open(c, codec);

    However, when I later attempt to decode a frame using :

    len = avcodec_decode_audio3(c, (short *)mOutbuf, &out_size, &avpkt);

    I get -1 (indicating an error) and the following on the log.

    10-11 16:30:01.115 : INFO/M4ADecoder(5260) : channel element 0.0 is not allocated

    10-11 16:30:02.195 : INFO/M4ADecoder(5260) : channel element 2.0 is not allocated

    10-11 16:30:03.295 : INFO/M4ADecoder(5260) : channel element 0.6 is not allocated

    10-11 16:30:07.645 : INFO/M4ADecoder(5260) : Sample rate index in program config element does not match the sample rate index configured by the container.
    10-11 16:30:07.655 : INFO/M4ADecoder(5260) : Number of bands (3) exceeds limit (2).

    Are there any other steps I need to do when setting up the codec ? Do I need to preparse the file before sending data to the AAC decoder ?

    The same file works fine with the latest ffmpeg code on Mac OSX (i.e., ffmpeg -i filename.m4a").

    Thanks in advance for any help you can provide.