Recherche avancée

Médias (91)

Autres articles (52)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (8648)

  • Decoding AAC in FFmpeg for Android

    13 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").

  • Build FFMPEG 1.2 (Code name magic) for android

    3 juillet 2013, par Jijo Varghese

    I'm working on a multimedia project. Where i need to concatenate more than one videos. I found that ffmpeg concat demuxer has been added to ffmpeg fire flower (version 1.1). Somebody help me out on, how to builid ffmpeg 1.1 / 1.2 for android ?.

    I've checked all other alternatives, None succeeded. Thanks in advance !!

  • ffmpeg, built for android unable to read input with spaces [closed]

    29 avril 2013, par Jijo Varghese

    I have been working on an android multimedia application, where i'm using ff-mpeg 0.11.1 (code name : Love). Ff-mpeg 0.11.1 has been built according to the guardian project. This project is working very much fine as a compressor/converter unless i'm inputting a video path name without space in it. Any idea what could be the reason behind this malfunctioning ? Thanks in advance.