Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (99)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

Sur d’autres sites (5812)

  • avformat : add demuxer for argonaut games' ASF format

    26 janvier 2020, par Zane van Iperen
    avformat : add demuxer for argonaut games' ASF format
    

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

    Can also handle the sample files in :
    https://samples.ffmpeg.org/game-formats/brender/part2.zip

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

    • [DH] Changelog
    • [DH] libavformat/Makefile
    • [DH] libavformat/allformats.c
    • [DH] libavformat/argo_asf.c
    • [DH] libavformat/version.h
  • 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.

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