Recherche avancée

Médias (91)

Autres articles (32)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (4529)

  • http live video streaming and embed ffplay ?

    17 novembre 2017, par ansari

    I have one query related to http live streaming concept.

    In my cases :

    case-1 : when I am playing the live streaming in ffplay, gives at most 2 seconds dealy.

    case-2 : while playing the live streaming in vlc player , gives at most 5 seconds delay.

    case-3 : In videojs player , shows at most 13 seconds delay.

    Is there any solution to get case-1 in both 2 and 3 cases ? And also May i know that can we embed ffplay into html page ?

  • Play same audio file to two different sound cards simultaneously using android media player [on hold]

    15 décembre 2016, par Hardik

    I have one custom board( media player) running android4.2 OS on it and I need to add a feature that will play same audio to two different sound cards simultaneously.

    I have two output devices HDMI and TLV320aic3100 Codec.
    And Want to play Video and audio through HDMI and same audio should play through TLV codec. Audio through TLV codec should be in sync with HDMI video/audio.

    Right now I’m able to play audio through TLV codec by hard-coding sound card number in tinyalsa PCM code "pcm.c" which is used by HAL code of Android Media Player (by default this code will give audio to HDMI),
    but not able to provide audio to both sound cards simultaneously.

    I tried with creating thread in pcm code and writing incoming audio data to both sound card, By doing this HDMI going into under-run problem.

    Is there any way to provide same audio to both sound cards simultaneously using Android Media Player or any other options to try ?

  • FFmpeg audio capturing from mic is not working properly

    5 mars 2013, par Thirumalai murugan

    I am using the ffmpeg-20130205-git-c2dd5a1-win64-static version, I am trying to capture the audio and video and send it to the FMS server, I have tried with the following code initially

    ffmpeg -r 25 -f dshow -i video="Logitech HD Pro Webcam C920":audio="Rear Input (SoundMAX Integrated Digital High Definition Audio)" -vcodec libx264 -b:v 600k -b:a 128k -f flv rtmp://127.0.0.1/live/mystream

    it through the following error

    [dshow @ 00000000023f8920] Could not find audio device.
    video=Logitech HD Pro Webcam C920:audio=SoundMAX Integrated Digital High Definit
    ion Audio): Input/output error

    Then I modified the code as follows its working fine

    ffmpeg -f dshow -i video="Logitech HD Pro Webcam C920":audio="Rear Input (SoundMAX Integrated" -b:v 600k -acodec libmp3lame -b:a 128k -f flv rtmp://127.0.0.1/live/mystream

    I am unable to understand why its not accepting the full name of the audio driver and if I use the libx264 with the Logitech HD Pro Webcam C920 its not giving the video, video is blank (note : while using the iball c2.0 camera I am able to get the video)

    what is the wrong in my code ? how to publish in the libx264 format ?