Recherche avancée

Médias (91)

Autres articles (22)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

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

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

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

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

    I'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:&#xA;//     Required to register ffmpeg libraries. Make sure you provide x86 or x64 based&#xA;//     on your project.&#xA;//     :<path> for relative path from current folder or any below&#xA;//     <path> for absolute or relative path&#xA;</path></path>

    &#xA;

    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.

    &#xA;