Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (106)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 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, par

    MediaSPIP 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 2013

    Jolie 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 Borg

    I 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 Emilio

    Expected Behavior

    &#xA;

    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.

    &#xA;

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

    &#xA;

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

    &#xA;

    Actual Behavior

    &#xA;

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

    &#xA;

    Steps to Reproduce the Problem

    &#xA;

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

    &#xA;

    import moviepy.editor as mpy&#xA;&#xA;clip = mpy.ImageSequenceClip("images", fps=24, with_mask=True)&#xA;clip.set_opacity(0)&#xA;clip.write_videofile("video_test.mp4")&#xA;

    &#xA;

    Specifications

    &#xA;

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

    &#xA;

  • How to create photos to video maker app in android ?

    15 octobre 2022, par MehulGohil

    How can I create photo to video maker app for android ?

    &#xA;

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

    &#xA;

    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 ?

    &#xA;