Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (65)

  • 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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (11622)

  • How to play bunch of h264 files from amazon as URL using ffmpeg in android

    16 avril 2015, par syam vakkalanka

    I have bunch of .h264 files in amazon s3. I can play each file by selecting them. My challenge is to play more than one file at a time like below image through amazon s3 url without saving file in sd card. enter image description here

  • Online video editing server for streaming content

    23 février 2014, par netCreate

    I'm looking for software that will enable me to make online video editing for streaming content.
    I do have background with FFmpeg (as video multiplying), MLT framework and Red5 as streaming server.

    Now what I need to do is to be able to stream online content and modify it - add layers and effects online.

    I know how to do this thing offline with Kdenlive or generate MLT scripts. I want to be able to to this online.

    What should I do to enable online editing ?

  • batch convert videos with ffmpeg while copying other files in folder hierarchy

    9 novembre 2022, par jan

    I have a large video archive in a hierarchical folder structure that includes audio and other files alongside the videos. I would like to replicate the entire structure onto a different disk while converting the videos with ffmpeg to .mp4 format (original is .mov). I figured out the settings for converting to .mp4 :

    



    for f in /path/to/archive/*/*/*.mov; do ffmpeg -i "$f" –c:v libx264 –preset superfast –crf 18 –pix_fmt yuv420p –coder vlc –refs 1 –qmin 4 –c:a libvo_aacenc –b:a 256k –ar 48000 "${f%.mov}.mp4"; done


    



    But now I have no clue how to
    
(a) place the converted .mp4 file into a parallel folder structure onto a different disk,
    
(b) also copy other files in the structure over.

    



    The structure looks like this :

    



    Archive
    2013-05-01
        2013-05-01_08.51.10
            2013-05-01_08.51.10.mov
            2013-05-01_08.51.10.wav
            2013-05-01_08.51.10.txt
        2013-05-01_09.23.47
            2013-05-01_09.23.47.mov
            2013-05-01_09.23.47.wav
            2013-05-01_09.23.47.txt
            2013-05-01_09.23.47.jpg
            (sometimes there are other files and subdirectories too)
        2013-05-01_09.25.23
            ... 
    2013-05-02
        2013-05-02_08.51.10
            2013-05-02_08.51.10.mov
            2013-05-02_08.51.10.wav
            2013-05-02_08.51.10.txt
    ...


    



    Each folder has one video, one wav, one txt, and possibly some other files or subfolders. I would like to replicate the entire structure while replacing the .mov files with converted .mp4 versions.
    
Help is greatly appreciated !