
Advanced search
Medias (1)
-
The Great Big Beautiful Tomorrow
28 October 2011, by
Updated: October 2011
Language: English
Type: Text
Other articles (17)
-
Publier sur MédiaSpip
13 June 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 -
Configuration spécifique pour PHP5
4 February 2011, byPHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
Modules spécifiques
Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...) -
La sauvegarde automatique de canaux SPIP
1 April 2010, byDans 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 (...)
On other websites (6130)
-
FFmpeg v0.12 is not working for Angular 16
30 September 2024, by Amrut KumarCurrently, I have tried integrating ffmpeg v0.12 for my angular 16 project. But it takes forever for the ffmpeg to load. It goes into infinite loop. My guess is that its unable to load the worker script due to incompatibility with Angular 16 dependencies and functionalities.
I have tried ffmpeg v0.12 in my angular 18 app and everything is working just fine. The same changes wont work for my angular 16 application.
To take a step further, I have downgraded ffmpeg version to 0.11 and its now working perfectly fine for my angular 16 app.
Have any of you faced similar issue as I have explained above? If yes, what steps did you take to resolve it?


I tried loading ffmpeg v0.12 with angular 16 app and I was expecting it to load just fine as I was able to achieve this with angular 18 with totally similar code changes.


-
How to combine a video with audio from another video using FFMPEG?
21 August 2023, by Sigmond KuklaI have two videos of the same length that I'd like to combine. Video A has audio, video B does not. I'd like to take the audio from video A and put it onto Video B. I'd like to do this with FFMPEG, but I can't figure out the arguments I need? Should I use map?


There's a lot of questions about combining a video with audio, but not two videos.


Do I maybe need an intermediate step of converting my original video to audio?


I have tried using this FFMPEG command, and a couple of variations. All of the resulted in just Video A (the one with audio) being the output.


ffmpeg -i videoB.mp4 -i video A.mp4 -c:v copy -c:a aac output.mp4



-
dnn: introduce dnn operand (in c code) to hold operand infos within network
29 August 2019, by Guo, Yejundnn: introduce dnn operand (in c code) to hold operand infos within network
the info can be saved in dnn operand object without regenerating again and again,
and it is also needed for layer split/merge, and for memory reuse.to make things step by step, this patch just focuses on c code,
the change within python script will be added later.Signed-off-by: Guo, Yejun <yejun.guo@intel.com>
Signed-off-by: Pedro Arthur <bygrandao@gmail.com>