Recherche avancée

Médias (91)

Autres articles (49)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (10922)

  • Core : Split out `creditcard` method

    21 octobre 2015, par Arkni
    Core : Split out `creditcard` method
    

    As mentioned by Jörn in #1506

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

  • 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 ?