Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (2)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Monitoring de fermes de MediaSPIP (et de SPIP tant qu’à faire)

    31 mai 2013, par

    Lorsque l’on gère plusieurs (voir plusieurs dizaines) de MediaSPIP sur la même installation, il peut être très pratique d’obtenir d’un coup d’oeil certaines informations.
    Cet article a pour but de documenter les scripts de monitoring Munin développés avec l’aide d’Infini.
    Ces scripts sont installés automatiquement par le script d’installation automatique si une installation de munin est détectée.
    Description des scripts
    Trois scripts Munin ont été développés :
    1. mediaspip_medias
    Un script de (...)

Sur d’autres sites (1560)

  • Revision 06f3e51da6 : vpx_scale : sync from master Update vpx_scale from current code in master, run s

    2 novembre 2012, par John Koleszar

    Changed Paths : Modify /vp9/common/alloccommon.c Modify /vp9/common/asm_com_offsets.c Modify /vp9/common/postproc.c Modify /vp9/common/reconinter.c Modify /vp9/common/rtcd_defs.sh Modify /vp9/decoder/decodframe.c Modify /vp9/decoder/onyxd_if.c (...)

  • Merge branch ’master’ of https://github.com/tim-evans/SoundManager2 into tim-evans-master

    25 octobre 2011, par Scott Schiller

    m script/soundmanager2-nodebug.js m script/soundmanager2.js Merge branch ’master’ of https://github.com/tim-evans/SoundManager2 into tim-evans-master

  • Sending an mp4 video over the network with avconv command to a raspberry pi in a piwall videowall

    21 juillet 2017, par noswoscar

    I would like to send an mp4 video from a raspbery pi to another raspberry-pi (in order to build a piwall) but the command I am using for sending a video stream (tested with correct outcome on other devices) doesn’t work.

    Details :
    I am using the avconv command from libav.org to send an mp4 video from a "master raspberry pi" through the network to my "slave raspberry pi". The raspberry pi (which is receiving the video) has the Raspbian Jessie Operating System on it. The goal of my experiment is to use the pwomxplayer command to display the video received on the "slave raspberry pi".

    The full command i am using for sending the mp4 video stream is as follows :
    avconv -re -i input.mp4 -vcodec libx264 -f h264 -an udp ://224.0.0.1:1234
    (works when sending to my raspberry pi from my dell laptop)

    It is interesting to note that when using the pre-mentioned avconv command on my dell laptop which has an intel processor and debian OS installed, the video stream is sent properly. However, the same command doesn’t work when sending the video stream from a raspberry pi which has an arm processor and raspbian OS installed.
    I wonder why this is !

    Am I right in thinking the arm processor is not interpreting my command avconv as well as the intel processor ? Or is it more a question of architecture ? Or is my avconv command syntax incorrect ?

    Thank you for your help !

    More info :
    Ip address of master raspberry pi : 192.168.72.10
    Ip address of slave raspberry pi : 192.168.72.11
    I am using the route add -net 224.0.0.0 netmask 224.0.0.0 eth0 command on master pi to send the video stream to all laptops connected to my ethernet port.
    The following command works for files ending in .h264 :
    avconv -re -i input.h264 -vcodec libx264 -f h264 -an udp ://224.0.0.1:1234
    (but I would like to send .mp4 files encoded with h264 not just .h264 files)