Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (108)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (11748)

  • Revision 6723e34224 : Merge "fix permissions on cpplint.py (0644->0755)" into experimental

    4 mai 2013, par James Zern

    Merge "fix permissions on cpplint.py (0644->0755)" into experimental

  • Merge commit ’f726fc21ef76a8ba3445448066f7b2a687fbca16’

    1er février 2015, par Michael Niedermayer
    Merge commit ’f726fc21ef76a8ba3445448066f7b2a687fbca16’
    

    * commit ’f726fc21ef76a8ba3445448066f7b2a687fbca16’ :
    ogg : Provide an option to offset the serial number

    Conflicts :
    libavformat/oggenc.c

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

    • [DH] doc/muxers.texi
    • [DH] libavformat/oggenc.c
  • Xuggler encoding and muxing

    18 décembre 2012, par HeineyBehinds

    I'm trying to use Xuggler (which I believe uses ffmpeg under the hood) to do the following :

    • Accept a raw MPJPEG video bitstream (from a small TTL serial camera) and encode/transcode it to h.264 ; and
    • Accept a raw audio bitsream (from a microphone) and encode it to AAC ; then
    • Mux the two (audio and video) bitsreams together into a MPEG-TS container

    I've watched/read some of their excellent tutorials, and so far here's what I've got :

    // I&#39;ll worry about implementing this functionality later, but
    // involves querying native device drivers.
    byte[] nextMjpeg = getNextMjpegFromSerialPort();

    // I&#39;ll also worry about implementing this functionality as well;
    // I&#39;m simply providing these for thoroughness.
    BufferedImage mjpeg = MjpegFactory.newMjpeg(nextMjpeg);

    // Specify a h.264 video stream (how?)
    String h264Stream = "???";

    IMediaWriter writer = ToolFactory.makeWriter(h264Stream);
    writer.addVideoStream(0, 0, ICodec.ID.CODEC_ID_H264);
    writer.encodeVideo(0, mjpeg);

    For one, I think I'm close here, but it's still not correct ; and I've only gotten this far by reading the video code examples (not the audio - I can't find any good audio examples).

    Literally, I'll be getting byte-level access to the raw video and audio feeds coming into my Xuggler implementation. But for the life of me I can't figure out how to get them into an h.264/AAC/MPEG-TS format. Thanks in advance for any help here.