Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (33)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (7299)

  • Should I use ffmpeg via subprocess in Python or pyffmpeg ?

    30 août 2020, par pigeonburger

    Currently I am working on a project in python which also requires ffmpeg. Right now, I am getting the two to work together via the subprocess module, but I have also heard about Pyffmpeg. Is this probably a better option to use ? And is it just as straightforward as ffmpeg in cmd ?

    


    Thanks

    


  • Is there a way to automate / script video editing with python ?

    20 août 2020, par user2436057

    I do have the problem that I have to generate a daily video file for an information screen.

    


    I need to be able to create a video with preferably a python script that goes over all images in a directory and display each image for 10 seconds while scrolling corresponding text next to it and then display the next image. I might also have to have the ability to add a sound file or background music in the future.

    


    I have looked at ffmpeg and it has some ability to do what I want but I thought there might be a better way or tool I could use. Since ffmpeg takes a lot of steps and its really hacky.

    


    I am able to code the python myself I just need some API or library to handle the video processing.

    


    Not 100% this is the right place to ask.

    


  • Merging audio and video files both in mp4 format in python [duplicate]

    24 janvier 2021, par Anuj Dhillon

    This is my first question here.

    


    I am trying to write a script in python to download videos from reddit. In reddit both videos and audios are downloaded separately in mp4 format. I've managed to download both the audio and video files.

    


    Now I want to merge these files together. I know it can be done in python with ffmpeg but I have no idea how it works when the audio is in mp4 format. Any help would be appreciated.