Recherche avancée

Médias (91)

Autres articles (17)

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

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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (5133)

  • Fix edge case where sound could play twice, multiShot-style, under flash 9 with weird combination of pause and setPosition calls. Also fix dev branch HTML5 support error when useHTML5Audio = false.

    6 mai 2012, par Scott Schiller

    m script/soundmanager2-jsmin.js m script/soundmanager2-nodebug-jsmin.js m script/soundmanager2-nodebug.js m script/soundmanager2.js m src/SoundManager2.as m src/SoundManager2_AS3.as m src/SoundManager2_SMSound_AS3.as m swf/soundmanager2.swf m swf/soundmanager2_debug.swf m (...)

  • Corrected JS Flash call messaging sequence during start-up (and clarified language.) Fixed another onerror() -> onload()-type edge case resulting from prior jslint fixes.

    23 mai 2012, par Scott Schiller

    m script/soundmanager2-jsmin.js m script/soundmanager2-nodebug-jsmin.js m script/soundmanager2-nodebug.js m script/soundmanager2.js m src/SoundManager2.as m src/SoundManager2_AS3.as m swf/soundmanager2.swf m swf/soundmanager2_debug.swf m swf/soundmanager2_flash9.swf m (...)

  • Is it possible to add an outline/border/edge to a person in a chroma-key video ? [closed]

    19 juillet, par Mouaad Abdelghafour AITALI

    I hope you're doing well. Is it possible to use FFmpeg to add an outline to a chroma-keyed video, like in the images below ? My goal is to blend a background video with a foreground video, where the foreground has a white outline.

    


    enter image description here

    


    enter image description here

    


    Here’s my current code that blends the background and foreground videos by removing the chroma key and replacing it with the background. I want to keep this functionality but add a white outline effect around the foreground video.

    


    Thank you so much in advance for your help.

    


    public static String overlayVideo(String backgroundCroppedPath,
                                  String foregroundVideoPath,
                                  String overlayedVideoPath,
                                  double fgDurationSec,
                                  OutputAudioSource audioSource) {

    // Format duration to 2 decimal places
    String duration = String.format(Locale.US, "%.2f", fgDurationSec);

    String bgInput = "-stream_loop -1 -i \"" + backgroundCroppedPath + "\"";
    String fgInput = "-i \"" + foregroundVideoPath + "\"";

    String filterComplex =
            "[0:v]trim=duration=" + duration + ",setpts=PTS-STARTPTS[bg];" +
                    "[1:v]colorkey=0x01fe01:0.3:0.2,setpts=PTS-STARTPTS[fg];" +
                    "[bg][fg]overlay=format=auto[outv]";

    String audioMap = (audioSource == OutputAudioSource.FOREGROUND)
            ? "-map [outv] -map 1:a?"
            : "-map [outv] -map 0:a?";


    return "-y " + bgInput + " " + fgInput +
            " -filter_complex \"" + filterComplex + "\" " +
            audioMap + " " +
            "-t " + duration + " " +
            "-c:v libx264 -crf 18 -preset ultrafast -pix_fmt yuv420p " +
            "\"" + overlayedVideoPath + "\"";}