Recherche avancée

Médias (0)

Mot : - Tags -/médias

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

Autres articles (109)

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

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (12621)

  • avcodec : add decoder for argonaut games' adpcm codec

    26 janvier 2020, par Zane van Iperen
    avcodec : add decoder for argonaut games' adpcm codec
    

    Adds support for the ADPCM variant used by some Argonaut Games' games,
    such as 'Croc ! Legend of the Gobbos', and 'Croc 2'.

    Signed-off-by : Zane van Iperen <zane@zanevaniperen.com>

    • [DH] Changelog
    • [DH] doc/general.texi
    • [DH] libavcodec/Makefile
    • [DH] libavcodec/adpcm.c
    • [DH] libavcodec/allcodecs.c
    • [DH] libavcodec/avcodec.h
    • [DH] libavcodec/codec_desc.c
    • [DH] libavcodec/version.h
  • How to create a spectrogram image from an audio file in Python just like how FFMPEG does ?

    2 mai 2020, par hamandishe Mk

    My code :

    &#xA;&#xA;

    import matplotlib.pyplot as plt&#xA;from matplotlib.pyplot import specgram&#xA;import librosa&#xA;import librosa.display&#xA;import numpy as np&#xA;import io&#xA;from PIL import Image&#xA;&#xA;samples, sample_rate = librosa.load(&#x27;thabo.wav&#x27;)&#xA;fig = plt.figure(figsize=[4, 4])&#xA;ax = fig.add_subplot(111)&#xA;ax.axes.get_xaxis().set_visible(False)&#xA;ax.axes.get_yaxis().set_visible(False)&#xA;ax.set_frame_on(False)&#xA;S = librosa.feature.melspectrogram(y=samples, sr=sample_rate)&#xA;librosa.display.specshow(librosa.power_to_db(S, ref=np.max))&#xA;buf = io.BytesIO()&#xA;plt.savefig(buf,  bbox_inches=&#x27;tight&#x27;,pad_inches=0)&#xA;&#xA;# plt.close(&#x27;all&#x27;)&#xA;buf.seek(0)&#xA;im = Image.open(buf)&#xA;# im = Image.open(buf).convert(&#x27;L&#x27;)&#xA;im.show()&#xA;buf.close()&#xA;

    &#xA;&#xA;

    Spectrogram produced

    &#xA;&#xA;

    enter image description here

    &#xA;&#xA;

    Using FFMPEG

    &#xA;&#xA;

    ffmpeg -i thabo.wav -lavfi showspectrumpic=s=224x224:mode=separate:legend=disabled spectrogram.png

    &#xA;&#xA;

    Spectrogram produced

    &#xA;&#xA;

    enter image description here

    &#xA;&#xA;

    Please help, i want a spectrogram that is exactly the same as the one produced by FFMPEG, for use with a speech recognition model exported from google's teachable machine.&#xA;Offline recognition

    &#xA;

  • Cannot Register my dll using regsrv32 but only with Release build, Debug build works ok

    4 février 2020, par kirit

    I am having same problem as this question.

    I have my own Dlls that uses ffmpeg (Ver 0.6.3) dlls (AVCODEC-52.dll, AVFormat-52.dll,.. all build under MinGW using mingw-get-inst-20110530) ..
    I have the dlls and libs in my VC2008 project and it all builds ok in both debug and release mode and also runs ok... but if i try to register using regsvr32 it errors out for release Only (Debug works ok).
    Checking my dll using dependence walker tool shows that this dlls are of readish color and shows CoCreateInstance, CoInitialize ...(i think this are part of old32.dll) are missing..

    Based on the above link looks like some kind of build issue with ffmpeg under minGW.. but details of the solutions is missing.. any help or suggestion are well come.