Recherche avancée

Médias (91)

Autres articles (68)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (6979)

  • Merge audio and video, and add an overlay on top of it with FFMpeg

    8 juillet 2022, par heyhofromfr

    I'm programming a simple script in Python to make a video from a static image with an mp3, and add an overlay on top of it.
This overlay is a video, transparent or black (Screen) for example a logo that moves.

    


    The overlay duration is 5minutes.
All my mp3 are under 5min (generally 2-3min), so the video should have the duration of the audio, not the overlay.
The overlay size is always 1920x1080, as well as my image so I don't have to deal with resolutions.

    


    I'm using raw FFMpeg command to achieve it, but I'm stuck to filter_complex things, in order to add the overlay. The docs seems so complicated, I can't get it.
Here is what I have :

    


    ffmpeg -r 25 -loop 1 -i nature.jpg -i nature_sound.mp3 -acodec copy \
       -shortest -pix_fmt yuv420p nature_video.mp4


    


    How to add an MP4 video overlay on top of the nature.jpg, and the whole video having only the sound of nature_sound.mp3 ? I would like to learn those filter complex, if anyone can help me with some details it would be great ! Thank you.

    


    [updated command]

    


    ffmpeg -r 25 -loop 1 -i ./nature.jpg -i ./overlay.mp4 -i nature_sound.mp3 \
  -filter_complex "[1]setsar=sar=1,format=rgba [video]; [0][video]blend=all_mode=screen[out]" \
  -map [out] output.mp4


    


  • Live Video Chat for iPhone and HTTP Live Streaming

    2 novembre 2014, par mayuur

    So generally, I want to make an app which has video chat functionality for iPhone. But after many searches, I am still not able to find any successful results. Is there any public or even for that matter, private API available for doing this on iPhone ??? If you have an YES answer, please help me.

    Basically, what I want is to read the streams of the video on both the devices connected for chatting. Thanks a lot in advance and please help me if you can.

    p.s - I have already checked iDoubs but it failed and always shows some unknown problem and for that reason, doesn’t allow me to connect to anyone.

    ALSO : The suggested method I have found is via HTTP Live Streaming. But, in that too, I have multiple doubts.

    1.) I need to find how do I upload my video from iPhone to the HTTP server from where I would be broadcasting ?

    2.) Can you please post something related to setting up the server ? How do I feed the video to the FFMPEG Server ?

    Mainly, I need to find the upload method. I am right now simply sending hex-code in the form of NSDATA to the server and I am stuck there. The main problem is, It is live. How do I handle that ?

    It would be best, if you could help me make the iDoubs work properly.

    Thank you so much for any kind of support !

  • Create video stream from tiny endless files

    3 mars 2023, par T.Aoukar

    I have a client sending endless (or at least large unknown amount) tiny webm files (around 2 seconds each) using websocket, video content is base64 encoded, and I want to create a live video stream from them.
So it'll be like this :

    



      

    1. Client open web socket.
    2. 


    3. Client sends first file.
    4. 


    5. Server starts streaming the file online.
    6. 


    7. Client sends second file.
    8. 


    9. Server appends the video with the second file.
    10. 


    11. Repeat 5&6 until web socket closes.
    12. 


    



    Now, I've already done the part for websocket on server/client side, and decoding the content from base64 is no problem, but completely stuck on the stream conversion part, far as I've looked the best option would be running FFMPEG, but can't find a way to give it endless stream to convert.

    



    P.S : running on Windows machine, socket server is nodejs-websocket.