Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (87)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (16882)

  • Red5 and FFmpeg in streaming [closed]

    22 mai 2013, par user2408040

    I have installed Red5 and ffmpeg in Ubuntu.

    My idea is use the example http://localhost:5080/demos/ofla_demo.html for a simple streaming with ffmpeg.

    I use ffmpeg as follow :

    ffmpeg -i out.flv -f flv "rtmp://localhost:5080/oflaDemo"

    I hope is to see in http://localhost:5080/demos/ofla_demo.html my streaming but this not happen.

    Someone can tell me I'm doing wrong ?

    Sorry my English :)

    Regards

  • ffprobe stream selection for encoding

    22 octobre 2014, par user3652819

    when I run ffmpeg, I can see "default" audio and video stream :

    Stream #0:0(und): Video: h264 (Constrained Baseline) (avc1 / 0x31637661), yuv420p, 960x400 [SAR 1:1 DAR 12:5], 3859 kb/s, 23.98 fps, 23.98 tbr, 24k tbn, 47.95 tbc
     (default)
    Metadata:
     creation_time   : 2013-05-03 22:50:47
     handler_name    : GPAC ISO Video Handler
    Stream #0:1(und): Audio: aac (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 92 kb/s
     (default)
    Metadata:
     creation_time   : 1970-01-01 00:00:00
     handler_name    : SoundHandler
    Stream #0:2: Video: mjpeg, yuvj420p(pc), 675x1000 [SAR 72:72 DAR 27:40], 90k tbr, 90k tbn, 90k tbc

    As I understand, this stream selected by ffmpeg as input when encoding, if map option not set.

    How can I get "default" stream using ffprobe ?

    Sorry for English

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