Recherche avancée

Médias (91)

Autres articles (60)

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

  • Solution to convert FLV to MP4 from streaming server [on hold]

    10 avril 2015, par user3799647

    I am looking for solution to convert FLV video file from streaming server like Vidzer, to HTML5 friendly format like mp4. I have small website with movies and I want to watch movies on my phone which support MP4.

    Is there any way to do that ? I have dedicated server, I don’t want to save files on server and convert, but convert on the fly using cURL, PHP and ffmpeg.

  • How to turn on/off synthesized sound sources during streaming distribution

    28 mars 2022, par its-ogawa

    Streaming via ffmpeg.
The filter_complex option allows us to synthesize two sound sources, but is it possible to turn on/off the synthesized sound source at an arbitrary timing ?
One of the sound sources is audio from the microphone input, which will be on throughout the streaming. Other than that, we would like to turn on/off several sound sources at any given time.

    


    For example, to turn on the microphone input and one sound source at all times, the following command is executed

    


    ffmpeg -rtbufsize 100M  -f dshow -video_device_number 0 -i video="my camera" -i my_audio.mp3 -filter_complex "[1:a]volume=0.05,apad[0];[0][1]amerge[out]" -map 0:v -map [out]:a -f hls -hls_segment_type fmp4 -hls_time 5 -hls_fmp4_init_filename init.mp4 hls.m3u8 -f mpegts -flush_packets 0 udp://XXX.XXX.XXX.XXX:XXX?pkt_size=1316


    


  • RTMP ubuntu server for streaming

    2 mai 2021, par adammartiska

    In our school team we are trying to achieve one thing - user is being recorded on camera, this camera is sending feed on server (our school gave us Ubuntu server, that we can access through cmd ssh), and this server is forwarding feed for some public ip (server ip), which clients can access in their application. We tried to do nginx live streaming server with rmtp module but with no success. Now we are stuck on properly configuring ffserver ( which in our case might be the best solution ) however we can't get to work streaming through ffmpeg. We can start ffserver successfully, but when we want to stream with ffmpeg there is error : Connection to tcp://<serveripadress>:8090 failed: Connection refused</serveripadress>. Does anyone know what might cause this ? Or is here some more simple solution for our cause ? Is it even possible to manipulate with server ip and ports if we have only ssh access to this server (on port 2233) ?&#xA;Thanks for every response in advance :)

    &#xA;