Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (100)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (8643)

  • Add a clarification to the floor1 decode spec, since I had to re-determine some of...

    3 février 2012, par Monty
    Add a clarification to the floor1 decode spec, since I had to re-determine some of what
    it says for myself after not thinking about it for 15-ish years.
    

    Also, fix an indentation bug that occurred due to TABs sneaking in

    git-svn-id : http://svn.xiph.org/trunk/vorbis@18181 0101bb08-14d6-0310-b084-bc0e0c8e3800

    • [DH] doc/07-floor1.tex
  • How can I write SAPI audio stream to stdout in VBScript ?

    10 mai 2015, par Ravenstine

    I have this VBScript that will take some text from the command line and dictate it to a wav file using MS SAPI.

    Const SAFT48kHz16BitStereo = 39
    Const SSFMCreateForWrite = 3

    Set oFileStream = CreateObject("SAPI.SpFileStream")
    oFileStream.Format.Type = SAFT48kHz16BitStereo
    oFileStream.Open "C:\sample.wav", SSFMCreateForWrite

    Set Sapi = CreateObject("SAPI.SpVoice")
    Set Sapi.voice = Sapi.GetVoices("Name=Microsoft Sam", "Language=409").Item(0)
    Sapi.volume = 100
    Sapi.rate = 3
    Set Sapi.AudioOutputStream = oFileStream
    Set args = Wscript.Arguments
    Sapi.Speak(args.item(0))

    Is it possible to, instead of write the audio to a file, write it to standard output ? I’d like to be able to pipe the audio directly to FFMpeg without writing to the file system.

  • riffdec : Explicitly null-terminate array to work around VC++ bug

    28 janvier 2016, par Bruce Dawson
    riffdec : Explicitly null-terminate array to work around VC++ bug
    

    Due to this bug in VC++ 2015 Update 1 :
    https://connect.microsoft.com/VisualStudio/feedback/details/2291638

    the ’key’ array in ff_read_riff_info() ends up being not null
    terminated which led to failures in a Chromium unit tests. Update 2
    should have a fix, but until then it is important to avoid problems.

    • [DH] libavformat/riffdec.c