Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (34)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • 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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (6434)

  • Recording application output to video using FFmpeg (or similar)

    15 décembre 2011, par John

    We have a requirement to lets users record a video of our 3D application. I can already grab the individual rendered frames so this question is specifically about how to write frames into a video file.

    I don't think writing each frame as a separate file and post-processing is a workable option.

    I can look at options to record to a simple video file for later optimising/encoding, or writing directly to a sensibly encoded format.

    FFmpeg was suggested in another post but it looks a bit daunting to me. Is it the best option, if not what can be suggested ? We can work with LGPL but not full GPL.

    We're working on Windows (Win32 not MFC) in C++. Sample/pseudo code with your recommended library is very much appreciated... basically after how to do 3 functions :

    • startRecording() does whatever initialization is needed
    • recordFrame() takes pointer to frame data and encodes it, ideally with timing data
    • endRecording() finalizes the video file, shuts down video system, etc
  • How would I write a batch file to run an ffmpeg command on an entire directory ? [duplicate]

    26 mai 2019, par invertgrind

    This question already has an answer here :

    How would I create a batch file or simply a command to run ffmpeg instructions on an entire directory ? I wish to transmux a folder of .ts files to .mp4

    For individual files I use the command :

    ffmpeg -i file.ts -acodec copy -vcodec copy file.mp4
  • Best approach to stream RTSP IP Cam feed to React app and node.js express server

    17 juillet 2024, par JuicyPhan

    I am trying to build a set-up whereby I stream multiple IP Cam RTSP Video feeds to multiple users.
It needs to have minimal latency.

    


    Server Hardware : Static IP Synology NAS
    
Front-End : React
    
Back-End : Node.js Express
    
STUN/TURN server : Coturn
    
Video Feed : Multiple IP Camera's RTSP feeds
    
Video Encoder : ffmpeg(?)
    
Video Decoder : ?
    
Video Format : ?
    
Streaming Protocol : WebRTC

    


    I have every individual component up however am struggling with the part whereby I encode the RTSP feed.

    


    What video format do I encode it to and how do I use WebRTC to stream to viewers on the front-end ?