Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (69)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (6378)

  • How to add the text watermarking on video in android ?

    8 janvier 2015, par Raghupathi

    I have to add the text water marking on the video. I tried with ffmpeg4android. It cannot contains the watermarking feature. So I am struggling now. Guide Me. Thanks in Advance.

  • ffmpeg gif watermark played 1 times

    5 mai 2014, par user3605000

    I try to insert gif watermark in ffmpeg, but gif image played 1 times, and then i have just static image. I need the animation to play all the time.

    ffmpeg -i rtmp://x.x.x.x -vf "movie=logo.gif [logo]; [in][logo] overlay=10:10 [out]" -c:v libx264 -an -f flv rtmp://x.x.x.x

    How can I achieve this ? Sorry for my bad english

  • ffmpeg watermark bottom right corner

    8 décembre 2012, par John Doe

    I am not sure why, but I cannot seem to get a watermark rendered on the bottom right corner of my video using ffmpeg.

    I am using the following command :

    ffmpeg –i faded.mov -vf "movie=logo.png [watermark]; [in][watermark] overlay=(main_w-overlay_w-10)/2:(main_h-overlay_h-10)/2 [out]" outputvideo.mov

    I see the following output :

    ffmpeg version 0.8.4-4:0.8.4-0ubuntu0.12.04.1, Copyright (c) 2000-2012 the Libav developers
     built on Nov  6 2012 16:50:25 with gcc 4.6.3
    *** THIS PROGRAM IS DEPRECATED ***
    This program is only provided for compatibility and will be removed in a future release. Please use avconv instead.
    Input #0, avi, from 'faded.mov':
     Metadata:
       encoder         : MEncoder svn r34540 (Ubuntu), built with gcc-4.6
     Duration: 00:00:20.02, start: 0.000000, bitrate: 3136 kb/s
       Stream #0.0: Video: mpeg4 (Simple Profile), yuv420p, 1280x720 [PAR 1:1 DAR 16:9], 50 tbr, 50 tbn, 50 tbc
       Stream #0.1: Audio: pcm_s16le, 48000 Hz, 2 channels, s16, 1536 kb/s
    [buffer @ 0x905b7a0] w:1280 h:720 pixfmt:yuv420p
    [movie @ 0x90527e0] seek_point:0 format_name:(null) file_name:logo2.png stream_index:0
    [overlay @ 0x9053080] auto-inserting filter 'auto-inserted scaler 0' between the filter 'Parsed filter 0 movie' and the filter 'Parsed filter 1 overlay'
    [scale @ 0x9054ba0] w:144 h:144 fmt:bgra -> w:144 h:144 fmt:yuva420p flags:0x4
    [overlay @ 0x9053080] main w:1280 h:720 fmt:yuv420p overlay x:568 y:288 w:144 h:144 fmt:yuva420p
    [overlay @ 0x9053080] main_tb:1/1000000 overlay_tb:1/25 -> tb:1/1000000 exact:1
    Output #0, mov, to 'outputvideo3.mov':
     Metadata:
       encoder         : Lavf53.21.0
       Stream #0.0: Video: mpeg4, yuv420p, 1280x720 [PAR 1:1 DAR 16:9], q=2-31, 200 kb/s, 50 tbn, 50 tbc
       Stream #0.1: Audio: libvo_aacenc, 48000 Hz, 2 channels, s16, 200 kb/s
    Stream mapping:
     Stream #0.0 -> #0.0
     Stream #0.1 -> #0.1
    Press ctrl-c to stop encoding
    frame= 1001 fps=137 q=31.0 Lsize=    3668kB time=20.02 bitrate=1501.1kbits/s    
    video:3159kB audio:492kB global headers:0kB muxing overhead 0.460112%

    hussan@ubuntu:~/Documents/testvideo$ ffmpeg –i faded.mov -vf "movie=logo2.png [watermark]; [in][watermark] overlay=(main_w-overlay_w-10)/2:(main_h-overlay_h-10)/2 [out]" outputvideo3.mov
    ffmpeg version 0.8.4-4:0.8.4-0ubuntu0.12.04.1, Copyright (c) 2000-2012 the Libav developers
     built on Nov  6 2012 16:50:25 with gcc 4.6.3
    *** THIS PROGRAM IS DEPRECATED ***
    This program is only provided for compatibility and will be removed in a future release. Please use avconv instead.
    Unable to find a suitable output format for '–i'

    If anyone has any ideas that would be greatly appreciated !