
Recherche avancée
Autres articles (41)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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 (8001)
-
dnn : introduce dnn operand (in c code) to hold operand infos within network
29 août 2019, par 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> -
How to combine a video with audio from another video using FFMPEG ?
21 août 2023, par 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



-
FFmpeg v0.12 is not working for Angular 16
30 septembre 2024, par 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.