Recherche avancée

Médias (91)

Autres articles (77)

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

  • streaming audio output from pulse over network with ffmpeg and ffserver

    12 juillet 2012, par Aniket Awati

    I have different virtual machines running on the server. I have pulse as an audio backend.
    Now I want to stream the audio output of each virtual machine over the network. VNC doesnt allow that.
    I have come across ffmpeg and ffserver.

    I have managed to understand that I can grab the audio source and apply a coded and stream it using ffserver.

    My ffmpeg command is :

    ffmpeg -f pulse -i #sourceNo http://localhost:8090/feed1.ffm

    In ffserver.conf i have this configuration

    <stream>
    Feed feed1.ffm
    Format mp2
    AudioCodec libmp3lame
    AudioBitRate 128
    AudioChannels 2
    AudioSampleRate 44100
    NoVideo
    </stream>

    So now when I try to play using

    http://localhost:8090/test.mp3

    i can't hear anything.
    But if save the output using ffmpeg, i can play the output file.

    What should be the error here, or else is there is better way to stream audio output keeping latency low.

  • FFMPEG in worker role

    26 février 2014, par user3227615

    I am trying to create worker role solution where it reads the content from the blob and use the FFMPEG and convert the video files on from MP4 to AVI. whenever i deploy the worker role solution in the cloud the VM changes, then how to setup a FFMPEG on the machine where i am going to deploy and the command through cmd ?

  • Converting a sequences of images to a video with ffmpeg

    3 mars 2014, par lnepal

    I'm trying ffmpeg to convert sequence of images to a single video, but nothing happened and no any error message is shown. Below is the shell command I've used (invoked via PHP's shell_exec) :

    ffmpeg -i events/dream_theatre.jpg events/output.avi &amp;

    I just want to test first with single image and trying this in shared hosting server. No error message or any message is shown with this. I've a root access to server machine.