Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (111)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (9982)

  • The same frame of the image, through the same algorithm or library, compression twice after the image is same or not

    15 août 2018, par karllen

    The same frame of the image, through the same algorithm or library, lossy compression twice, compression twice after the image is same or not ?

  • Using "volume" argument in ffmpeg volume audio filter

    3 septembre 2018, par xylophagous

    I wish to "silence" the background noise in an audio, without removing the silence entirely - so as to keep the length of the audio constant. I am trying to use volume filter in ffmpeg like

    ffmpeg -i input.flac -filter:a "volume='if(lt(volume,-8dB),0,1)':eval=frame" output.flac

    but this seems to output the same file as input. I checked this by seeing the volumedetect output and it is identical for input.flac and output.flac.

    I am new to ffmpeg so sorry if this is preliminary ; quick help or pointers to relevant examples appreciated. Thanks !

  • Is there any way to make image compression and saving faster on Android ?

    24 octobre 2016, par Arsen Sench

    The situation

    I should show 200-350 frames animation in my application. Images have 500x300ish resolution. If user wants to share animation, i have to convert it to Video. For convertion i am using ffmpeg command.

    ffmpeg -y -r 1 -i /sdcard/videokit/pic00%d.jpg -i /sdcard/videokit/in.mp3 -strict experimental -ar 44100 -ac 2 -ab 256k -b 2097152 -ar 22050 -vcodec mpeg4 -b 2097152 -s 320x240 /sdcard/videokit/out.mp4

    To convert images to video ffmpeg wants actual files not Bitmap or byte[].

    Problem

    Compressing bitmaps to image files taking to much time. 210 image convertion takes about 1 minute to finish on average device(HTC ONE m7). Converting image files to mp4 takes about 15 seconds on the same device. All together user have to wait about 1.5 minutes.

    What i have tried

    1. I changed comrpession format form PNG to JPEG(1.5 minute result is
      achieved with JPEG compression(quality=80),with PNG it takes about
      2-2.5 minutes) success
    2. Tried to find how pass byte[] or bitmap to ffmpeg - no succes.

    QUESTION

    1. Is there any way(library (even native)) to make saving process faster.
    2. Is there any way to pass byte[] or Bitmap objects (i mean png file decompressed to Android Bitmap Class Object) to ffmpeg library video creating method
    3. Is there any other working library which will create mp4(or any supported format(supported by main Social Networks)) from byte[] or Bitmap objects in about 30 seconds(for 200 frames).