Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (21)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

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

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (6059)

  • ffmpeg : Unable to find a suitable output format for '–i'

    17 octobre 2016, 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=logo2.png [watermark]; [in][watermark] overlay=(main_w-overlay_w-10)/2:(main_h-overlay_h-10)/2 [out]" outputvideo3.mov
    ...
    [NULL @ 0x7fa2ec001000] Unable to find a suitable output format for '–i'
    –i: Invalid argument
  • Presenting more then 2 videos using FFmpeg

    9 décembre 2012, par Radagskar

    i found this answer for combining 2 videos using Ffmpeg

    ffmpeg.exe -i LeftInput.mp4 -vf "[in] scale=iw/2:ih/2, pad=2*iw:ih [left];
       movie=RightInput.mp4, scale=iw/3:ih/3, fade=out:300:30:alpha=1 [right];
       [left][right] overlay=main_w/2:0 [out]" -b:v 768k Output.mp4

    Is there a way to combine more then 2 ? i tried adding [bottom] and [upper] but i'm failing to understand how the overlay works and where do i put more videos.
    Thanks

  • FFMPEG video overlay with remote overlay source

    19 mai 2012, par Dasas

    I'm trying to achive an overlay with ffmpeg wich take the overlay source from a "remote" video encoder.

    Just for the sake of testing i'm using random online video source.

    As you will notice in the code below the source and the overlay are the same. That's not the problem.

    The command i'm using at the moment is the following :

    ffmpeg -f mjpeg -i http://81.20.148.158/anony/mjpg.cgi  -vf "movie=http://81.20.148.158/anony/mjpg.cgi [mv]; [in][mv] overlay=0:0" output.avi

    Here an easy-to-read version :

    ffmpeg
    -f mjpeg
    -i http://81.20.148.158/anony/mjpg.cgi  
    -vf "movie=http://81.20.148.158/anony/mjpg.cgi [mv]; [in][mv] overlay=0:0"
    output.avi

    I'm getting this error :

    Missing key or no key/value separator found after key '//81.20.148.158/anony/mjpg.cgi'

    It works pretty well if i use a "local" video source such as

    ffmpeg
    -f mjpeg
    -i http://81.20.148.158/anony/mjpg.cgi  
    -vf "movie=a.flv [mv]; [in][mv] overlay=0:0"
    output.avi

    I have the feeling something is wrong with the double slashes // or more likely with the : in http://...

    Thanks,
    Francesco.