Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (22)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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

  • 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) (...)

  • 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 (...)

Sur d’autres sites (6626)

  • Video compression - DirectShow

    11 juin 2013, par Edoardo

    I'm generating a video (.AVI) that last about 1 minutes for 150MB of size on 320x240 mode.
    The size is really big, and I can't upload it efficiently.

    After the recording application has finished How could I compress the video without displaying a window ?
    I recently installed FFMPEG and with this command :

    ffmpeg -i input.avi -s 320x240 -vcodec msmpeg4v2 output.avi

    I can take the video to 3MB ! I must say fantastic !
    But... How could I do this from the inside of my application ?
    It would really be better doing this while the application is recording, whiutout installing ffmpeg, and not after.

    I'm now reading http://msdn.microsoft.com/en-us/library/windows/desktop/dd374572(v=vs.85).aspx
    Is this the right page to read ?

  • Anomalie #2880 (Nouveau) : Gestion du portfolio

    22 octobre 2012, par Charles De Clercq

    Concerne : ajouter une image ou un document dans un article Lorsque j’ajoute un archive zippée contenant des illustrations, il y a la possibilité de cocher la case pour ajouter les fichiers (jpg en l’occurrence) dans le portfolio. Bug constaté : les fichiers sont d’office ajoutés au portfolio que la (...)

  • How to compile ffmpeg commands in android studio ?

    24 août 2020, par Junaid Khan

    I have added ffmpeg dependency in my project

    


    implementation 'com.github.hiteshsondhi88.libffmpeg:FFmpegAndroid:0.2.5'


    


    When I run the prject I am getting error.

    


    java.io.IOException: Cannot run program "/data/user/0/com.muhana.videomerger/files/ffmpeg": error=2, 
No such file or directory


    


    The instructions for using ffmpeg are :

    


    Set environment variable

    


    export ANDROID_NDK=Android NDK Base Path

    


    Run following commands to compile ffmpeg

    


    sudo apt-get —quiet —yes install build-essential git autoconf libtool pkg-config gperf gettext yasm python-lxml

    


    ./init_update_libs.sh

    


    ./android_build.sh

    


    To update submodules and libraries you can use ./init_update_libs.sh command
Find the executable binary in build directory.
If you want to use FONTCONFIG then you need to specify your custom fontconfig config file (e.g - "FONTCONFIG_FILE=/sdcard/fonts.conf ./ffmpeg —version", where /sdcard/fonts.conf is location of your FONTCONFIG configuration file)

    


    I need help for executing these commands. How to run these commands properly ?