
Recherche avancée
Autres articles (39)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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 (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (5372)
-
Below command works on android flutter but not working with ios flutter
23 janvier 2023, par Aman ChoudharyThis below command is properly working for android flutter but not working on ios flutter ..
It is a link of command ffmpeg can you check it and resolve it


https://docs.google.com/document/d/114edgC9a9c30R5DM_thj_zxfsvN8e0XoRlqzI1LzGOQ/edit?usp=sharing


-
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 ?


-
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