Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (30)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

Sur d’autres sites (5806)

  • Video to GIF Conversion with Random Frames on AWS Lambda using Nodejs and ffmpeg

    5 avril 2024, par rahulfaujdar

    I'm seeking assistance with automating the conversion of several videos stored in an S3 bucket into GIFs. Specifically, I aim to generate GIFs that are precisely 10 seconds long, each comprising random frames sampled from different sections of the original video. The randomness should encompass frames from the beginning, middle, and end of each video, ensuring a varied and engaging GIF output.

    


    Currently, I'm in the process of implementing this functionality using Nodejs and AWS Lambda, utilizing ffmpeg for video processing. However, I'm facing challenges in achieving the desired outcome efficiently.

    


    If anyone has experience or insights into how to accomplish this task effectively within the AWS Lambda environment, especially regarding Nodejs code and ffmpeg usage, I would greatly appreciate your guidance and expertise.

    


  • Developing a multi-tool video & audio program

    14 février 2019, par Risviltsov

    I’m in the middle of the Microsoft TEALS Java program, and we’ve just done a picture editor. I got an idea to develop a multi-tool program that edits video and audio programs professionally for those who can’t afford $2,000 in editing programs but demand all the tools. I’ve ran into a brick wall with the planning :

    What tools should I put in it ? I want this program to have most, if not all possible ways to change media files (as if I was to combine programs like Audacity, a lot of Adobe programs, etc.)

    I’m learning up FFMPEG and AWT, but I really want to tackle this project’s planning this year, to tackle on the programming in the next two years independently. Yay straightforward freeware* & too much time !

    (I don’t think this post belongs here, but I’m in search of help for I have no budget nor any help [it’s going into culinary])

    Thanks for your time.

  • How can I add chapters to .mp4 files using a python script ? [duplicate]

    7 mars 2023, par Random

    Is there an easy way to add chapters (i.e. : sections with titles) to .mp4 files using a python script ?

    


    For example, the script could process a 3-minutes video and label the first minute as "Beginning", the second minute as "Middle", and the last minute as "End".

    


    The only solution (link) I stumbled upon so far involves using a ffmpeg command on the command line to extract the original ffmetadata from the video file before appending the chapters to it and updating the video with it.

    


    However, I would like the process to be automated using a python script (instead of having to use the command line each time I have to process a video).