
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
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 (105)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)
Sur d’autres sites (12529)
-
Rendering video by ffmpeg.wasm in browser occured an error
15 septembre 2022, par James BorWhen a local video renderer uses the ffmpeg.wasm library in the Chrome browser, very often an error with the SBOX_FATAL_MEMORY_EXCEEDED code occurs during the rendering process. The standard command set is used. The code below is half fake because it is very long, but describes an approximate action algorithm. Computer performance and RAM capacity do not affect the video, files used - minimal size. Has anyone experienced this and how can we solve it ?
Error screen


const videoGenerate = async (project) => {
 const ffmpeg = createFFmpeg({
 corePath: 'ffmpeg/ffmpeg-core.js',
 workerPath: 'ffmpeg/ffmpeg-core.worker.js'
 });
 await loadFfmpeg(ffmpeg);
 project.projectName = "Default";
 project.fileType = "video/mp4";

 const resultVideo = {
 title: `${project.projectName}ConcatenatedVideo.mp4`,
 };
 // *For fetchFile method and ffmpeg.FS('writeFile', title, file);
 await uploadObjects(project.projectName, ffmpeg);
 // *
 const command = ['-i', project.video, resultVideo.title];
 await ffmpeg.run(...command);
 await ffmpeg.FS("unlink", resultVideo.title);
 resultVideo["blob"] = ffmpeg.FS('readFile', title);
 return resultVideo.blob;
};



These dependencies are used : "@ffmpeg/core" : " 0.8.5", "@ffmpeg/ffmpeg" : " 0.9.7". Upgrading the library to the latest version does not work either.


-
http: Reset compressed header flag when starting to read a request
20 juillet 2017, par Jacek Jendrzej -
When i try to convert live http streams to .flv file i am getting this error
11 novembre 2014, par user3932031C :\Program Files\ffmpeg>ffmpeg -re -i
http://82.135.224.134/udp/239.100.2.20:1234
-c:v libx264 -b:v 5M -pix_fmt yuv420p -c:a:0 libfdk_aac -b:a:0 480k -f flv abc.flvI am running above command. I am getting folloing error:
[h264 @ 0154f300]sps_id out of range
[h264 @ 0154f300]non-existing SPS 32 referenced in buffering period
[h264 @ 0154f300]non-existing PPS referenced
[h264 @ 0154f300]sps_id out of range
[h264 @ 0154f300]non-existing SPS 32 referenced in buffering period
[h264 @ 0154f300]non-existing PPS 0 referenced
[h264 @ 0154f300]decode_slice_header error
[h264 @ 0154f300]no frame!
.
.
.
.
.
[mpegts @ 023c1700]max_analyze_duration reached
[mpegts @ 023c1700]Estimating duration from bitrate, this may be inaccurate
Input #0, mpegts, from 'http://82.135.224.134/udp/239.100.2.20:1234':
Duration: N/A, start: 63180.879433, bitrate: 62 kb/s
Program 1
Stream #0.0[0x3e9]: Video: h264, yuv420p, 720x576 [PAR 1:1 DAR 5:4], 38.11 f
ps, 25 tbr, 90k tbn, 50 tbc
Stream #0.1[0x3ea]: Audio: aac, 22050 Hz, stereo, s16, 62 kb/s
Unrecognized option 'c:v'How can i solve this error ? Please help me.