Recherche avancée

Médias (91)

Autres articles (72)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

Sur d’autres sites (10327)

  • ffmpeg4android : overlay a video on video with opacity

    21 juin 2016, par LuongTruong

    I am using ffmpeg4android to edit video. Now, I am able to overlay a video on a video by using this command :

    String[] complexCommand = {"ffmpeg","-y" ,"-i", "/sdcard/videokit/in_big.mp4","-strict","experimental", "-vf", "movie=/sdcard/videokit/in_small.mp4 [watermark]; [in][watermark] overlay=main_w-overlay_w-0:0 [out]","-s", "320x240","-r", "30", "-b", "15496k", "-vcodec", "mpeg4","-ab", "48000", "-ac", "2", "-ar", "22050", "/sdcard/videokit/out.mp4"};

    Now, I want to change the opacity of the video "in_small.mp4" which will be on the top of another video.

    Some useful links :
    using ffmpeg to add overlay with opacity
    ffmpeg overlay video with semi transparent video

    From those links, I know that all_opacity should be the keyword in this case, but I do not know where to put it in the command.

    Please let me know if you have any ideas. Any suggestion would be appreciated !

  • Save live video stream to a video file

    29 juin 2023, par VISHAL DAGA

    Trying to save live streaming video data into a (any) playable video file.
When I log the data I see the following (Put in comment in below code) :-

    


    axios.get(`http://192.168.1.33`, {&#xA;  responseType: &#x27;stream&#x27;,&#xA;}).then((response)=>{&#xA;  const stream = response.data&#xA;  stream.on(&#x27;data&#x27;, data => {&#xA;    console.log(data);  // <buffer 4c="4c" 28="28" a1="a1" 0c="0c" 0d="0d" 14="14" 0e="0e" e1="e1" 8e="8e" eb="eb" 52="52" 48="48" d0="d0" c0="c0" 4a="4a" 68="68" 7b="7b" 0b="0b" c7="c7" 7c="7c" d2="d2" 55="55" 21="21" 0a="0a" a9="a9" 63="63" 12="12" 96="96" 9b="9b" 00="00" ed="ed" 49="49" 42="42" 1a="1a" 16="16" a4="a4" 1e="1e" 94="94" 50="50" 20="20" a3="a3" d8="d8" d5="d5" 1386="1386" more="more" bytes="bytes">&#xA;                       // <buffer 0d="0d" cb="cb" 4b="4b" f7="f7" 77="77" 36="36" c8="c8" 42="42" 9d="9d" bb="bb" b3="b3" d6="d6" a3="a3" 72="72" 24="24" ff="ff" 00="00" 9e="9e" 29="29" b8="b8" 35="35" a5="a5" 48="48" ad="ad" e2="e2" 11="11" a9="a9" ec="ec" 38="38" 1d="1d" e1="e1" 91="91" 93="93" 73="73" bf="bf" a6="a6" 96="96" 62="62" 26="26" 57="57" f4="f4" a4="a4" 4258="4258" more="more" bytes="bytes">&#xA;                      // ....&#xA;</buffer></buffer>

    &#xA;

    How can I save this data into a video file which can be played ? I am starting to read from live stream at a certain point in time and reading it for few seconds - ex. 5 seconds. I need to have a video of that 5 seconds.

    &#xA;

    Note, when I use the url : http://192.168.1.33, I can see the video on the browser.

    &#xA;

  • Concat video output does not skip ahead or go backwards like normal video

    6 août 2020, par JOHN DADS

    i ran this basic concat code to combine an image and audio to output an mp4 video but the output video plays perfectly except for the fact that if I want to skip ahead in the video it goes back to the original position. This was run on python

    &#xA;

    audio = ffmpeg.input("beat.mp3")&#xA;&#xA;picture = ffmpeg.input("image.jpg")&#xA;&#xA;ffmpeg.concat(picture, audio, v=1, a=1).output("video3.mp4").run()&#xA;

    &#xA;