TK1 two channels H264 encoder issue

Hello,

We want to use TK1 board for H264 encoder by Gstreamer. I want to use 2 channels to encoding the images. I want to know if the TK1 HD encoding model can support two channels ?
and how to do it.

thanks for you help~~~

Please refer to gstreamer user guide
http://developer.nvidia.com/embedded/dlc/l4t-Jetson-TK1-Multimedia-User-Guide-R21-5

You can launch 2 encoding pipelines such as

$ gst-launch-1.0 videotestsrc ! 'video/x-raw, format=(string)I420, width=(int)640, height=(int)480' ! omxh264enc ! 'video/x-h264, streamformat=(string)byte-stream' ! h264parse ! qtmux ! filesink location=test.mp4 & gst-launch-1.0 videotestsrc ! 'video/x-raw, format=(string)I420, width=(int)640, height=(int)480' ! omxh264enc ! 'video/x-h264, streamformat=(string)byte-stream' ! h264parse ! qtmux ! filesink location=test1.mp4 &