![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgvjKtdGftdOr0ntsC5rXkVwttOcSgbFuCne5rxD9WKk2o3SQlttGZ2bsp4-tyEnQnGHYsluDiKX0d2HGObp_impaB8mPT9Hj9V9EUu5XDqL19nDE0_9J-bq3PznGGrtMcZVE0NuTWiGEPh/s200/Image2.jpg)
Here is a video showing the balloon-cam and also a handheld video of us on the ground.
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhEWBQLoEU-9FzcRAC_L7TS7NjxTtml72oGdqLML3xE1N8IyYFM2eE5Evks97gDILJKlpGrqVtQxtMYZxYdCS5mpPYfHm7Cl7ng76OltpNRTv6IyEK0trXGgpYAoLpvLouhbSltUbat0BH4/s200/Image3.jpg)
Here is video of a boy pulling on a 25lbs chinook salmon, from two different angles. Note the GPS and other details added up in the left corner.
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj26kcE4oqoNsoY0zu5uDbN-jawWxSXldtgXSn5aCSks2lR_v30tfAptuBbx1tawCvTTT8_gAG1Wtn5LCABuW8BOD2kK8ZZBW43GmjO4HII2q2knLx4aiogvVVLwbcw9pru5N6V5vXvTwvm/s200/Image3b.jpg)
This is the color the videos should have, but they obviously are being converted into "Martian" colors...
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgWxaT1S6-5jOFabSOnD1ovo5JeQCLBfLP0aB63F26Xeozwc5OaDtC7PJ1BntAQgDrQMEkUCrmrCpiEcN4j7cBeVp-ELnKF4rOnraINffboDyHz_IFAaGzjONzTNNEfuft123tQB5rixvDa/s200/Image5.jpg)
It is really easy to "stack" many videos onto a single display - like the Brady Bunch intro...
Maybe someday we'll have so many different cameras going we'll have to resort to that, but until then, Picture-in-a-picture (PIP) should be a nice new trick.
Here is the simple text script for AVIsynth to run - this feeds the frames (PIP'ed) into VirtualDub.
main = AviSource("C:\big.avi")
pip = AviSource("C:\little.avi")
pip = pip.ReduceBy2() #makes the 2nd video smaller
#set the location for the pip window
xpos = Width(main) - Width(pip) - 10
ypos = Height(main) - Height(pip) -10
Overlay(main, pip, mode="blend", x=xpos, y=ypos)
Subtitle("nwpodcast.blogspot.com", lsp=0)