Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (105)

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

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

  • avcodec : add AV1 hardware accelerated decoder

    9 septembre 2020, par Fei Wang
    avcodec : add AV1 hardware accelerated decoder
    

    This AV1 decoder is currently only used for hardware accelerated decoding.
    It can be extended into a native decoder in the future, so set its name to
    "av1" and temporarily give it the lowest priority in the codec list.

    Signed-off-by : Fei Wang <fei.w.wang@intel.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] Changelog
    • [DH] configure
    • [DH] libavcodec/Makefile
    • [DH] libavcodec/allcodecs.c
    • [DH] libavcodec/av1dec.c
    • [DH] libavcodec/av1dec.h
    • [DH] libavcodec/version.h
    • [DH] tests/ref/fate/av1-annexb-demux
    • [DH] tests/ref/lavf-fate/av1.mkv
    • [DH] tests/ref/lavf-fate/av1.mp4
  • avformat/udp : cosmetics

    10 octobre 2020, par Limin Wang
    avformat/udp : cosmetics
    

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavformat/udp.c
  • How to specify the audio path for ffmpeg and how to conduct a silence removal using ffmpeg

    15 octobre 2020, par Leo

    I wish to conduct a silence removal for wav files.

    &#xA;

    import ffmpeg&#xA;inPath = "/home/test/Speech/Wang/dataset/testsets/disgust/0_002_00_021_F002_d.wav"&#xA;outPath = "/home/test/Speech/Wang/dataset/testsets/disgust/0_002_00_021_F002_d_trimed.wav"&#xA;ffmpeg -i inPath -af silenceremove=0:0:-50dB outPath&#xA;

    &#xA;

    Error occurred.

    &#xA;

      File "", line 3&#xA;    ffmpeg -i inPath -af silenceremove=0:0:-50dB outPath&#xA;                   ^&#xA;SyntaxError: invalid syntax&#xA;

    &#xA;

    How should I assign the path ?

    &#xA;

    The question is that why we set the threshold to a negative value ?

    &#xA;