
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (106)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (10312)
-
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. -
MoviePy ImageSequenceClip doesn't create a video with transparent background even though the images have transparent background
20 août 2020, par EmilioExpected Behavior


I am creating a video using moviepy ImageSequenceClip. The input are the images found on this link : https://drive.google.com/drive/folders/1hQ3pfGPMvDAijS4IUcbu5hVy_HmrfCOh?usp=sharing.


All the images are png and have some pixels with the alpha channel set to 0 (the background is transparent).


The created video should keep those background pixels with alpha channel set to 0 (the video background should be transparent).


Actual Behavior


The created video is not transparent. The background pixels show their RGB values.


Steps to Reproduce the Problem


"images" folder should contain this images : https://drive.google.com/drive/folders/1hQ3pfGPMvDAijS4IUcbu5hVy_HmrfCOh?usp=sharing.


import moviepy.editor as mpy

clip = mpy.ImageSequenceClip("images", fps=24, with_mask=True)
clip.set_opacity(0)
clip.write_videofile("video_test.mp4")



Specifications


Python Version : 3.7
Moviepy Version : 1.0.3
Platform Name : MacOS Catalina
Platform Version : 10.15.6
I also tried it with Docker using this image and the issue was still there : tiangolo/uvicorn-gunicorn-fastapi:python3.7


-
How to create photos to video maker app in android ?
15 octobre 2022, par MehulGohilHow can I create photo to video maker app for android ?


https://play.google.com/store/apps/details?id=com.shortly.videomaker.video.status


I want to make the same app. I researched the last few weeks but still not find the solutions. Please help me with this. Is there any specific SDK or API ?