Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (40)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (8797)

  • How to add a scrolling text of the audio file song name on a sepecific part of a video and stream it to youtube using ffmpeg

    5 novembre 2022, par Youssef Lasheen

    I know this is s very long and specific question but it can be broken down to these points :

    


      

    • How to add a text of song name on video
    • 


    • How to scroll in a specific area not from the beginning of the video to the end
    • 


    • How to stream a looping video and loop through multiple audio files to youtube/twitch.
    • 


    


    I kinda got the third point but i think its not an elegant solution

    


    ffmpeg -re -stream_loop -1 -i back.gif -safe 0 -i mylist.txt -c copy -map 0:v:0 -map 1:a:0 -c:v libx264 -preset veryfast -b:v 3000k -maxrate 3000k \ -bufsize 6000k -pix_fmt yuv420p -g 50 -c:a aac -b:a 160k -ac 2 \ -ar 44100  -f flv rtmp://live.twitch.tv/app/$key

    


    I also found this script that adds a scrolling image (input.jpg) to specific aree of a video but i coudlnt integrate it with the script above

    


    ffmpeg -y -ignore_loop 0 -r 25 -i back.gif -loop 1 -r 25 -i input.jpg -filter_complex "[0:v]crop=270:257:360:55[c0];[c0][1:v]overlay=y='257-t*257*0.04':eof_action=endall[fg];[0:v][fg]overlay=x=360:y=55:eof_action=endall" -t 50 output.mp4

    


  • Localization : fix meaning in Bulgarian sentence (#2112)

    1er décembre 2017, par user890104
    Localization : fix meaning in Bulgarian sentence (#2112)
    

    The "maxlength" message has wrong meaning in Bulgarian. The current meaning is :
    Please enter more than 0 characters.
    The correct meaning should be :
    Please enter no more than 0 characters.
    I could use "less" (по-малко) to mean the same thing, but it does not sound natural in this context.

  • Unexpected error : No such file or directory : 'ffprobe', while using pydub in Digital Ocean

    10 mai, par Cjmaret

    I have an app that processes audio files and converts them to 'wav' format. This works locally on my Mac, however in DigitalOcean, when recording audio, i get the below error, followed by a 500 :

    


    warn("Couldn't find ffprobe or avprobe - defaulting to ffprobe, but may not work", RuntimeWarning)
Unexpected error: [Errno 2] No such file or directory: 'ffprobe'

    


    I've tried including binary files in my code for ffmpeg and ffprobe but got the same error. ffmpeg and ffprobe binaries are in /bin in the root of my project :

    


    from pydub import AudioSegment

if platform.system() == "Darwin":  # mac
    pass
elif platform.system() == "Linux":  # digitalocean)
    AudioSegment.converter = os.path.join("bin", "ffmpeg-linux")
    AudioSegment.ffprobe = os.path.join("bin", "ffprobe-linux")
else:
    raise EnvironmentError(
        "Unsupported platform. Only macOS and Linux are supported.")