
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (52)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (3215)
-
What type of stream does AVMediaType AVMEDIA_TYPE_NB represent
6 juillet 2022, par BernieThe 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. AlbuquerqueI'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 HanChanged Paths :
Modify /vp9/encoder/vp9_bitstream.c
Use b_width_log2_ in partition type parseReplace 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