
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (92)
-
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 (...) -
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
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 (7206)
-
Targeting a specific file size in vp8+vorbis encoding using ffmpeg
4 août 2021, par Mohammad ZamanianI have a couple videos that I want to encode to vp8 for video and Vorbis for audio. This is the FFmpeg command I'm currently using :


ffmpeg -y -i input.mp4 -map 0:v:0 -s 640x360 -filter:v fps=20 -c:v libvpx -crf 10 -b:v 200k -map 0:a:0 -b:a 48k -c:a libvorbis output.webm



I want to have control over output file size and limit it to 3MB without clipping the video, but instead, lose quality. so I cant use
-fs 3MB
.

How can I determine the file size based on video and audio bitrates and duration ?


How can I limit the file size without clipping ?


-
Reduce apk size when using ffmpeg
26 juillet 2021, par Anas AnsariI am building an app that can trim a video into multiple segments , for that purpose i have used ffmpeg library


This command does all the work


ffmpeg -i testfile.mp4 -c copy -f segment -segment_time 1200 testfile_piece_%02d.mp4


But including this library increased my app size upto 45 mb


I want to reduce my apk size


I want help in


- 

- Deleting non required libs like x86 , x86_64
- or Building ffmpeg with required libs only but i dont know which lib is required for segment purpose
- and also I dont know how to build ffmpeg from source code








I am using this library 'com.arthenica:mobile-ffmpeg-min-gpl:4.4.LTS'


-
How to reduce video size using node ffmpeg
11 octobre 2022, par Chanaka De SilvaI'm using following npm package in NodeJS application.
What I need to do is reduce the size of videos.
My videos are in mp4 format.
Is there any way to reduce size of those videos using node-ffmpeg ?
https://www.npmjs.com/package/ffmpeg



There are not good answers or samples. I followed this code some steps and idea, but no good. fluent ffmpeg size output option not working



In normal ffmpeg, we can do like this.



ffmpeg -i <inputfilename> -s 640x480 -b:v 512k -vcodec mpeg1video -acodec copy <outputfilename>
</outputfilename></inputfilename>



How can we do the same in NodeJS ?



Please help me on this.
any sample code or idea is welcome.