
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 (43)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
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 (...)
-
Les statuts des instances de mutualisation
13 mars 2010, parPour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)
Sur d’autres sites (8942)
-
Whats the difference between the output of mencoder and libx264 ?
30 septembre 2013, par عبدالمؤمن كاظمi want to know the difference between video output of these two encoders (mencoder and libx264).
i guess they're not, since the video information of the codec have different names.
thanks in advance. -
ffmpeg log file size limitation
6 mars 2014, par user3248865In my project I need to process ffmpeg log, so it is redirected to a file.
I wonder if there is a chance to set size of this file where ffmpeg writes log. My ffmpeg command captures webcam input, so the file size is increasing endlessly.
I know I can use pipes, but it is an alternate solution.
Thanks in advance. -
How can I intercept encoded video data using ffmpeg with C ?
24 février 2017, par TerNerFirst of all, I hope you’ll understand my poor english skill. I’ll do my best to write question about it.
I’m currently developing some application. That application will captures desktop and encodes to MP4 video and send mp4 video data/chunks to another clients (all this process should run in memory not file). so another client should can play mp4 video/data/chunks that received from server.
so I used
avio = avio_open(...)
and reassigned write function as likeavio->write_packet = some_function
. but this way seems not "generate" mp4 file/chunk correctly. and It seems the originalwrite_packet
callback having actual logic that write packet to a file. but I don’t want to write to a file. so I was thinking about it for a week but I did’t getting any of idea about it.so my question is : How can I intercept "encoded" video data that should processed by
avio->write_packet
?