
Recherche avancée
Médias (1)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (48)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Submit enhancements and plugins
13 avril 2011If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.
Sur d’autres sites (7339)
-
Remove flicker, crop and upscale in ffmpeg
22 août 2024, par SabhaI spent one full day on
ffmpeg
line commands by searching a lot on google but could not achieve what I wanted to and therefore I came here to seek some advice.
I have a videotestinput.mpg
which I believe is ampeg-2
video. It is of720x576
dimensions having25 fps
and a total bitrate of4224 kbps


First problem is that the exported footage is flickering which I wasn't able to remove using ffmpeg with lots of commands I tried like adjusting brightness, contrast, hue, saturation and all.


Second problem was to extract the center portion which I was able to do it with the crop feature using following command.


ffmpeg -i testinput.mpg -filter:v "crop=468:374" testoutput.mpg



But after cropping I observed that that bitrate fell from
4224 kbps
to761 kbps
and I assume this has reduced the quality of video.

What I want to achieve is :


- 

- Crop the video properly keeping the same quality (
acodec copy
vcodec copy
) -> ffmpeg did not allow me to do both the things together (cropping and having same codec) - Remove the flicker from video and upscale it to 4K or HD quality so that it looks nice on big televison (preferably 4K)






I request some help on how to achieve the desired result. Can someone shed some light on it ?


Here are 10 seconds sample videos on google drive that I am working on






Thanks


- Crop the video properly keeping the same quality (
-
Can you call out to FFMPEG in a Firebase Cloud Function
27 juillet 2024, par Dave ParksPer the Firebase Cloud Functions documentation, you can leverage ImageMagick from within a cloud function : https://firebase.google.com/docs/functions/use-cases



Is it possible do something similar but call out to FFMPEG instead of ImageMagick ? While thumbnailing images is great, I'd also like the capability to append incoming images to a video file stored out on Firebase Storage.


-
Java, FfMPEG : Gson not found even though it's there.
19 avril 2018, par We are BorgI am working on a Spring-MVC application in which we are using FFProbe to get media information. Unfortunately, it’s not working on our live instance. We have ffmpeg & ffprobe installed on same path. The error we get is GSON is not foudn, although we have it.
Error log :
Caused by:
java.lang.NoSuchMethodError: com.google.gson.Gson.<init>(Lcom/google/gson/internal/Excluder;Lcom/google/gson/FieldNamingStrategy;Ljava/util/Map;ZZZZZZLcom/goo
gle/gson/LongSerializationPolicy;Ljava/util/List;)V
at com.google.gson.GsonBuilder.create(GsonBuilder.java:545)
at net.bramp.ffmpeg.FFmpegUtils.setupGson(FFmpegUtils.java:124)
at net.bramp.ffmpeg.FFmpegUtils.<clinit>(FFmpegUtils.java:23)
at net.bramp.ffmpeg.FFprobe.<clinit>(FFprobe.java:29)
</clinit></clinit></init>POM.xml :
<repositories>
<repository>
<id>apache.snapshots</id>
<name>Apache Development Snapshot Repository</name>
<url>https://repository.apache.org/content/repositories/snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<parent>
<groupid>io.spring.platform</groupid>
<artifactid>platform-bom</artifactid>
<version>2.0.8.RELEASE</version>
<relativepath></relativepath>
</parent>
<dependencies>
<dependency>
<groupid>net.bramp.ffmpeg</groupid>
<artifactid>ffmpeg</artifactid>
<version>0.6.2</version>
</dependency>
<dependency>
<groupid>com.google.code.gson</groupid>
<artifactid>gson</artifactid>
</dependency>
</dependencies>Usage :
Error thrown on first line.
FFprobe ffprobe = new FFprobe("/usr/bin/ffprobe");
FFmpegProbeResult probeResult = ffprobe.probe(filePath);I can confirm that ffprobe file is available on
/usr/bin
. What am I doing wrong here ? Thank you.