Recherche avancée

Médias (91)

Autres articles (92)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP 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 2011

    Le 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 2011

    Contrairement à 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 Zamanian

    I 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 Ansari

    I 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 Silva

    I'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>&#xA;</outputfilename></inputfilename>

    &#xA;&#xA;

    How can we do the same in NodeJS ?

    &#xA;&#xA;

    Please help me on this.&#xA;any sample code or idea is welcome.

    &#xA;