
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (22)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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" (...)
Sur d’autres sites (7467)
-
ffmpeg showwaves color
14 novembre 2022, par AndrewI'm trying to produce a video that has a lime green colored waveform overlayed on top of a background image. Unfortunately though, there is a grey color in the lines as you can see here :






How can I make the grey parts lime green as well ?



And if possible, I would like to make the lines thicker as well.



Here is my ffmpeg command :



ffmpeg -i input.aac -i background.jpg -filter_complex "[0:a]aformat=sample_fmts=s16:sample_rates=4410:channel_layouts=mono,showwaves=size=300x200:mode=p2p:rate=10:colors=#68b847[fg];[1:v][fg]overlay=130:150,format=yuv420p[v]" -map "[v]" -map 0:a -c:v libx264 -r 10 -c:a copy -r 10 -movflags +faststart output.mp4


-
Remove Unnecesary Maven Dependencies from Eclipse
18 mai 2021, par ur3kI am working with Spring-Boot 2.3.8 and Eclipse.


I am using these dependencies to work on some videos :



 <dependency>
 <groupid>org.bytedeco</groupid>
 <artifactid>javacv</artifactid>
 <version>1.5.4</version>
 </dependency>

 
 <dependency>
 <groupid>org.bytedeco</groupid>
 <artifactid>opencv-platform</artifactid>
 <version>4.4.0-1.5.4</version>
 </dependency>

 
 <dependency>
 <groupid>org.bytedeco</groupid>
 <artifactid>ffmpeg-platform</artifactid>
 <version>4.3.1-1.5.4</version>
 </dependency>
 



Eclipse is adding all JARs of opencv, javaccp and ffmpeg, including JARs for Androind, MacOs, etc. I just need the ones for Windows and the problem is that these extra dependencies are creating problems for my teams when they try to load the project, build or test it (it is extreamly slow or just doesnt work).


These dependencies are not present in my final WAR when I build with maven form the command line and I use :


mvn -Djavacpp.platform=windows-x86_64 clean install 



Is there a way to tell eclipse to do the same ?


The WAR size goes from 800 MB to around 200 MB when building without and with and the platform flag, these extra 600 MB are what in my opinion is too much for eclipse.


Here is an image of all the JARs being added to the project.




-
How can I configure library dependencies in setup.py
1er septembre 2021, par idontidontknowknowI want to pack a c++ project into python wheel package that user can install it by
pip install myProject
in different platform(like ubuntu, centos...), but the project is rely on a open source c library(ffmpeg).

I try to generate
ffmpeg.so
, then load it withctypes.CDLL("ffmpeg.so", mode=RTLD_GLOBAL)
, it works in ubuntu(the same version with my development platform but no ffmpeg environment), but not works in centos.

What should I do that make the wheel package can pip and use in different platform without configuring dependencies again ?