Recherche avancée

Médias (91)

Autres articles (28)

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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (4930)

  • lavf : deprecate av_stream_get_end_pts()

    17 août 2022, par Anton Khirnov
    lavf : deprecate av_stream_get_end_pts()
    

    According to its documentation it returns "pts of the last muxed packet
    + its duration", but the value it actually returns right now is
    (possibly guessed) dts after muxer-internal bitstream filtering (if
    any).

    This function was added for ffmpeg.c, but it is not used there anymore.
    Since the value it returns is ill-defined and so inappropriate for any
    serious use, deprecate it.

    • [DH] doc/APIchanges
    • [DH] libavformat/avformat.h
    • [DH] libavformat/mux_utils.c
    • [DH] libavformat/version_major.h
  • avcodec/vp6 : Don't reload unnecessarily often in get_vlc2()

    17 avril, par Andreas Rheinhardt
    avcodec/vp6 : Don't reload unnecessarily often in get_vlc2()
    

    The VLC trees used here have very few different codes
    and are therefore guaranteed to not be very deep : The AC/DC
    VLCs have 12 elements and therefore a depth <= 11 whereas
    the run VLCs have only nine elements and therefore a depth <= 8.
    This allows to reduce the worst-case number of reloads for
    reading a VLC code.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/vp6.c
  • Android : How to convert WAV/PCM to another audio format without MediaCodec API

    3 octobre 2013, par khelkun

    I've searched around the web and stackoverflow during a long time about this subject. I know it has been discussed many times but I'm looking for a friendly opinion on my use case.

    I have a vocal dictation application which uses android.media.AudioRecord. It allows me to edit the recorded raw PCM buffer : insert a new record inside it, delete a certain period in the record, append a new record at the end. The result is a WAV file, but it's a bit too big file for my needs, so I want to convert it to smaller file format.

    android.media.MediaCodec could have been the solution, but it requires API level 16 which is a too high restriction in my situation.

    It sounds to me that I only have 2 options :

    1. Use the NDK and an android portage of ffmpeg like the guardian project android-ffmpeg-java. But this solution sounds a bit too hard for me so far.

    2. Recording with android.media.MediaRecorder to output an audio 3GPP file encoded with the AMR_NB encoder. Then I'll have to understand this 3GPP file header and the AMR_NB format in details to be able to perform the audio editing operations on my record.

    I must also add that creating a zip file of the WAV file is not a valid option for me.

    Does someone know another option please ? And is option 2. actually possible to achieve ?

    Thanks for your time !