
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (68)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
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 (...)
Sur d’autres sites (5454)
-
Create Video Programmatically with Qt 5.0
29 mars 2016, par JoeyWe have a QT application that renders programmatically generated QPixmaps one by one to the display and we would like to save this output to a video file. I know that in the past people have recommended using ffmpeg or opencv with Qt to do this. In Qt 5, however, the new QtMultimedia module seems to expose some of this type of functionality. It is now possible, for example, to save video from a camera source in Qt 5 by using the QMediaRecorder as described in http://qt-project.org/doc/qt-5.0/qtmultimedia/qmediarecorder.html#details. With this new functionality, is there any way to use Qt 5 to save our programmatically generated video, or am I still better off using a third party library ?
-
Android ffmpgeg - Nothing happens
25 juillet 2015, par Ch4t4rfor my current project I compiled myself ffmpeg together with the x264 libary, following this
tutorial. I already saw many questions regarding this topic, but none of the really helped me. Before that I tried many other things which resulted in many .so files (libavcodec etc.). Since I don’t have the time (yet) to work with JNI in depth I wanted to rely to the command line, which the tutorial above seemed to provide. But here comes the problem : the generated file doesn’t do anything (no output and no error messages) when I run it with Process on my Android device. I’ve come to the conclusion, that the generated file still is a .so file (it is readable with readelf). So far I haven’t found a solution to run ffmpeg on my device with the command-line. Do you know if I did something wrong ?
Thanks,
Daniel -
FFMPEG converting all files in a folder and generating the output into another folder
5 avril 2023, par UserHave generated the following code by searching on the web ; unfortunately there is some mistake here,maybe basic, that isn't allowing the code to run.


the code is supposed to :

1.work on all files inside the fodler

2.convert the files into a 1x1 video ( works alone )

3.the generated video will be sent to a specific fodler named \sub , a subfolder inside the main folder

for i in *.mp4; do 
 ffmpeg -i "$i" -codec:v libx264 -preset fast -b:v 7500k -filter:v "crop=in_h:in_h" -maxrate 10000k -codec:a aac "sub\fixed-$i.mp4"; 
done 



the output is :


i was unexpected


tried searching on the web trough similiar questions