
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (105)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (9117)
-
how do i install pyffmpeg on windows 10
17 avril 2016, par killercan anyone point me in the right direction in getting pyffmpeg installed on my windows 10 computer. I seem to be having quite a bit of trouble. is cython required for this ? please all input is appreciated.
**update I installed cython and it got stuck on setup.py
it gets stuck installing on line 84
Traceback (most recent call last):
File ".\setup.py", line 84, in <module>
incdir = incdir + list(nd.get_numpy_include_dirs())
TypeError: cannot concatenate 'str' and 'list' objects
</module>the ffmpeg version is ffmpeg-20160415-git-21acc4d-win32-static
I did change the filepath for it as well
-
How to compile ffmpeg for Qt use on Windows ?
13 avril 2016, par HimikoI want to use ffmpeg libs for programming in Qt.
- How can I compile ffmpeg into *.lib files on Windows ?
or
- How can I use the compiled *.dll files which are released officially in Qt ?
Also, which way is better ?
-
FFMPEG : STDOUT vs FILE in Windows
25 mars 2014, par Martin MatillaI've got an application (
app1.exe
) that generates mpeg4 frames using ffmpeg libraries, and I want to dump these frames to another application reading from stdin.The easiest way to connect them is via a file, and this works, but now I want to use pipes.
So in
app1.exe
I havefwrite(pkt.data, 1, pkt.size, (FILE*) f ); // for each frame
which creates a test.m4v file, works OK, but when I change it to
fwrite(pkt.data, 1, pkt.size, stdout ); // for each frame
and then dump it to a file
app1.exe > test.m4v
the file is generated correctly, but the content is corrupted :Generated using FILE :
Generated using STDOUT :
My first thought was to check if the application generated any stdout other than the frames, but it doesn't, checked using the FILE version and dumping stdout via
app1.exe>text.txt
, but the file is empty. The only "outs" are stderrs, but they only occurr when the application exits.Opening the resulting test.m4v for both versions with notepad++ shows pretty similar data, I would even say the same in both.
So my question is, what is the difference between writing to FILE and dumping stdout to file ?