From the email you sent to my place of work (CCFE), "My raspberry pi is 192.168.1.12, and my server is 192.168.1.11 and these are the commands I ran (the laptop is directly connected to the ethernet port on the pi) on the pi this is what I ran pwomxplayer --tile-code=41 udp://192.168.1.11:1234?buffer_size=6000000 on the server this is what I ran avconv -re -i supergirl.mp4 -vcodec copy -f mp4 -an udp://192.168.1.11:1234" - again there are several errors that would prevent the commands from working -
We didn't include instructions for sound because most video walls don't have sound. If you want sound, follow the instructions within the other thread on the forum to which you posted.
Your other comment about having a script to simplify starting many pwomxplayers has been covered several times in the forum along with some code to cut'n'paste.
Good luck with your 50 screen system.
Regards,
Alex and the PiWall team.
auto eth0
iface eth0 inet static
address 192.168.1.100
netmask 255.255.255.0
and I'm assuming that the command to run in the command prompt is (I'm not sure why we are doing it this way since all of the networking attributes should be taken care of in the interfaces folder, the route should be listed as gateway in the interfaces folder, and why didn't we make the netmask in the interfaces folder match the one in the command?)
#up route add -net 224.0.0.0 netmask 240.0.0.0 eth0
and then run the avconv command but since the examples are only dealing with one tile, what address do I point it to in order for it to transmit to all of the tiles (after getting the pwomxplayer software to listen to itself). This udp broadcasting from avconv is all new to me.
I'm confused here, why are we adding a router ip address and a netmask to the eth0 interface outside of the subnet (192.168.1.0/24) in this command? is this how the broadcasting thing is supposed to work?