
Recherche avancée
Autres articles (56)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
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 (7408)
-
checkasm : Disable Windows Error Reporting
7 février 2016, par Henrik Gramner -
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 ?
-
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 ?