Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (95)

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

  • Record and play at same time using FFMPEG (from usb)

    9 février 2018, par Eduardo Preto

    I’m trying to record and play at the same time from a Video Capture Device (USB3HDCAP). Currently my script is this :

    ffmpeg  -f dshow -i video="CY3014 USB, Analog 01 Capture" mark1.mp4 -preset ultrafast -vcodec libx264 -tune zerolatency -vcodec mpeg4 -f mpegts udp://127.0.0.1:23000

    Basically I’m streaming the video using UDP to my computer using VLC (to play). However, the video quality (from file) is perfect, but the stream is delayed a several seconds and quality is not so good has I pretend.

    Anyone has some sugestion of how can I improve my implementation ?

  • avcodec_decode_video2 method take more than 40 ms to decode one packet how to reduce time

    7 avril 2017, par P Akhtar
    vcodec_decode_video2()

    method take more than 40 ms to decode one packet how to reduce time of decoding it happen with PNG Codec and lagrith codec video.

  • Record inputs at the same time

    23 mai 2017, par Xavier BuC

    Here is my audio input list :

    **** Liste des Périphériques Matériels CAPTURE ****
    carte 0: PCH [HDA Intel PCH], périphérique 0: ALC1150 Analog [ALC1150 Analog]
     Sous-périphériques: 1/1
     Sous-périphérique #0: subdevice #0
    carte 0: PCH [HDA Intel PCH], périphérique 2: ALC1150 Alt Analog [ALC1150 Alt Analog]
     Sous-périphériques: 1/1
     Sous-périphérique #0: subdevice #0
    carte 2: USB [Plantronics .Audio 628 USB], périphérique 0: USB Audio [USB Audio]
     Sous-périphériques: 1/1
     Sous-périphérique #0: subdevice #0

    I would like to be able to record all at the same time with ffmpeg. I try with that command but it don’t work :

    ffmpeg -f alsa -i hw:0 -i hw:2 out.wav

    Is it possible to record the input at the same time in the same out.wav file ? Will the wav file be a stereo file with the left the hw:0 and the right the hw:2 ?