Recherche avancée

Médias (91)

Autres articles (16)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

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

Sur d’autres sites (5557)

  • node js ffmpeg complexfilter overlay another video

    13 octobre 2016, par Handsum

    I have this code planning to output a video containing vid1 and vid2 side by side. So I add a padding to the right of vid1 and tried to use overlay to put vid2 on that space but instead the output video shows a duplicate of vid1 to the right. Can someone please tell me what is wrong with my code and how to fix it ? Thanks

    ffmpeg("vid1.mp4")
    .input("vid2.mp4")
    .complexFilter([
       "scale=300:300[rescaled]",
       {
           filter:"pad",options:{w:"600",h:"300"},
           inputs:"rescaled",outputs:"padded"
       },
       {
           filter:"overlay", options:{x:"300",y:"0"},
           inputs:["padded","vid2.mp4"],outputs:"output"
       }
    ], 'output')
    .output("output.mp4")
    .on("error",function(er){
       console.log("error occured: "+er.message);
    })
    .on("end",function(){
       console.log("success");
    })
    .run();
  • Get image from webcam, convert that image into something else, and returning it back to the client

    29 janvier 2023, par immigration9

    I have some questions on choosing the right architectural decision to solve my problem.

    


    I am planning to create an app, which takes the

    


      

    1. input from a client's (a browser) webcam,

      


    2. 


    3. sending the input to the server (whether frame by frame, or just live stream video)

      


    4. 


    5. getting each frame from the server (into a image)

      


    6. 


    7. convert the image using some technology (let's say like a tiktok filter)

      


    8. 


    9. returning the image back to the client in real time.

      


    10. 


    


    Except for the phase 4 which the technology can only be applied on an image,
Everything else can be changed.

    


    I'm targeting 30fps (or at least 20) with 1080p quality.

    


    The language or framework is completely agnostic as I do not have any preference. Right now, I am thinking of using React with Node, but I'm opened to other options as well. (eg. Python maybe. Language doesn't matter)

    


    If anyone have some prior experiences, can you teach me the best way ?

    


    I've tried to create the image blob from client and send it to the server using socket.io but it seemed too slow to use when targeted at 30fps on 1080p image.

    


    I'm currently looking at WebRTC with fluent-ffmpeg, but not sure if it's the right way.

    


    Any kind of help will be appreciated.

    


  • Is it possible to fetch some key-frames of a video by using the HTTP Range header

    9 décembre 2020, par pvd

    I've read the SO problem , and it seems not applying to my specific case.

    


    Is it possible to fetch some key-frames of a video from web server by the HTTP Range header ? For example, for a 30 seconds duration video, we'd like to analysis the I-frame around 00:00:02, 00:00:15, 00:00:28.

    


    I need to analysis the videos from internal web server to detect if there's specific watermarks in it and some other analysis.

    


    Since the first I-frame might be invalid sometimes(Logo for example), we were planning to extract the I-frame from the 00:00:02, the middle I-frame, and the last 2nd second I-frame.

    


    For example, for a 30 seconds duration video, we'd like to analysis the I-frame around 00:00:02, 00:00:15, 00:00:28.

    


    We could make it works while download the whole video, since most of the data we downloaded from the server are not being used. I was wondering if maybe we could only use the HTTP Range header to download partial data and analysis it ?