Recherche avancée

Médias (91)

Autres articles (101)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (10589)

  • tiffdec : Prevent illegal memory access caused by recycled pointers.

    7 mars 2012, par Alex Converse

    tiffdec : Prevent illegal memory access caused by recycled pointers.

  • avformat/wavdec : Remove direct s->pb->buffer access

    3 avril 2016, par Michael Niedermayer
    avformat/wavdec : Remove direct s->pb->buffer access
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/wavdec.c
  • FFMPEG and FFPlay can access rtsp stream from one ip, but from other ip, it can't

    28 mai 2022, par Crear

    The situation is kind of complex. I was archiving several CCTV camera feeds (rtsp, h264, no audio) through OpenCV, which worked but the CPU utilization was too high and started to lose some frames time by time.

    &#xA;

    To reduce the CPU utilization, I started to use FFMPEG to skip the decoding and encoding processes, which worked perfectly on my home machine. However, when I connected to my university VPN and tried to deploy it on our lab server, FFmpeg couldn't read any frame, ffplay couldn't get anything either. However, OpenCV, VLC Player and IINA Player could still read and display the feed.

    &#xA;

    In Summary,

    &#xA;

    1 FFMPEG/ffplay

    &#xA;

    1.1 can only read the feed from my home network(Wi-Fi, optimum)

    &#xA;

    1.2 from other two networks, the error message says : "Could not find codec parameters for stream 0 (Video : h264, none) : unspecified size&#xA;Consider increasing the value for the 'analyzeduration' (0) and 'probesize' (5000000) options"

    &#xA;

    2 IINA/VLC Player, OpenCV&#xA;These tools can get the video all the time.

    &#xA;

    I'm wondering whether it's related to some specific port access, that the ffmpeg required but the others don't. I'd appreciate it if anyone can provide any suggestions.

    &#xA;

    As references, the tested ffplay command is simple :

    &#xA;

    ffplay &#x27;the rtsp address&#x27;&#xA;

    &#xA;

    Thanks

    &#xA;


    &#xA;

    Update

    &#xA;

    More tests have been performed.

    &#xA;

    By specifying rtsp_transport as TCP, ffplay can play the video, but FFmpeg can't access the video. (In the beginning, when both FFmpeg and ffplay worked through my home network, it was UDP)&#xA;The FFmpeg command is as follows :

    &#xA;

    ffmpeg -i rtsp://the_ip_address/axis-media/media.amp -hide_banner -c:v copy -s 1920x1080 -segment_time 00:30:00 -f segment -strftime 1 -reset_timestamps 1 -rtsp_transport tcp "%Y-%m-%d-%H-%M-%S_Test.mp4"&#xA;

    &#xA;

    Please help...

    &#xA;