
Recherche avancée
Autres articles (81)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (10469)
-
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 -
How to show the camera preview always in the Spydroid-ffmpeg project
11 avril 2013, par user2182013I'm tring to readapt the https://github.com/vanevery/spyd-ffmpeg project to my own. This project streams the video and/or audio captured by the phone camera via rtsp and it can be received in a computer or so running vlc or similar. My problem is that the app just shows the preview of the camera when receives a connection, but I'd like to show it always. I've tried hundred of things but it always crashes. I cannot find any startPreview() or similar method and I don't know where exactly in the code it is started in order to modify it. Any clue ?
Thanks.
-
Running a project in QT Creator in Windows
1er avril 2013, par HwathanieI want to develop a video player using FFMPEG in QT Creator on Windows, but completely new to QT Creator environment.
I have downloaded a sample project from this link. When I opened in it QT Creator and ran it, it returned this error,
:-1: error: avutil is required, but compiler can not find it
.I have downloaded this (ffmpeg-20130322-git-e0e8c20-win64-static) FFMPEG file and extracted it to a folder in C partition. I think I get that error since QT cannot find where the FFMPEG is, but still don't know how to link it. Could you please kindly help me to solve this out.