Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (41)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

  • ffmpeg is buffering 10 seconds of data every 10 seconds, but I need 1 second of data every second

    30 juillet 2014, par user306517

    I am trying to render an URL, and when I use ffmpeg to do it, it is giving me 10 seconds of data, every 10 seconds. I need to get the data in a way that I am getting 1 second of data every second.

    it looks like the URL i am trying to read from is a "m3u8" url, which contains a bunch of m3u8 files, which contain .ts files (transport stream).

    any help here would be appreciated.

    per suggestion - my ffmpeg command looks like this :

    ffmpeg -y -i ".....m3u8" -ar 32000 -ac 1 -acodec pcm_s16le /tmp/foo.wav
  • aarch64 : Use .data.rel.ro for const data with relocations

    16 novembre 2014, par Martin Storsjö
    aarch64 : Use .data.rel.ro for const data with relocations
    

    This reverts commit c00365b46d464ce47716315c1801818d811bdb9a
    in addition to using a different section.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavcodec/aarch64/fft_neon.S
    • [DH] libavcodec/aarch64/opus_imdct_neon.S
    • [DH] libavutil/aarch64/asm.S
  • How to convert mp3 data to wav data ?

    12 mai 2023, par Yali

    I have a wav audio file and i extracted data from that wav using python pydub module and i got this data

    &#xA;

    [-139 18 -215 34 -196 6 -295 -31 -301 -35 -211 13 -93 47&#xA;-60 39 -58 7 -17 2]

    &#xA;

    (this is first 10 data i got more than 1 million data)

    &#xA;

    from pydub import AudioSegment&#xA;import numpy as np&#xA;&#xA;song = AudioSegment.from_file("test.wav")&#xA;extract_data = np.array(song.get_array_of_samples())&#xA;print(extract_data[:10])&#xA;

    &#xA;

    then i converted wav to mp3 using that module and again extracted data from mp3 file and i got this data

    &#xA;

    [-108 7 -193 24 -223 11 -239 -31 -248 -43 -203 -10 -101 23&#xA;-14 24 10 15 24 16]

    &#xA;

    (this is first 10 data i got more than 1 million data)

    &#xA;

    song = AudioSegment.from_file("test.wav")&#xA;song.export("test.mp3")&#xA;mp3_song = AudioSegment.from_file("test.mp3")&#xA;extract_data = np.array(mp3_song.get_array_of_samples())&#xA;print(extract_data[:10])&#xA;

    &#xA;

    and again i converted mp3 to wav now i got mp3 data instead of wav data.

    &#xA;

    mp3_song = AudioSegment.from_file("test.mp3")&#xA;mp3_song.export("test1.wav", format="wav")&#xA;&#xA;song = AudioSegment.from_file("test1.wav")&#xA;extract_data = np.array(song.get_array_of_samples())&#xA;print(extract_data[:10])&#xA;

    &#xA;

    My point is how to convert mp3 data to original wav data ?

    &#xA;

    please help me,

    &#xA;

    Thanks.

    &#xA;