Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (90)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (6285)

  • dxv : Support the original first version

    22 septembre 2015, par Vittorio Giovara
    dxv : Support the original first version
    

    DXV 1.0 provided DXT1 with LZF only.

    Sample-Id : Orange-Strings-07_640_DXV.mov
    Reported-by : Carl Eugen Hoyos
    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DBH] libavcodec/dxv.c
  • How can I apply more than one colorkey filter, in an additive way ?

    21 août 2019, par Fabián

    In my video there’s an object that has shades of yellow (more orange-like) and a solid yellow as background.

    I need to output all frames into a png sequence, using many colorkey filters to replace 4 (four) specific yellow-ish colors from the background.

    This is what I tried :

    ffmpeg -ss 4 -i original.mp4 -t 2 -filter_complex "[0:v]colorkey=0xfff31b:0.125:0, colorkey=0xfae56b:0.125:0, colorkey=0xfaec46:0.125:0, colorkey=0xeee2a0:0.125:0[ckout]" -map "[ckout]" colorkeyrefined-%d.png

    However, it only applies the last specified colorkey. I need to apply the four of them.

  • FFMPEG, command with Overlay and Drawtext on video

    20 février 2019, par Cleoh

    I have 2 commands, one for overlay(work alone), one for add text (work alone), i want this 2 commands in one.

    ffmpeg -i myvideo.mp4 -i image.png -filter_complex [0:v][1:v]overlay=5:5,drawtext=fontfile=:text=mytext:fontcolor=orange@1.0:fontsize=30:x=30:y=200[v] -map [output] output.mp4

    This command generate empty file without error.