Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (26)

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

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

Sur d’autres sites (6001)

  • Synchronization of two RTMP streams with ffmpeg

    6 juillet 2022, par Strub3l

    I have the problem right now that I need to merge two or more streams into one, the problem is that they are out of sync.

    


    Is there any way to calculate or compare Stream 1 with Stream 2 and get the desync times and desync them automatically with ffmpeg ?

    


    I know there is an option -itsoffset, but for that I have to set the delay manually for each stream, which would be a lot of hassle.

    


  • Is it possible to be more accurate than a second for the snipping function below ? (MATLAB, ffmpeg)

    19 juillet 2021, par Micah T
    snip = 'ffmpeg -i %s -ss %d:%d:%d -t %d:%d:%d -async 1 -strict -2 %s';
snipstr = sprintf(snip,UncutFile,StartHRS,StartMIN,StartSEC,DurHRS,DurMIN,DurSEC,CutFile);
runsnip = system(snipstr);


    


    These lines snip a video based on starting time inputs and duration inputs. I need my videos to be snipped to times more accurate than a second.

    


    Thank you.

    


  • rtp streaming using av_interleaved_write_frame or av_write_frame

    4 avril 2013, par sinan
    I am using ffmpeg windows libraries to rtsp/rtp demux and muxing. But I have problem about processing time of av_interleaved_write_frame or av_write_frame, for example for h264 encoded 1920x1080 pictures it takes 10-20 ms for p frames and 70-100 ms for I frame. I am using VLC for receiver and network bandwith is 100Mb, operating system is 32 bit windows7. If I choose smaller size picture processing time is decreases but it still over for my expectation.

    Is it normal these processing times.

    thanks,