Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (70)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • 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 (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (6807)

  • Find timestamps of videos split using FFmpeg

    13 décembre 2017, par Spandan Thakur

    I am able successfully able to split a video with FFmpeg using the below command

    ffmpeg -i Sample.mp4 -c copy -map 0 -segment_time 900 -f segment -reset_timestamps 1 output%03d.mp4

    This will split videos into 15 mins chunks (900 seconds) however this is not 100% accurate.

    Is there a way to add the starting and ending timestamp of each segment, in the output file name, relative to the original file ? Or generate a file containing the timestamps ?

    I want to know exactly where the cuts where made. I do not want to slow down the process though by forcing FFmpeg to cut at exactly 15 mins.

  • Ffmpeg split video into multiple chunk but in different duration length

    15 décembre 2020, par Vicky

    I know how to split video into equal duration length, but here i want to split video into un-equal parts and number of parts and duration will be different for each time.

    



    For ex, video length is 50 sec, i want to split it in 4 parts. 
1) 0 sec - 5 sec 
2) 6 sec - 22 sec
3) 23 sec - 34 sec
4) 35 sec - 50 sec


    


  • How to get ffmpeg split results in a streaming-like way ?

    15 décembre 2016, par Alex

    My goal is to transfer video files to another peer using webRTC and play it in real time on web page. In case of lag, I decided to split video files before tranferring. I’m using ffmpeg (actually a javascript version here) to split videos using commands like

    ffmpeg -i input.mp4 -codec copy -map 0 -f segment out%0d.mp4

    , which will get a series of output files at the same time. But I want to transfer the output files one by one and start to play them in right order before getting all output files, can i do that ?