Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (77)

  • 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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

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

  • Streaming WebRTC via ffmpeg to Facebook Live (RTMP) [on hold]

    5 février 2017, par Frederik Greve

    sorry for my bad english ;)

    I’ve got the following problem :
    I want to stream a Webcam (+audio) to Facebook Live. To capture the media I use getUserMedia. Now I will send the data to Facebook Live via RTMP.

    I tink there are two ways to do it, but I don’t know how.

    1. Create an Stream with WebRTC and encode it with ffmpeg to RTMP.
    2. Save every single frame with HTML5 Canvas and then stream it with ffmpeg. (In this case I don’t know to add sound from microphone.)

    I’m just using html5, Javacript and PHP.

  • FFMPEG : How to create video using 1 file .mov (transparent) and 1 image (.jpg)

    29 mai 2017, par Jim2k

    How to create video using 1 file .mov loop (transparent) and 1 image (.jpg Full length video)
    like same : https://www.youtube.com/watch?v=fXzh3sMxTpM

     !!!Sorry for my poor english !!!

  • Split Long Video Into Small Parts With FFmpeg And PHP

    13 janvier 2021, par Rhara Mutiara

    First, English is not my native language, I hope you understand what i want to say
    
I want to split long video, lets say 1 hour of video into small parts.
Right now I'm able to do this with this code

    


    ob_start();
    passthru('ffmpeg -i in.mp4 -acodec copy -f segment -segment_time 3 -force_key_frames "expr: gte(t, n_forced * 3)" %d.mp4');
    ob_end_clean();


    


    The output is thousands of parts with name 0.mp4, 1.mp4, 2.mp4 etc and 3sec duration each part
    
What I want to do now is should look like this :
    
0.mp4 3seconds , 1.mp4 5seconds, 2.mp4 3seconds.. etc
    
is it possible ?