Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (8)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

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

Sur d’autres sites (4682)

  • Possible to get screenshot from Facebook Video at a certain time ?

    6 décembre 2017, par Jimmy Pelton

    Is there a way to get a screenshot from a video posted to a Facebook group at a certain timestamp ? I’m looking around through their API docs and aren’t seeing it in there.

    I could save the video, and run ffmpeg to get a screenshot, but I was hoping there was an easier way

  • FFMpeg hello world failed

    13 mai 2014, par xorange

    I’m new to the ffmpeg development.

    I’ve got my ffmpeg via ffmpeg.mplayerhq.hu/download.html using

      `git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg`

    My OS is Win7. I’m using Cygwin to help me work under a Unix-like environment.

    I’m using tutorial code from http://dranger.com/ffmpeg/ffmpeg.html. My current code is Tutorial01.

    So I’ve got my gcc, ffmpeg and code together. Working directory is /ffmpegDemo,

    code : /ffmpegDemo/tutorial01.c

    ffmpeg : /ffmpegDemo/ffmpeg

    And I use command gcc-I ffmpeg -o t01 tutorial01.c to compile my code.
    (cygwin doesn’t support "copy", here’re just some major message :)

    libavutil/avconfig.h : No such file or directory

    ...

    error : ’CODEC_TYPE_VIDEO’ undeclared

    ...

    and others are just warnings.

    Indeed, there’s no avconfig.h under ffmpeg/libavutil. I’ve looked for ’CODEC_TYPE_VIDEO’, here’s this reference : http://cekirdek.pardus.org.tr/ ismail/ffmpeg-docs/avcodec_8h.html says that ’CODEC_TYPE_VIDEO’ is defined in libavcodec/avcodec.h. I’ve checked avcodec.h and didn’t find any.

    I was very confused about this error and confused about all the "configure" and "make" things that I saw while searching for answer. Am I doing it wrong ? Did I miss some steps ? Hope that I could find an answer here.

    Thanks.

  • FFMpeg - applying equalizer to audio

    1er juillet 2013, par ssuukk

    There doesn't seem to be much docs on libavfilter available, but FFMpeg surely has a lot of filters. I am interested in Equalizer filter and applying it to audio. But... how do I do it programmatically ?