
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (87)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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
Sur d’autres sites (10198)
-
How to print(show) video(or image) on mfc window with ffmpeg [on hold]
3 septembre 2014, par user3867261I want to make a video editor that has functions like playing video (h.264), drawing lines and figures on frames and video.
So I got c++ ffmpeg library, and example code for encoding h.264.
But I don’t know how to display video and image on mfc window.
How can I do this ?
I want to develop simple h.264 player on my mfc-project.
-
FFMPEG - Doesn't show -vstats
22 juillet 2015, par Mateusz KasprzakI’m working with ffmpeg library and PHP. I want to get informations about video.mp4.
The problem is that it works on my localhost( Windows 7/ Xampp ) , but on my linux server it doesn’t... I’m able to convert videos, but I’m not able to use :-vstats
I’m using that command :
$output = shell_exec( '/usr/bin/ffmpeg -i video.mp4 -vstats 2>&1');
And I can get proper output on localhost, but not on my server. What could be the problem here ? I’m trying to finish it, but it seems it’s impossible...
Best Regards,
Mateusz
-
do not show cmd window in qt project
10 mai 2013, par HeghineI'm using ffmpeg command in Qt GUI application (for merging mp3 files into one file). And when I'm running my application the results of merging files showing in cmd window. How can I hide cmd window that users can not see it.
QString mergeMp3FilesStr = "ffmpeg -y -i \"concat:";
/*....some part of code*/
mergeMp3FilesStr+=" \" -c copy D:\\Mp3Files\\mergedMp3.mp3"
system((const char *)mergeMp3FilesStr.toStdString().c_str());
And so command is looking like this (I'm viewing result with QDebug):
ffmpeg -y -i "concat:D:\Mp3Files\a.mp3|D:\Mp3Files\a.mp3|D:\Mp3Files\a.mp3 " -c copy D:\Mp3Files\mergedMp3.mp3