Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (109)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (14456)

  • FFMPEG audio streaming to icecast lets media players stop after each song

    21 décembre 2020, par ILoveCake

    I have set up FFMPEG audio streaming to an icecast2 server.
It works, but when I use a loop to stream different songs, media players stop after each song. In detail :

    


    for i in 1 2 3
do
  ffmpeg -loglevel quiet -hide_banner -re -i test$i.mp3 \
  -c:a libvorbis -ac 1 -b:a 96K -content_type audio/webm -f webm \
  icecast://source:password@localhost:8000/stream
done


    


    Media players (vlc, mpv, mplayer) would stop after each of the 3 test files. I have to press play again and again. For icecast2 I use the default settings (queue-size 524288, burst-size 65535).

    


    How can I have a continuous flow so players don't have to be restarted ?

    


  • Pushing Live Smooth Streaming multi track audio to Azure Media Services with FFMPEG

    29 décembre 2022, par Jean P

    Does anyone has a working command line for FFMPEG that shows how to stream audio from multiple devices (sound cards) using Smooth Ingest and a Basic Pass-through channel type (the cheapest option on Azure Media Services) ?

    


    The command should allow me to show multiple audio tracks (with language identifiers) using the Azure Media Player demo site (http://ampdemo.azureedge.net).

    


    Appreciate any help.

    


    I have tried many many examples with no success...

    


  • Node Media Server not streaming when I change ffmpeg argv

    30 mai 2020, par joao.jlf4

    I'm trying to change the ffmpeg spawn argv on Node Relay Session but it does'nt work beacuse node media server finishes the stream, my argv array :

    



    let argv = [
      '-fflags', 
      'nobuffer', 
      '-i', 
      this.conf.inPath, 
      '-b:v',
      '2000k',
      '-b:a',
      '128k',
      '-c:v',
      'libx264',
      '-preset veryfast',
      // '-c', 
      // 'copy', 
      '-f', 
      format, 
      this.conf.ouPath];