Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (60)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (9801)

  • What type of stream does AVMediaType AVMEDIA_TYPE_NB represent

    6 juillet 2022, par Bernie

    The FFmpeg AVMediaType enum contains AVMEDIA_TYPE_NB.
What type of data stream does this contain ?
The name isn't very descriptive and the documentation doesn't describe it either.

    


    Search results seem to indicate that it's used as a catch all value to remove packets. with a codec_type of AVMEDIA_TYPE_NB ever exist ?

    


  • Convert Blob audio file to mp3 type in typescript

    6 avril 2022, par I. Albuquerque

    I'm trying to convert a blob audio file to .mp3 type which is generated from MediaRecorder it is returning with webm type and I have tried other types in MimeType(attribute in MediaRecorder to set the type) but they are not supported so I have tried ffmpeg npm library but it was asking for path of the file but i'm not saving it so that also didn't work for me. Any suggestion and answer that will help !!

    


    Here is how i get audio

    


    getAudio(){
  navigator.mediaDevices.getUserMedia({ audio: true})
    .then( stream => {
      console.log(stream)
      this.mediaRecord = new MediaRecorder(stream)

      this.mediaRecord.ondataavailable = (data: { data: any; }) => {
        console.log(data)
        this.chunks.push(data.data)
      }

      this.mediaRecord.onstop = () => {
        const blob = new Blob(this.chunks, { type: 'audio/mp3'})
        const reader = new window.FileReader()
        reader.readAsDataURL(blob)
        reader.onloadend = () => {
          const teste:any = this.$el.querySelector('#teste')
          teste.src = reader.result //render.result e o local onde o audio fica armazenado
          this.ArquivoAudio = blob
          console.log(reader.result)
        }
      }
    }, err => {
      console.log(err)
      alert('voce deve permitir a captura de audio')
    })
},


    


  • Revision 3819f11b28 : Use b_width_log2_ in partition type parse Replace mi_width/height_log2 with b_w

    16 mai 2013, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_bitstream.c



    Use b_width_log2_ in partition type parse

    Replace mi_width/height_log2 with b_width/height_log2 in partition
    type parsing at bit-stream writing stage. This allows parsing
    resolution at 4x4 block level and makes the 4x4/4x8/8x4 partition
    coding consistent with other superblock types.

    Change-Id : I7db3617ea042e0db2dc898999b0c323bff91a22f