
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (32)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
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. -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (4529)
-
Reducing FFmpeg dlls to only what is used ?
1er juin 2021, par XylemFlowI have written Windows software that calls the FFmpeg dlls to encode a sequence of images in a few different formats (animated gif, animated png, mpeg4, wmv, webm). I need to provide the dlls with my software but they significantly increase the download size. Even after zipping everything they increase the size from around 5MB to around 20MB. This isn't a huge problem but I'd like to get the download size down as much as possible.


How easy is it to do this and by roughly how much would I be able to reduce them ? Note that I don't need any decoders and am only encoding those 5 formats. I'm not using any special filters and the encoded videos don't have sound. I'd like to know if it's worth it before I start trying to compile the FFmpeg source and playing with configuration flags.


-
Error trying to install FFmpeg on Oracle Cloud VM Linux [closed]
14 mai 2022, par lucasrvimieiroI'm trying to host a discord bot using Oracle Cloud but I need to install the FFmpeg extension for it to be able to play music. I have absolutely no experience with Linux at all but I was able to run the bot normally after a few tutorials. Everything is working fine except for the FFmpeg installation.


I already tried following these guides :
https://computingforgeeks.com/how-to-install-ffmpeg-on-centos-rhel-8/
https://techviewleo.com/install-ffmpeg-on-rocky-almalinux-oracle-linux/


However I keep getting the error :




Errors during downloading metadata for repository 'nux-dextop' :


- 

- Status code : 404 for http://mirrors.coreix.net/li.nux.ro/nux/dextop/el7/aarch64/repodata/repomd.xml
(IP : xx.xx.xxx.xx)
- Status code : 404 for http://li.nux.ro/download/nux/dextop/el7/aarch64/repodata/repomd.xml
(IP : xxx.xx.xx.xxx) Error : Failed to download metadata for repo
'nux-dextop' : Cannot download repomd.xml : Cannot download
repodata/repomd.xml : All mirrors were tried








when executing :


sudo dnf -y install ffmpeg



I cannot find any solutions online. Is it even possible to install FFmpeg there ? The VM is running Oracle-Linux-8.5-aarch64-2022.04.04-0. I'm using Bitvise SSH Client to connect to the terminal.


-
Pushing data while downloading to ffmpeg
5 avril 2019, par Nguyễn Thành ĐạtI have try to relivestream video to facebook with source from youtube.
I use the ytdl to download video from youtube.
I want to during the video download process, i will livestreamWhen i run my source in blow by nodejs then the error appears :
var url = 'https://www.youtube.com/watch?v=CTL_5dqDOyc';
var ffmpeg = spawn('ffmpeg', ['-re', '-i', 'pipe:0', '-i', 'logo.png',' acodec', 'libmp3lame', '-ar', '44100', '-b:a', '128k', '-profile:v', 'baseline', '-s', '854x480', '-bufsize', '6000k', '-vcodec', 'libx264', '-preset', 'veryfast', '-g', '30', '-r', '30', '-f', 'flv', 'rpmt link']);
ytdl(url).pipe(ffmpeg.stdin);