Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (106)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Keeping control of your media in your hands

    13 avril 2011, par

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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (8819)

  • How compress images with ffmpeg till specific size threshold , and ability to restore back

    20 mars 2019, par VitalyT

    I need to reduce as much storage as i can.

    so , Lets say i have dir in file system that contains pictures (png/jpeg ,etc...) and html ,js files

    My purpose is look for media
    filenames suffix for example *.jpg, *.png, *.webm, *.ico in a folder and
    compress max till 38K.

    basically the average original images size is 170K.

    Avatar images should be under 4KB when a good size would be 2KB

    I’ve tried so far

    ffmpeg -i ~/Desktop/test123.jpeg -vframes 1 -compression_level 100  ~/Desktop/output_1623x1623.png

    but it gives me maximum 104K...

    what is the best way to compress or scaling down the images but with ability to restore with the same quality

    regards,

  • tools : Make sure to create the tools directory before building decode_simple.o

    8 août 2022, par Martin Storsjö
    tools : Make sure to create the tools directory before building decode_simple.o
    

    This directory dependency is normally added implicitly by rules
    in ffbuild/common.mak ; for tools it's created by a rule for TOOLOBJS.
    TOOLOBJS is populated implicitly from TOOLS, and decode_simple.o
    doesn't end up there because it's an odd occurrance of a lone
    object file in the tools subdirectory, not belonging to any other
    tool.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] tools/Makefile
  • ffmpeg kills python kernel upon completion of operation

    9 août 2023, par Ata Yalcin

    I run the following prompt with os.system(prompth) in Python

    &#xA;

    ffmpeg -framerate {framerate} -i &#x27;video-demo-frames/%d.ppm&#x27; -i temp-audio/audio.aac -shortest -c:v libx264 -r {framerate} -pix_fmt yuv420p {output}&#xA;

    &#xA;

    ffmpeg creates the video from the frames and also does add the audio correctly. But upon the completion of the process it seems to kill my python kernel.

    &#xA;

    Some sources over the internet says that it is caused by the large size of my pictures and video, but i dont know whether that is true. What is the reason of this problem and how can ı solve it ?

    &#xA;