
Recherche avancée
Autres articles (19)
-
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
Qualité du média après traitement
21 juin 2013, parLe bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)
Sur d’autres sites (2879)
-
FFmpeg get header size
25 juin 2012, par DEgITxThe question is to get header size from format context (AVFormatContext) in ffmpeg.
Now i'm using first packet position to get it :
avformat_open_input(&m_formatContext, m_openedFilePath.toStdString().c_str(), NULL, NULL);
//...
AVPacket packet;
if(av_read_frame(m_formatContext, &packet) >= 0)
printf("Header size: %d", packet.pos); // First readed packet will be with header offsetAny better way to do it without reading frame ?
-
ffmpeg : process each image frame after capturing with x11grab
21 juin 2012, par cacheProgrammatic way to process each image frame right after capturing using x11grab in ffmpeg
For example, I have a program that captures screenshots from x display using command :
ffmpeg -f x11grab -s cif -r 25 -i :0.0 /tmp/out.mpg
'-r 25' means there are 25 frames being captured in a second. And my question is how to process each frame(image) and decide whether I want to keep this frame or drop it right after each image is captured. I guess this should be done in C by adding some code in x11grab.c.
-
How to restrict ffmpeg to use only 50% of my CPU ?
21 septembre 2016, par zukesi m using ffmpeg for streaming my desktop over UDP but my problem is ffmpeg’s process always takes 100% cpu for the entire time it is running leaving no room other application , my question is how can i restrict ffmpeg’s process to take up only 50-60% of cpu ?
My cpu has single core
2 gb ram