Recherche avancée

Médias (91)

Autres articles (101)

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

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (11437)

  • Efficient video compression for screen sharing ?

    15 juin 2014, par Maciej Jankowski

    I need to know what would be the most favorable approach for streaming screen content and controlling remote computer (mouse, keyboard). (I would like to build something like "one-click teamviewer")

    So my main question is about picking the video compression method for such requirements :

    1. Most information between subsequent frames stays the same
    2. Color depth can be degraded, but the details (text) must remain sharp
    3. It should work on low-end bandwidths : 512k and below
    4. Frames can be dropped
  • How can i create a stable checksum of a media file ?

    19 février, par yawniek

    how can i create a checksum of only the media data without the metadata to get a stable identification for a media file. preferably an cross platform approach with a library that has support for many formats. e.g. vlc, ffmpeg or mplayer.

    



    (media files should be audio and video in common formats, images would be nice to have too)

    


  • batch FFMPEG-Normalize AND convert via Python ?

    9 novembre 2017, par Boris

    I am currently working on a script to help me batch convert and
    normalize audio files (wma to mp3)
    In the search of useful tools I was lucky to stumble on FFMPEG-Normalize !

    My script is running from Python and I am calling FFMPEG via subprocess.
    I could not get the FFMPEG-Normalize to output Mp3 files - thus I am
    doing another FFMPEG call to convert the resulted wav files.
    Do you know how to make FFMPEG normalize also convert to mp3 ?
    The second issue is that only part of the files in my folder are being
    processed, I cant understand why. Out of 8 files I have in the path,
    sometimes all of them are processed and sometimes only 3, or 5... very
    weird !
    Here is my code :

    for file in sorted(os.listdir(pathdes)):
       os.chdir(pathdes)
       subprocess.call(['ffmpeg-normalize','-m','-l','-0.1',file])
       file = 'normalized-' + file
       file = file[:-3] + "wav"
       file2 = file[:-3] + "mp3"
       os.chdir(pathdes)
       subprocess.call(['ffmpeg', '-i', file,'-b:a','320k', file2])

    I understand FFMPEG normalize was written in Python, maybe there is
    another way to call it other than subprocess ?
    Am I missing something ? (i know i am !)

    Thank you so much !