
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (87)
-
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
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) (...)
Sur d’autres sites (7133)
-
FFprobe Check Stream Link
13 novembre 2020, par KrasicI am trying to use FFprobe to test if a streaming link is active or not.



For example this is a working streaming link :



ffprobe -loglevel quiet -show_streams rtmp://Lrmh0w.cloud.influxis.com/yoy/_definst_/185




I do get output which mean link is active.



However, once I change link to something not work :



ffprobe -loglevel quiet -show_streams rtmp://Lrmh0w.cloud.influxis.com/yoy/_definst_/18555555555




The command keeps running in background with no result.



Is there a way to bypass this, or is there any ffprobe timeout parameter ?
I couldn't find it from the official website documentation.


-
How to extract these files when using ffmpeg.wasm to output in picture group ?
24 mai 2023, par JveshiHow to extract these files when using ffmpeg.wasm to output in picture group ?


I am working on the video upload function, in which ffmpeg.wasm is used for video encode. The function of video encode has been realized. There is also a function to generate video thumbnails, which needs to be completed.


The video player uses the DPlayer. The player's requirement for thumbnails is to capture sprite images of 100 pictures. So I want to output a picture group, but I can't extract these files, How to solve it ? the relevant code is below.



//The length of the test video is 160 seconds
ffmpeg -i ../../test.mp4 -vf fps=1/(160/100) ../../thumbnail/thumbnail%d.png



var in_name = "upload.mp4";
var out_name = "thumbnail%d.png";

(async () => {
 await ffmpeg.load();
 ffmpeg.FS('writeFile', in_name, await fetchFile(original_video_file));
 await ffmpeg.run('-i', in_name, '-vf' , 'fps=1/(160/100)' , out_name);
 var new_file = ffmpeg.FS('readFile', out_name);
 var thumbnail = new Blob([new_file.buffer], { type: 'image/png' });
 console.log(thumbnail);
})();



The error reported by the above code is


Uncaught (in promise) Error : ffmpeg.FS('readFile', 'thumbnail%d.png') error. Check if the path exists





If you can understand Chinese, here are some of my previous attempts.


https://segmentfault.com/q/1010000043821339


-
fftools/ffmpeg_mux_init : allow mapping a stream group from one of the inputs
15 avril 2024, par James Almer