Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (22)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

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

  • Ffmpeg - creating thumbnail from webm format and converting webm movie to flv movie

    29 janvier 2015, par red

    I have got a problem in which i want to
    make a thumbnail from webm movie using ffmpeg.

    I have this error when trying to make that
    thumbnail :

    "Unknown format is not supported
    as input pixel format"

    Furthermore i want to convert webm movie to
    flv movie.

    Thanks in advance.

  • ffmpeg make error : doc/Makefile:84 : recipe for target 'doc/ffmpeg.pod' failed

    11 décembre 2020, par Lin Lingfeng

    I download the FFmpeg from ffmpeg-snapshot.tar.bz2.
Following the INSTALL.md :

    


    Installing FFmpeg

    


      

    1. Type ./configure to create the configuration. A list of configure
options is printed by running configure --help.

      


      configure can be launched from a directory different from the FFmpeg
sources to build the objects out of tree. To do this, use an absolute
path when launching configure, e.g. /ffmpegdir/ffmpeg/configure.

      


    2. 


    3. Then type make to build FFmpeg. GNU Make 3.81 or later is required.

      


    4. 


    5. Type make install to install all binaries and libraries you built.

      


    6. 


    


    NOTICE

    


      

    • Non system dependencies (e.g. libx264, libvpx) are disabled by default.
    • 


    


    ERROR

    


    After the step1. When I run make, it failed :

    


    ...
...
CC      libavutil/x86/lls_init.o
CC      libavutil/x86/pixelutils_init.o
CC      libavutil/xga_font_data.o
CC      libavutil/xtea.o
AR      libavutil/libavutil.a
GEN     libavutil/libavutil.pc
HOSTCC  doc/print_options.o
HOSTLD  doc/print_options
GENTEXI doc/avoptions_format.texi
GENTEXI doc/avoptions_codec.texi
POD     doc/ffmpeg.pod
Insecure dependency in open while running setuid at ./doc/texi2pod.pl line 79.
doc/Makefile:84: recipe for target 'doc/ffmpeg.pod' failed
make: *** [doc/ffmpeg.pod] Error 25


    


    What's wrong ?

    


  • ffmpeg batch retains old filetype in name

    3 juin 2018, par InsertDisplayNameHere

    I’m using the following ffmpeg script to convert all .mp4 files in the folder to .webm.

    for %%A IN (*.mp4) DO ffmpeg -i "%%A" -c:v libvpx -crf 4 -b:v 3M -c:a libvorbis "%%A.webm"

    I am trying to make it go from "xxx.mp4" to "xxx.webm"

    However when I run the script the file name goes from "xxx.mp4" to "xxx.mp4.webm"

    Any suggestions are highly appreciated.