Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (60)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (9173)

  • FFmpeg - zoom into video clip with an easing

    25 janvier 2023, par cjd

    I am looking to zoom into a video clip using FFmpeg. The zoom should take place with an easing function controlling the zoom speed.

    


    I have solved this for the above but only with a linear speed.

    


    I believe an easing function should look something like : (cubic ease)

    


    min(pzoom + (pow(((pzoom - 1)/(zoom_factor - 1})), 3)), zoom_factor)


    


    where zoom_factor is the amount I wish to zoom in by (and the zoom is starting from 1x). This issue here is that at the beginning of the zoom pzoom - 1 = 0 as pzoom is also 1.

    


    How could this be accomplished using an easing function controlling the zoom speed ?

    


  • How can i set an audio file for video clip with moviepy without re encoding

    12 février 2023, par not me

    So far i tried :

    


    from moviepy.editor import *
videoclip = VideoFileClip("filename.mp4")
audioclip = AudioFileClip("audioname.mp3")

new_audioclip = CompositeAudioClip([audioclip])
videoclip.audio = new_audioclip
videoclip.write_videofile("new_filename.mp4")


    


    But it takes very long time.
I'd like to do it without re encoding. i also prefer opening video or audio clip from bytes in moviepy

    


  • Extract video clip from MP4 of exacting length [closed]

    21 janvier, par Wes

    The tools I've tried so far are only gives me approximations to the start and end times that I specify. They are usually off by a few seconds.

    


    I need a tool to extract video and audio at exact start and stop times, ideally to the millisecond. It would be preferable to do so without any easily noticeable loss in video quality from the original. I would also prefer to keep the audio in the video.