Imaging solutions with Free Software & Open Hardware

Who's online

There are currently 0 users online.

Subscribe to Wiki Recent Changes feed
Track the most recent changes to the wiki in this feed. MediaWiki 1.28.0
Updated: 7 min 38 sec ago

Using gstreamer

Thu, 06/09/2016 - 16:57

Command line examples:

← Older revision Revision as of 22:57, 9 June 2016 Line 20: Line 20: <b>Note: replace width and height accordingly to your camera setup and your computer's horsepower :P)</b> <b>Note: replace width and height accordingly to your camera setup and your computer's horsepower :P)</b>  +  +== GStreamer 1.0==  +  +===Display===  +  +====Multipart JPEGs, 4 channels in 1 window====  +* Each source is resized to 640x480  +* Text overlay and borders added  +<font size='2'>  + gst-launch-1.0 -ve videomixer name=mix \  +    sink_0::alpha=1 sink_0::xpos=0  sink_0::ypos=0 \  +    sink_1::alpha=1 sink_1::xpos=646 sink_1::ypos=0 \  +    sink_2::alpha=1 sink_2::xpos=0  sink_2::ypos=486 \  +    sink_3::alpha=1 sink_3::xpos=646 sink_3::ypos=486 \  +    ! \  +    xvimagesink sync=false \  +    souphttpsrc is-live=true location=http://192.168.0.8:2323/noexif/mimg ! image/jpeg,width=1,height=1,framerate=1000/1,pixel-aspect-ratio=1/1 ! \  +    jpegdec ! videoscale ! video/x-raw,width=640,height=480 ! videobox fill=Black top=-4 bottom=-2 left=-4 right=-2 ! \  +    textoverlay text=cam1 halignment=left valignment=top text-width=20 text-height=20 shaded-background=true ! mix. \  +    souphttpsrc is-live=true location=http://192.168.0.8:2324/noexif/mimg ! image/jpeg,width=1,height=1,framerate=1000/1,pixel-aspect-ratio=1/1 ! \  +    jpegdec ! videoscale ! video/x-raw,width=640,height=480 ! videobox fill=Black top=-4 bottom=-2 left=-2 right=-4 ! \  +    textoverlay text=cam2 halignment=left valignment=top text-width=20 text-height=20 shaded-background=true ! mix. \  +    souphttpsrc is-live=true location=http://192.168.0.8:2325/noexif/mimg ! image/jpeg,width=1,height=1,framerate=1000/1,pixel-aspect-ratio=1/1 ! \  +    jpegdec ! videoscale ! video/x-raw,width=640,height=480 ! videobox fill=Black top=-2 bottom=-4 left=-4 right=-2 ! \  +    textoverlay text=cam3 halignment=left valignment=top text-width=20 text-height=20 shaded-background=true ! mix. \  +    souphttpsrc is-live=true location=http://192.168.0.8:2326/noexif/mimg ! image/jpeg,width=1,height=1,framerate=1000/1,pixel-aspect-ratio=1/1 ! \  +    jpegdec ! videoscale ! video/x-raw,width=640,height=480 ! videobox fill=Black top=-2 bottom=-4 left=-2 right=-4 ! \  +    textoverlay text=cam4 halignment=left valignment=top text-width=20 text-height=20 shaded-background=true ! mix.  +</font> == GStreamer 0.10== == GStreamer 0.10== -=== Displaying ===+=== Display === careful with streams at higher resolution than 1920x1088 careful with streams at higher resolution than 1920x1088 Oleg

Elphel camera parts 0393-18

Thu, 06/09/2016 - 16:53

0353-18-31 - tripod mount plate:

← Older revision Revision as of 22:53, 9 June 2016 Line 8: Line 8: {{Cad4a|0393-18-31}} {{Cad4a|0393-18-31}} ---- ----  +=== 0353-18-31A - tripod mount plate, Rev "A" ===  +{{Cad4a|0393-18-31A}}  +----  + === 0393-18-50 - IMU enclosure === === 0393-18-50 - IMU enclosure === {{Cad4a|0393-18-50}} {{Cad4a|0393-18-50}} Mikhail

Using gstreamer

Thu, 06/09/2016 - 16:51

← Older revision Revision as of 22:51, 9 June 2016 (4 intermediate revisions not shown)Line 1: Line 1: -Gstreamer is a modular node based player as well as encoder in a single application. It is possible to create chains of so called elements with a wide range of different plugins.+GStreamer is a modular node based player as well as encoder in a single application. It is possible to create chains of so called elements with a wide range of different plugins. -= Gstreamer =+= GStreamer = GStreamer is a library for constructing graphs of media-handling components. The applications it supports range from simple Ogg/Vorbis playback, audio/video streaming to complex audio (mixing) and video (non-linear editing) processing. GStreamer is a library for constructing graphs of media-handling components. The applications it supports range from simple Ogg/Vorbis playback, audio/video streaming to complex audio (mixing) and video (non-linear editing) processing. Line 8: Line 8: = Installing GStreamer = = Installing GStreamer = -[http://blog.nicolargo.com/ NicoLargo] made a script to automatically install all the required packages for GStreamer on Ubuntu 10.04. Very simple and useful, just download and execute the script: http://svn.nicolargo.com/ubuntupostinstall/trunk/gstreamerinstall.sh+[http://blog.nicolargo.com/ NicoLargo] made [http://blog.nicolargo.com/2010/05/installation-de-tout-les-composants-gstreamer-sous-ubuntu.html a script] to automatically install all the required packages for GStreamer on Ubuntu 10.04. Should work up to for (K)Ubuntu 16.04 as well. = Tips = = Tips = == How to get 25 FPS ? == == How to get 25 FPS ? == -You won't get 25 fps if autoexposure is on and local brightness not high enough: the camera will automatically lower framerate for keeping clear picture. Either lighten up, or play with image settings (notably, gain).+Depends on the sensor and the exposure:  +* In the sensor's datasheet find resolutions that allow the required FPS.  +* You won't get 25 fps if autoexposure is on and local brightness not high enough: the camera will automatically lower framerate for keeping clear picture. Either lighten up, or play with image settings (notably, gain). -= Commandline examples =  -(Note: replace width and height accordingly to your camera setup and your computer's horsepower :p).+= Command line examples = -== Displaying ==+<b>Note: replace width and height accordingly to your camera setup and your computer's horsepower :P)</b>  +   +== GStreamer 0.10==  +   +=== Displaying === careful with streams at higher resolution than 1920x1088 careful with streams at higher resolution than 1920x1088 Line 27: Line 32:   gst-launch-0.10 rtspsrc location=rtsp://192.168.0.9:554 ! rtpjpegdepay ! jpegdec ! queue ! ffmpegcolorspace ! videoscale ! xvimagesink sync=false   gst-launch-0.10 rtspsrc location=rtsp://192.168.0.9:554 ! rtpjpegdepay ! jpegdec ! queue ! ffmpegcolorspace ! videoscale ! xvimagesink sync=false -== Dumping ==+=== Dumping === -=== mjpeg dumping ===+==== mjpeg dumping ==== gst-launch -v rtspsrc location=rtsp://192.168.0.9:554 ! queue ! rtpjpegdepay ! videorate ! capsfilter caps = "image/jpeg, framerate=(fraction)25/1, width=1024, height=768" ! queue ! matroskamux ! filesink location=/tmp/test.mkv gst-launch -v rtspsrc location=rtsp://192.168.0.9:554 ! queue ! rtpjpegdepay ! videorate ! capsfilter caps = "image/jpeg, framerate=(fraction)25/1, width=1024, height=768" ! queue ! matroskamux ! filesink location=/tmp/test.mkv -=== YUV Dumping ===+==== YUV Dumping ==== gst-launch -v rtspsrc location=rtsp://192.168.0.9:554 ! queue ! rtpjpegdepay ! queue ! jpegdec ! queue ! videorate ! capsfilter caps="video/x-raw-yuv, format=(fourcc)I420, width=(int)1024, height=(int)768, framerate=(fraction)25/1" ! queue ! avimux ! filesink location=/tmp/test.avi gst-launch -v rtspsrc location=rtsp://192.168.0.9:554 ! queue ! rtpjpegdepay ! queue ! jpegdec ! queue ! videorate ! capsfilter caps="video/x-raw-yuv, format=(fourcc)I420, width=(int)1024, height=(int)768, framerate=(fraction)25/1" ! queue ! avimux ! filesink location=/tmp/test.avi -== Dump transcoding example ==+=== Dump transcoding example === gst-launch filesrc location=test.mkv ! matroskademux ! queue ! jpegdec ! queue ! theoraenc bitrate=4000 ! queue ! oggmux ! filesink location=test.ogg gst-launch filesrc location=test.mkv ! matroskademux ! queue ! jpegdec ! queue ! theoraenc bitrate=4000 ! queue ! oggmux ! filesink location=test.ogg -== Live encoding ==+=== Live encoding === gst-launch -v rtspsrc location=rtsp://192.168.0.9:554 ! queue ! rtpjpegdepay ! queue ! jpegdec ! queue ! videorate ! capsfilter caps="video/x-raw-yuv, format=(fourcc)I420, width=(int)1024, height=(int)768, framerate=(fraction)25/1" ! queue ! theoraenc bitrate=4000 ! queue ! oggmux ! filesink location=/tmp/test1024.ogg gst-launch -v rtspsrc location=rtsp://192.168.0.9:554 ! queue ! rtpjpegdepay ! queue ! jpegdec ! queue ! videorate ! capsfilter caps="video/x-raw-yuv, format=(fourcc)I420, width=(int)1024, height=(int)768, framerate=(fraction)25/1" ! queue ! theoraenc bitrate=4000 ! queue ! oggmux ! filesink location=/tmp/test1024.ogg I did some benchmarks; a Core 2 Quad Q6600 (2.4 Ghz) is not powerful enough for h264 encoding @fullHD resolution (using 4 treads). I did some benchmarks; a Core 2 Quad Q6600 (2.4 Ghz) is not powerful enough for h264 encoding @fullHD resolution (using 4 treads). Oleg

Elphel camera parts 0393-11

Thu, 06/09/2016 - 16:03

0393-11-04A - Cooling fan enclosure, RevA:

← Older revision Revision as of 22:03, 9 June 2016 (One intermediate revision not shown)Line 20: Line 20: {{Cad4a|0393-11-04}} {{Cad4a|0393-11-04}} ---- ----  +=== 0393-11-04A - Cooling fan enclosure, Rev "A" ===  +{{Cad4a|0393-11-04A}}  +----  + === 0393-11-10 - CPU heat plate === === 0393-11-10 - CPU heat plate === {{Cad4a|0393-11-10}} {{Cad4a|0393-11-10}} Mikhail

Tmp manual

Wed, 06/08/2016 - 20:51

Connections:

← Older revision Revision as of 02:51, 9 June 2016 Line 5: Line 5: |[[File:NC393-CS marked ports.jpeg|thumb|200px]] |[[File:NC393-CS marked ports.jpeg|thumb|200px]] |} |}  +* [[10393_power|Power supply]]  + ==<font color="blue">Defaults</font>== ==<font color="blue">Defaults</font>== IP addr: <b>192.168.0.8</b> IP addr: <b>192.168.0.8</b> Oleg

10393 power

Wed, 06/08/2016 - 18:36

← Older revision Revision as of 00:36, 9 June 2016 (One intermediate revision not shown)Line 12: Line 12: ===Notes=== ===Notes=== * <font color='red'>For 12V the recommended connector is '''J4''' - bypassing diodes reduces voltage drop and the chances of not hitting the lower voltage limit are better.</font> * <font color='red'>For 12V the recommended connector is '''J4''' - bypassing diodes reduces voltage drop and the chances of not hitting the lower voltage limit are better.</font> -* For 12+ V the recommended connector is '''J3'''+* For 18+ V the recommended connector is '''J3''' ==Power supply requirements== ==Power supply requirements==  +AC/DC WALL MOUNT ADAPTER * 20+ W * 20+ W ** 48V => 0.42+ A ** 48V => 0.42+ A ** 12V => 1.67+ A ** 12V => 1.67+ A Olga

10393 power

Wed, 06/08/2016 - 18:11

← Older revision Revision as of 00:11, 9 June 2016 (8 intermediate revisions not shown)Line 1: Line 1:  +[[File:10393 power j3 j4.jpeg|thumb|350px|Fig.1 power through J3 connector]]  +[[File:10393 power j4.jpeg|thumb|400px|Fig.2 power through J4 connector]]  + ==18-75V (48V)== ==18-75V (48V)== -* DC-DC converter: TRACO POWER THD 12-4810WI, IN 18-75V, OUT 3.3V/3500mA+* camera's DC-DC converter installed: TRACO POWER THD 12-4810WI, IN 18-75V, OUT 3.3V/3500mA ===Notes=== ===Notes=== -* Recommended connector for power: '''J3'''+* For 48V the recommended connector is '''J3''' ==9-36V (12V)== ==9-36V (12V)== -* DC-DC converter: TRACO POWER THD 12-2410WI, IN 9-36V, OUT 3.3V/3500mA+* camera's DC-DC converter installed: TRACO POWER THD 12-2410WI, IN 9-36V, OUT 3.3V/3500mA ===Notes=== ===Notes=== -* Recommended connector for power: '''J4''' = bypass diodes to reduce voltage drop+* <font color='red'>For 12V the recommended connector is '''J4''' - bypassing diodes reduces voltage drop and the chances of not hitting the lower voltage limit are better.</font> -* '''J3''' is can be used only at 12+ V+* For 12+ V the recommended connector is '''J3'''  +   +==Power supply requirements==  +* 20+ W  +** 48V => 0.42+ A  +** 12V => 1.67+ A Oleg

File:10393 power j4.jpeg

Wed, 06/08/2016 - 17:47

uploaded "[[File:10393 power j4.jpeg]]"

Oleg

File:10393 power j3 j4.jpeg

Wed, 06/08/2016 - 17:21

uploaded "[[File:10393 power j3 j4.jpeg]]"

Oleg

10393 power

Wed, 06/08/2016 - 17:10

New page

==18-75V (48V)==
* DC-DC converter: TRACO POWER THD 12-4810WI, IN 18-75V, OUT 3.3V/3500mA
===Notes===
* Recommended connector for power: '''J3'''

==9-36V (12V)==
* DC-DC converter: TRACO POWER THD 12-2410WI, IN 9-36V, OUT 3.3V/3500mA

===Notes===
* Recommended connector for power: '''J4''' = bypass diodes to reduce voltage drop
* '''J3''' is can be used only at 12+ V Oleg

Tmp manual

Tue, 06/07/2016 - 16:04

browser:

← Older revision Revision as of 22:04, 7 June 2016 (2 intermediate revisions not shown)Line 47: Line 47: ====browser==== ====browser==== -Example:+Example 1: (provide a correct media mount point)  +<font size='2'>  +* http://192.168.0.8/camogm.html  +</font>  +   +Example 2: <font size='2'> <font size='2'> * channel '''0''', '''/dev/sda1''', w/o a file name prefix * channel '''0''', '''/dev/sda1''', w/o a file name prefix Line 97: Line 102: ==<font color="blue">Firmware image</font>== ==<font color="blue">Firmware image</font>== -* [http://community.elphel.com/files/393/20160601/ 20160601 (new)]+* [http://community.elphel.com/files/393/20160607/ 20160607 (new)]  +* [http://community.elphel.com/files/393/20160601/ 20160601 (old)] * [http://community.elphel.com/files/393/20160526/ 20160526 (old)] * [http://community.elphel.com/files/393/20160526/ 20160526 (old)] * [http://community.elphel.com/files/393/20160524/ 20160524 (old)] * [http://community.elphel.com/files/393/20160524/ 20160524 (old)] Oleg

Tmp manual

Tue, 06/07/2016 - 15:10

Firmware image:

← Older revision Revision as of 21:10, 7 June 2016 Line 97: Line 97: ==<font color="blue">Firmware image</font>== ==<font color="blue">Firmware image</font>== -* [http://community.elphel.com/files/393/20160601/ 20160601 (new)]+* [http://community.elphel.com/files/393/20160607/ 20160607 (new)]  +* [http://community.elphel.com/files/393/20160601/ 20160601 (old)] * [http://community.elphel.com/files/393/20160526/ 20160526 (old)] * [http://community.elphel.com/files/393/20160526/ 20160526 (old)] * [http://community.elphel.com/files/393/20160524/ 20160524 (old)] * [http://community.elphel.com/files/393/20160524/ 20160524 (old)] Oleg

Elphel camera parts 0393-19

Mon, 06/06/2016 - 12:35

0393-19-13 - Hex Key Handle:

← Older revision Revision as of 18:35, 6 June 2016 (2 intermediate revisions not shown)Line 2: Line 2: === 0393-19-01 - Heat Transfer Bracket === === 0393-19-01 - Heat Transfer Bracket === {{Cad4a|0393-19-01}} {{Cad4a|0393-19-01}}  +----  +  +=== 0393-19-01A - Heat Transfer Bracket, Rev "A" ===  +{{Cad4a|0393-19-01A}} ---- ---- Line 18: Line 22: === 0393-19-05 - Adjustble Rod Thrust === === 0393-19-05 - Adjustble Rod Thrust === {{Cad4a|0393-19-05}} {{Cad4a|0393-19-05}}  +----  +  +=== 0393-19-05A - Adjustble Rod Thrust, REV "A" ===  +{{Cad4a|0393-19-05A}} ---- ---- Line 51: Line 59: === 0393-19-13 - Hex Key Handle === === 0393-19-13 - Hex Key Handle === {{Cad4a|0393-19-13}} {{Cad4a|0393-19-13}}  +  +----  +  +=== 0393-19-14 - Clamp Frame ===  +{{Cad4a|0393-19-14}} ---- ---- Andrey.filippov

Poky 2.0 manual

Sat, 06/04/2016 - 15:56

Errors:

← Older revision Revision as of 21:56, 4 June 2016 (4 intermediate revisions not shown)Line 136: Line 136: <b>solution</b>: exclude the '''0001-mod_cgi-buffers-data-without-bound.patch''' from the file list that comes with the '''poky/meta/recipes-extended/lighttpd_1.4.39.bb''' <b>solution</b>: exclude the '''0001-mod_cgi-buffers-data-without-bound.patch''' from the file list that comes with the '''poky/meta/recipes-extended/lighttpd_1.4.39.bb'''  +  +==<font color="blue">Errors</font>==  +* '''Aborted, core dumped'''  +** Got when tried to build gstreamer1.0-plugins-base - error in one of the packages it depends on.  +** Possible reason - Kubuntu 14.04 - the system libraries are too old? The up-to-date Kubuntu release is 16.04.  +** Command (example):  + bitbake libxau-native  +** log:  + | x86_64-linux-libtool: link: ar cru .libs/libXau.a  AuDispose.o AuFileName.o AuGetAddr.o AuGetBest.o AuLock.o AuRead.o AuUnlock.o AuWrite.o  + | *** buffer overflow detected ***: ar terminated  + | ======= Backtrace: =========  + | /lib/x86_64-linux-gnu/libc.so.6(+0x7329f)[0x2b732eade29f]  + | /lib/x86_64-linux-gnu/libc.so.6(__fortify_fail+0x5c)[0x2b732eb75bbc]  + | /lib/x86_64-linux-gnu/libc.so.6(+0x109a90)[0x2b732eb74a90]  + | /lib/x86_64-linux-gnu/libc.so.6(+0x108f99)[0x2b732eb73f99]  + | /lib/x86_64-linux-gnu/libc.so.6(_IO_default_xsputn+0xbc)[0x2b732eae660c]  + | /lib/x86_64-linux-gnu/libc.so.6(_IO_padn+0xa0)[0x2b732eada600]  + | /lib/x86_64-linux-gnu/libc.so.6(_IO_vfprintf+0x3c4d)[0x2b732eab888d]  + | /lib/x86_64-linux-gnu/libc.so.6(__vsprintf_chk+0x84)[0x2b732eb74024]  + | /lib/x86_64-linux-gnu/libc.so.6(__sprintf_chk+0x7d)[0x2b732eb73f7d]  + | ar[0x406d20]  + | ar[0x4088df]  + | ar[0x40bf08]  + | ar[0x404a86]  + | ar[0x405003]  + | ar[0x402a45]  + | /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf5)[0x2b732ea8cf45]  + | ar[0x402dc5]  + | ======= Memory map: ========  + | 00400000-00482000 r-xp 00000000 08:01 27273645                          /usr/local/bin/ar  + | 00682000-00683000 r--p 00082000 08:01 27273645                          /usr/local/bin/ar  + | 00683000-00684000 rw-p 00083000 08:01 27273645                          /usr/local/bin/ar  + | 00776000-007e0000 rw-p 00000000 00:00 0                                  [heap]  + | 2b732e846000-2b732e869000 r-xp 00000000 08:01 26740221                  /lib/x86_64-linux-gnu/ld-2.19.so  + | 2b732e869000-2b732e86d000 rw-p 00000000 00:00 0  + | 2b732e898000-2b732e89b000 rw-p 00000000 00:00 0  + | 2b732ea68000-2b732ea69000 r--p 00022000 08:01 26740221                  /lib/x86_64-linux-gnu/ld-2.19.so  + | 2b732ea69000-2b732ea6a000 rw-p 00023000 08:01 26740221                  /lib/x86_64-linux-gnu/ld-2.19.so  + | 2b732ea6a000-2b732ea6b000 rw-p 00000000 00:00 0  + | 2b732ea6b000-2b732ec25000 r-xp 00000000 08:01 26740235                  /lib/x86_64-linux-gnu/libc-2.19.so  + | 2b732ec25000-2b732ee25000 ---p 001ba000 08:01 26740235                  /lib/x86_64-linux-gnu/libc-2.19.so  + | 2b732ee25000-2b732ee29000 r--p 001ba000 08:01 26740235                  /lib/x86_64-linux-gnu/libc-2.19.so  + | 2b732ee29000-2b732ee2b000 rw-p 001be000 08:01 26740235                  /lib/x86_64-linux-gnu/libc-2.19.so  + | 2b732ee2b000-2b732ee30000 rw-p 00000000 00:00 0  + | 2b732ee30000-2b732ee46000 r-xp 00000000 08:01 26741717                  /lib/x86_64-linux-gnu/libgcc_s.so.1  + | 2b732ee46000-2b732f045000 ---p 00016000 08:01 26741717                  /lib/x86_64-linux-gnu/libgcc_s.so.1  + | 2b732f045000-2b732f046000 rw-p 00015000 08:01 26741717                  /lib/x86_64-linux-gnu/libgcc_s.so.1  + | 7fffb978b000-7fffb97ad000 rw-p 00000000 00:00 0                          [stack]  + | 7fffb97f8000-7fffb97fa000 r-xp 00000000 00:00 0                          [vdso]  + | ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0                  [vsyscall]  + | ./x86_64-linux-libtool: line 1723:  8035 Aborted                (core dumped) ar cru .libs/libXau.a AuDispose.o AuFileName.o AuGetAddr.o AuGetBest.o AuLock.o AuRead.o AuUnlock.o AuWrite.o  + | make[2]: *** [libXau.la] Error 134  + | make[2]: Leaving directory `/GIT/elphel393/poky/build/tmp/work/x86_64-linux/libxau-native/1_1.0.8-r0/build'  + | make[1]: *** [all-recursive] Error 1  + | make[1]: Leaving directory `/GIT/elphel393/poky/build/tmp/work/x86_64-linux/libxau-native/1_1.0.8-r0/build'  + | make: *** [all] Error 2  + | ERROR: oe_runmake failed Oleg

Tmp manual

Thu, 06/02/2016 - 15:04

browser:

← Older revision Revision as of 21:04, 2 June 2016 (4 intermediate revisions not shown)Line 43: Line 43: ==<font color="blue">Video recording</font>== ==<font color="blue">Video recording</font>== -* <b><font color='red'>[[Using_camogm_with_Elphel393_camera|More info]]</font></b>+* <b><font size='3' color='red'>[[Using_camogm_with_Elphel393_camera|More info]]</font></b> * If the ''prefix'' parameter, which is ''absolute path + prefix'', for a channel is not set the file will be written somewhere to rootfs (likely '''/usr/local/verilog/''') * If the ''prefix'' parameter, which is ''absolute path + prefix'', for a channel is not set the file will be written somewhere to rootfs (likely '''/usr/local/verilog/''') Line 49: Line 49: Example: Example: <font size='2'> <font size='2'> -* channel '''0''', '''/dev/sda1''', w/o a file name prefix, '''1GB''' or '''10min''' files whichever occurs first+* channel '''0''', '''/dev/sda1''', w/o a file name prefix ** setup: ** setup: -  http://192.168.0.8/camogm.php?channel=0&cmd=format=mov;exif=0;prefix=/mnt/sda1/;duration=600;length=1073741824;status=/tmp/camogm0.status;+  http://192.168.0.8/camogm.php?chn=0&cmd=prefix=/mnt/sda1/; ** start: ** start: -  http://192.168.0.8/camogm.php?channel=0&cmd=start;+  http://192.168.0.8/camogm.php?chn=0&cmd=start; ** stop: ** stop: -  http://192.168.0.8/camogm.php?channel=0&cmd=stop;+  http://192.168.0.8/camogm.php?chn=0&cmd=stop; </font> </font> Oleg

Main Page

Wed, 06/01/2016 - 21:56

← Older revision Revision as of 03:56, 2 June 2016 Line 6: Line 6: {| width="100%" cellspacing="5" cellpadding="2" style="vertical-align:top; background:#f5faff;" {| width="100%" cellspacing="5" cellpadding="2" style="vertical-align:top; background:#f5faff;" |- |- -! colspan="4" | <h2 id="mp-itn-h2" colspan="4" style="margin:0; background:#cedff2; font-size:120%; font-weight:bold; border:1px solid #a3b0bf; text-align:left; color:#000; padding:0.2em 0.4em;">Hardware</h2>+! colspan="4" | <h2 id="mp-itn-h2" colspan="4" style="margin:0; background:#cedff2; font-size:120%; font-weight:bold; border:1px solid #a3b0bf; text-align:left; color:#000; padding:0.2em 0.4em;">Hardware (electronics)</h2> |- |- | '''[[10393|Latest Model: 393 Cameras]]'''<br>Released Spring 2016<br/>&#8226; [[Tmp_manual|Temporary manual]] | '''[[10393|Latest Model: 393 Cameras]]'''<br>Released Spring 2016<br/>&#8226; [[Tmp_manual|Temporary manual]] Line 38: Line 38: | '''[[Troubleshooting FAQ|Camera Troubleshooting Guide]]'''<br>for 353 Series Cameras Setup | '''[[Troubleshooting FAQ|Camera Troubleshooting Guide]]'''<br>for 353 Series Cameras Setup |} |} -  {| width="100%" cellspacing="5" cellpadding="2" style="vertical-align:top; background:#f5fffa;" {| width="100%" cellspacing="5" cellpadding="2" style="vertical-align:top; background:#f5fffa;" Line 55: Line 54: |} |}  +  +{| width="100%" cellspacing="5" cellpadding="2" style="vertical-align:top; background:#f5faff;"  +|-  +! colspan="4" | <h2 id="mp-itn-h2" colspan="4" style="margin:0; background:#cedff2; font-size:120%; font-weight:bold; border:1px solid #a3b0bf; text-align:left; color:#000; padding:0.2em 0.4em;">Hardware (metal/3D-printed parts)</h2>  +|-  +| '''[[Elphel_camera_assemblies|Assemblies]]'''  +|-  +| '''[[Elphel_camera_parts|Parts]]'''  +|} ---- ---- <center>''This is Wiki so you may edit pages here. Complete help how to do that is available in the MediaWiki [http://meta.wikipedia.org/wiki/MediaWiki_User%27s_Guide User's Guide]. MediaWiki is the same software that powers [http://www.wikipedia.org Wikipedia]''</center> <center>''Free Software and Open Hardware. Elphel, Inc., 2011''</center> <center>''This is Wiki so you may edit pages here. Complete help how to do that is available in the MediaWiki [http://meta.wikipedia.org/wiki/MediaWiki_User%27s_Guide User's Guide]. MediaWiki is the same software that powers [http://www.wikipedia.org Wikipedia]''</center> <center>''Free Software and Open Hardware. Elphel, Inc., 2011''</center> Oleg

353

Wed, 06/01/2016 - 21:46

← Older revision Revision as of 03:46, 2 June 2016 Line 9: Line 9: * '''[[FAQ|GNU GPL FAQ]]''' Frequently Asked Questions about the License * '''[[FAQ|GNU GPL FAQ]]''' Frequently Asked Questions about the License * '''[[Questions and Answers|Questions and Answers]]''' Ask and get answers about anything Elphel related * '''[[Questions and Answers|Questions and Answers]]''' Ask and get answers about anything Elphel related - +* '''[[UserProjects|User Projects (353)]]''' using Elphel Cameras  +* '''[[Elphel Software Kit for Ubuntu]]'''  +* '''[[Roadmap]]'''  +* '''[[Images and videos examples|Image & Video Examples]]''' created using Elphel hardware  +* '''[[Hacking the hardware]]''' Hacking and debugging Elphel's hardware  +* '''[[:Category:Development Topics|Development Topics]]''' General Topic collection of camera development related stuff Oleg

Images and videos examples

Wed, 06/01/2016 - 21:43

Nature & animals:

← Older revision Revision as of 03:43, 2 June 2016 Line 157: Line 157:   {|   {| -  | [[Image:Hawks.jpeg|200px||]]+  | [[Image:Hawks.jpeg|thumb|200px|'''Hawks''' (March 2009, Geneva, Switzerland)]] - |+ |} - '''Hawks''' (March 2009, Geneva, Switzerland)+ - + [http://community.elphel.com/videos/hawks/1235984855_202512.mov], [http://community.elphel.com/videos/hawks/1235984874_469444.mov], [http://community.elphel.com/videos/hawks/1235984893_932577.mov] : recorded with [[camogmgui]] in MJPEG/MOV format [http://community.elphel.com/videos/hawks/1235984855_202512.mov], [http://community.elphel.com/videos/hawks/1235984874_469444.mov], [http://community.elphel.com/videos/hawks/1235984893_932577.mov] : recorded with [[camogmgui]] in MJPEG/MOV format Line 168: Line 166: A channel was recently created on vimeo with videos of Common Kestrel and Peregrine Falcon who live at Geneva's SIG facility. http://vimeo.com/channels/hawks A channel was recently created on vimeo with videos of Common Kestrel and Peregrine Falcon who live at Geneva's SIG facility. http://vimeo.com/channels/hawks - |}  Oleg

353

Wed, 06/01/2016 - 21:41

← Older revision Revision as of 03:41, 2 June 2016 Line 1: Line 1: == Elphel 353/363 series cameras and camera modules == == Elphel 353/363 series cameras and camera modules ==  +  +==Links moved from the main page==  +* '''[[Software List|Software List (353)]]''' of software running on the camera  +* '''[[Client Software List|Client Software List (353)]]''' of software running on client (viewer) computer  +* '''[[Elphel 353 series quick start guide|Quick Start Guide]]''' for 353 Series Cameras  +* '''[[User Documentation]]''' Guides and Articles  +* '''[[Usage Tutorials|Usage Tutorials]]''' for general camera users  +* '''[[FAQ|GNU GPL FAQ]]''' Frequently Asked Questions about the License  +* '''[[Questions and Answers|Questions and Answers]]''' Ask and get answers about anything Elphel related  +  + ==Support, tips, and tricks== ==Support, tips, and tricks== Oleg

Main Page

Wed, 06/01/2016 - 21:29

← Older revision Revision as of 03:29, 2 June 2016 Line 8: Line 8: ! colspan="4" | <h2 id="mp-itn-h2" colspan="4" style="margin:0; background:#cedff2; font-size:120%; font-weight:bold; border:1px solid #a3b0bf; text-align:left; color:#000; padding:0.2em 0.4em;">Hardware</h2> ! colspan="4" | <h2 id="mp-itn-h2" colspan="4" style="margin:0; background:#cedff2; font-size:120%; font-weight:bold; border:1px solid #a3b0bf; text-align:left; color:#000; padding:0.2em 0.4em;">Hardware</h2> |- |- -| '''[[10393|Latest Model: 393 Cameras]]'''<br>Released Spring 2016+| '''[[10393|Latest Model: 393 Cameras]]'''<br>Released Spring 2016<br/>&#8226; [[Tmp_manual|Temporary manual]] | '''[[Previous Models]]'''<br> old products   | '''[[Previous Models]]'''<br> old products   |<!--| '''[[Camera Timeline]]'''<br>overview of all camera models and release dates --> |<!--| '''[[Camera Timeline]]'''<br>overview of all camera models and release dates --> Oleg

Pages