Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • How to get offset from audio

    24 avril 2014, par Dhaval

    I need to insert another audio on specific offset (where space existed in audio track).

    So, For that, i need to fetch offset of each space from audio and then apply some ffmpeg/sox command to insert another aduio on that offset.

    Please share me some command to fetch the offset for space
    first so, later, i could mix the another audio on same offset.

    Please suggest your view/command or any library.

    I think, it would be possible in FFMPEG OR SOX.

    Updated :
    I have two audio files.
    In which one audio files contains some songs but, there are some space at some interval. These space should be fill by another audio.

    example :
    Audio 1 - song - audio has space at 5 places.

    audio 2 - a people name audio.

    output - audio one should fill up the all 5 places by aduio 2.

    Thanks

  • Merge commit ’563e6d860391bac0511984e5c0842320b5c94d2d’

    10 novembre 2015, par Hendrik Leppkes
    Merge commit ’563e6d860391bac0511984e5c0842320b5c94d2d’
    

    * commit ’563e6d860391bac0511984e5c0842320b5c94d2d’ :
    segafilm : drop the "song and dance" for cinepak

    Merged-by : Hendrik Leppkes <h.leppkes@gmail.com>

    • [DH] libavformat/segafilm.c
  • Batch extract first 10 seconds of multiple mp3 files using ffmpeg

    26 décembre 2018, par Maude

    I have a folder filled with songs. I would like to make ONE mp3 file containing a mashup of 10 seconds of each song.

    I have found that FFMPEG is an easy software to do so.

    I found how to cut a single file : ffmpeg -ss 0 -t 10 -i file.mp3 file.wav

    And how to write a loop for multiple steps : for i in *.mp3; do ...

    But I am not sure how to mix the two into only 1 file. If it’s not possible, I guess I can also make a separate 10 sec file for each and then regroup.