Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (7)

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

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

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

Sur d’autres sites (4070)

  • trying to build a audio video format convertion tool help required

    19 février 2012, par moon

    hello i am going to build a windows desktop tool that can convert the audio and video formats of all types.

    i am in technology selection phase.

    thinking about java and ffmpeg for this purpose but i come to know there are some formats that ffmpeg can not convert for them what should i do ?

    second is there ffmpge api for java to use intead of using it through process builder ?

    and at last is there any other approach that is more easy and stable from described above ?

    AVI, MPG, MPEG, VOB, WMV, MP4, M4V,

    ASF, MOV, QT, 3GP, DAT, OGM, DVR-MS, FLV, MKV, RM, RMVB, VRO, TS, AMV,
    F4V, MTS, MT2S, WAV, MP3, WMA, OGG, APE,

    M4A, MPC, WV, AMR, AC3, AU to AVI, MPEG, MOV, WMV, MP4, RM, iPod,
    iPad, HTC, PSP, iPhone, Zune, BlackBerry, Apple

    TV, PS3, Xbox360, Creative ZEN, Archos, iRiver, 3GP, FLV, SWF, WAV,
    MP3, WMA, M4A, AMR, AAC, AIFF and AC3

    help required

    regards.

  • configure : Do not use pthread_create to check for pthread

    29 novembre 2013, par Luca Barbato
    configure : Do not use pthread_create to check for pthread
    

    Certain instrumentation addons leads to a false positive in configure
    and link failures at the end of the build phase.

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DH] configure
  • Recreate image with ffmpeg safe ?

    28 février 2019, par John

    I want to use ffmpeg to recreate an image file that is uploaded. I know that in PHP you can use imagecreatefromjpeg, imagecreatefrompng and imagejpeg etc. to recreate images. That way, if there is any hidden malware in the original images, it will ’break’ / be mangled.

    But I want to use this ffmpeg command to recreate image files :
    ffmpeg -i in.jpg out.jpg
    I have tested converting an image file that has PHP code stored in its EXIF field, and after converting it, the PHP code is no longer executed in the converted file..

    Also, the converted file is smaller in size : from 45.9 KB to 11 KB..

    Is that a safe way ?

    EDIT
    Btw, I am also checking the MIME type etc, but MIME can be forged, hence recreating image files is recommended.. I want to convert files on another server where there is no PHP installed. That way I can also avoid any potential PHP memory issues.