
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (100)
-
Publier sur MédiaSpip
13 juin 2013Puis-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 2011Contrairement à 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) (...)
-
Supporting all media types
13 avril 2011, parUnlike 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 (9167)
-
How to write silent audio data to an auido stream ?
13 juin 2019, par LeFroschI am writing some images to an AVStream and after that I am reading an mp3 file and writing it to an diffrent AVStream. The propblem is that the audio stream is a bit shorter then the video stream, so if I add more images and another audio file the audio is not in sync with the video any more. So my idear was to write silent audio data to the audio stream before I write another audio file to the audio stream. But I can not figure it out hwo to write the silent data to the audio stream.
I found this post but I don’t know how to calculate the packet size or how to write the packet to the audio stream.
-
Streaming video from image stream with FFMPEG
3 avril 2015, par newbI have an app that sends screenshot to my server every 1 (2 or whatever) seconds. The images dont have sequential number and we cant guarantee that it will always have .. format in naming.
I want to convert this image stream to a video stream with FFMPEG.
Is there anybody who can help ? Note Im using ubuntu.
-
How to add a new stream after avformat_write_header function is called ?
26 février 2019, par hellkni9htI have several video sources that produce video frames. Each video source should be represented as the separate video stream inside an output video file(mp4 or mpegts).
The problem is that I should specify the exact number of streams and create them beforeavformat_write_header
function is called. If I try to add the stream after, I will get crash insideav_interleaved_write_frame
. Is any way to add a stream on the fly ? Maybe there are some muxer options that I should specify ? Thanks in advance for your answers.