Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (112)

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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (10526)

  • node-rtsp-stream stop streaming after some time

    12 mai 2020, par Vishal Patel

    I am using node-rtsp-stream to display live camera streaming in web application. It's work fine but after sometime it stop streaming and display following error :

    



    1|streamca | [h264 @ 0x560869d8f380] 
1|streamca | error while decoding MB 145 65, bytestream -16
1|streamca | [h264 @ 0x560869d8f380] concealing 3904 DC, 3904 AC, 3904 MV errors in I frame
1|streamca | rtsp://username:password@ipAddress/Streaming/Channels/1: corrupt decoded frame in stream 0


    



    What is going wrong ?
My code looks like :

    



    const Stream2 = require('node-rtsp-stream');
let stream2 = new Stream2({
  name: 'name',
  streamUrl: 'rtsp://username:password@ipAddress/Streaming/Channels/1',
  wsPort: 88,
  ffmpegOptions:{
    '-stats': '',
    '-r': 22,
    '-q:v': 50
  }


    



    })

    


  • Get rtsp udp streaming with ffmpeg utility failed

    16 février 2021, par Lidor Abo

    Hey there,
I have a problem with get streaming from wowza stream engine as described below :
I try to get streaming in private network from wowza stream engine in UDP with ffmpeg as following :
ffmpeg -loglevel debug -rtsp_transport udp -i "rtsp ://192.168.8.117:1935/live/ecad838c-b431-4c8b-b2e8-d43f78a8d2f2.stream" -acodec copy -vcodec copy test.mp4
and i get the following error :
rtsp ://192.168.8.117:1935/live/ecad838c-b431-4c8b-b2e8-d43f78a8d2f2.stream : Connection timed out
Few remarks about that :

    


      

    1. When i try to get streaming using public ip with ffmpeg utility i success in UDP and TCP
    2. 


    3. I success to get streaming with private IP with TCP connection through ffmpeg utility as following :
ffmpeg -loglevel debug -rtsp_transport tcp -i "rtsp ://192.168.8.117:1935/live/ecad838c-b431-4c8b-b2e8-d43f78a8d2f2.stream" -acodec copy -vcodec copy test.mp4
    4. 


    5. I open 1935 UDP and TCP ports in security group of wowza stream engine for machines that will need to get streaming from wowza stream engine. Also, i opened UDP in 6970-9999 range for any ip address.
    6. 


    7. I added relevant IP address in Whitelist property in Server.xml conf in wowza stream engine.
    8. 


    9. I using vpn service (perimeter) to access the machine that from it i get streaming from wowza streaming engine.
    10. 


    11. iptables in machine that i try to get stream allow any rule and not enabled any firewall.
Note : i adding link to zip file with logs and config files because is not me your upload limitations :
    12. 


    


  • Convert asset to fMP4 in device (iOS) for streaming

    1er février 2018, par GustavoAzOl

    I have a local asset, recorded by the user, and I want to export a fMP4 to be upload to the server and later be used for streaming. I’ll target iOS 10.0 and later and use swift.

    How can I do that locally on the device ? Is there a "native" way or even a better way to do that ?
    I saw some people using ffmpeg but it seems a bit more complex to get it work on the project.