
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (22)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 (7467)
-
How to downlaod 5 min video from 1 hour you tube video
27 novembre 2013, par psanjibI have tried and also success to download you tube video for that i use ffmpeg. But there is a problem if the video duration is long (1 hour) the that will take more time to download.
Is there any way to download 5 min video from 1 hour you tube video
Thanks in advance
-
Moviepy python images and text with colour background video
7 janvier, par sjpatelI trying to create video like below using Moviepy python.?


Video -
https://assets.json2video.com/examples/marketing/slide-text-right.mp4


Is this possible using Moviepy python ? I can't use FFMPEG because it not supported on my server.


from moviepy.editor import *

# Load the image
img_clip = ImageClip("your_image.png")

# Set the duration of the image clip
img_clip = img_clip.set_duration(5)

# Resize the image if necessary
img_clip = img_clip.resize(height=1080) # Keep the height consistent

# Define your text
text = "Your Marketing Message"

# Create a TextClip
txt_clip = TextClip(text, fontsize=70, color='white')

# Set the duration of the text clip
txt_clip = txt_clip.set_duration(5)

# Animate the text to slide in from the right
def slide_in(t):
 return 'center', -1000 + 1500 * t # Adjust these values based on your needs

txt_clip = txt_clip.set_position(slide_in)

# Set background color
txt_clip = txt_clip.on_color(size=(1920, 1080), color=(0, 0, 0), col_opacity=1)

# Position the image on the left side
img_clip = img_clip.set_position(('left', 'center'))

# Position the text clip on the right side
txt_clip = txt_clip.set_position(('right', 'center'))

# Composite the two clips together
final_clip = CompositeVideoClip([img_clip, txt_clip])

# Set the duration of the final clip
final_clip = final_clip.set_duration(5)

# Save the video
final_clip.write_videofile("image_and_slide_text.mp4", fps=24)



-
C# Flyleaf Loading FFmpeg libraries ':FFmpeg' failed
2 octobre 2023, par Dmytro KardashI'm trying to link ffmpeg libraries in EngineConfig


EngineConfig engineConfig = new EngineConfig();
engineConfig.FFmpegPath = @"C:\somepath";



Relative, absolute it doesn't matter.
Anyway it's always "Loading FFmpeg libraries ':FFmpeg' failed"


Summary for EngineConfig says


// Summary:
// Required to register ffmpeg libraries. Make sure you provide x86 or x64 based
// on your project.
// :<path> for relative path from current folder or any below
// <path> for absolute or relative path
</path></path>


I suggest that I am using improper libraries or something. I've got ones from official ffmpeg github as it is. Also I've tried FFmpeg.Autogen.dll, FFMpegCore.dll.