Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (96)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (8046)

  • avcodec : doxy : Clarify what get_buffer2 must fill in buf[]

    29 avril 2013, par Derek Buitenhuis
    avcodec : doxy : Clarify what get_buffer2 must fill in buf[]
    

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DBH] libavcodec/avcodec.h
  • encode audio ffmpeg c++ with different number of samples between input and output

    4 décembre 2015, par Victor Canezin de Oliveira

    I am trying to make an audio encoder to encode a live stream. I get my audio stream from a webrtc source. The properties for the source audio buffer is(AND I CANNOT CHANGE IT) :

    number of samples: 480
    sample size: 2 bytes
    sample rate: 44100Hz
    number of channels: 1

    I am using MP2 codec to encode the audio. It expects an audio number of samples of 1152(CAN’T CHANGE THAT EITHER), which is different from the source(480)

    I generate the audio frame using :

    frame->nb_samples = 480;
    avcodec_fill_audio_frame(frame, nb_channels(=1), sample_fmt(=AVCodecContext sample_fmt), temp_audio_buffer(=source), 480, 0);

    And I am getting a "chopped" sound. From what I know, It is because of the difference between number of samples in each frame.

    Is there a way to fill the entire frame(1152 samples) somehow ? Will I be able to encode this live stream ?

    thanks

  • avcodec/atrac3plus : Check split point in fill mode 3

    22 octobre 2019, par Michael Niedermayer
    avcodec/atrac3plus : Check split point in fill mode 3
    

    Fixes : index 32 out of bounds for type 'int [32]'
    Fixes : 18350/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ATRAC3P_fuzzer-5643794862571520

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/atrac3plus.c