
Recherche avancée
Autres articles (112)
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP 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 (...) -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...)
Sur d’autres sites (10307)
-
iOS/Safari MediaRecorder Extremely Big File sizes with FFMPEG Or issue with MediaRecorder
13 janvier 2021, par Dean Van GreunenHaving an issue where the output video size of the converted video is 0.


however i believe that the issue is with the mediarecorder code :


recorder = new MediaRecorder(this.stream, { mimeType: "video/webm;codecs=vp9" });
recorder.ondataavailable = async (e) => {
 const payload = e.data;
 let y = blob2base64(payload);
 // take y and transfer to server, (on server decode base64 string and append that to the video file)
}



I have the MediaRecorder API Enabled via the safari and iOS settings.


for example after processing and saving the data chunks for the video that has been captured. Weird is that the video is blank but when using ffprobe, all the info is correct. so i'm stuffed.


Here is the Captured Video (Before conversion)


after conversion, the new file is 0 bytes big


Note :
this works fine on windows and linux.
issue is only with iOS or MacOS


Not sure what i am doing long.


-
ffmpeg - convert .exr image sequence (linear colorspace) to sRGB ?
27 mai 2016, par Gambit2007I was just wondering - what would be the best way to convert an .exr sequence in a linear colorspace to an .mp4 file with an sRGB colorspace ?
EDIT (more details)
So the sequence i’m trying to convert is a 16bit .exr sequence with an RGB color space. I want to convert it to an H264/H265 .mp4
My full command :ffmpeg -y -loglevel info -threads 0 -f lavfi -i aevalsrc=0
-start_number 0011 -i input.%04d.exr -preset medium -vcodec libx265 -ar 48000 -acodec aac -shortest -strict experimental -sn -vsync 1 -pix_fmt yuv420p -b:v 30000000 -movflags +faststart -metadata title=’test.’ -x265-params
hightier=0:pmode=1:wpp=1:tune=fastdecode:bitrate=30000:fps=60:colorprim=bt709:transfer=bt709:colormatrix=bt709:keyint=360:min-keyint=180:vbv-bufsize=30000:vbv-maxrate=30000:scenecut=0’Thanks !
-
How Opensl es on android control the audio speed ?
6 décembre 2013, par user1882379I use
NDK+FFMPEG
on android to decode an video file, and transfer the decoded pcm data to opensles for play audio .I register the opengles for the pcm format:SLDataFormat_PCM format_pcm;
format_pcm.formatType = SL_DATAFORMAT_PCM;
format_pcm.numChannels = channel;
format_pcm.samplesPerSec = rate * 1000;
format_pcm.bitsPerSample = SL_PCMSAMPLEFORMAT_FIXED_16;
format_pcm.containerSize = SL_PCMSAMPLEFORMAT_FIXED_16;also I convert the decoded pcm data to
AV_SAMPLE_FMT_S16
format usingswr_convert(...)
, but the play audio speed is very fast. but if you use sdl , the play speed is normal. It would be sdl can control the play audio speed, but opensles can not. I do not know whether it is my mistake using opensles or opensles can not control audio speed(need application to control)?