
Recherche avancée
Autres articles (100)
-
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 (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (14934)
-
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


-
Can you call out to FFMPEG in a Firebase Cloud Function
15 mai 2017, 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.