<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://blueirissoftware.com/forum/app.php/feed/topic/1457" />

	<title>Blue Iris</title>
	<subtitle>Blue Iris User Group</subtitle>
	<link href="https://blueirissoftware.com/forum/index.php" />
	<updated>2022-02-27T02:52:01+00:00</updated>

	<author><name><![CDATA[Blue Iris]]></name></author>
	<id>https://blueirissoftware.com/forum/app.php/feed/topic/1457</id>

		<entry>
		<author><name><![CDATA[ajnajeh]]></name></author>
		<updated>2022-02-27T02:52:01+00:00</updated>

		<published>2022-02-27T02:52:01+00:00</published>
		<id>https://blueirissoftware.com/forum/viewtopic.php?p=12768#p12768</id>
		<link href="https://blueirissoftware.com/forum/viewtopic.php?p=12768#p12768"/>
		<title type="html"><![CDATA[Re: Raspberry Pi IP Camera]]></title>

		
		<content type="html" xml:base="https://blueirissoftware.com/forum/viewtopic.php?p=12768#p12768"><![CDATA[
Have you been able to enable PTZ functions?<p>Statistics: Posted by <a href="https://blueirissoftware.com/forum/memberlist.php?mode=viewprofile&amp;u=5526">ajnajeh</a> — Sun Feb 27, 2022 2:52 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[McBobby]]></name></author>
		<updated>2021-02-10T05:29:35+00:00</updated>

		<published>2021-02-10T05:29:35+00:00</published>
		<id>https://blueirissoftware.com/forum/viewtopic.php?p=8027#p8027</id>
		<link href="https://blueirissoftware.com/forum/viewtopic.php?p=8027#p8027"/>
		<title type="html"><![CDATA[Re: Raspberry Pi IP Camera]]></title>

		
		<content type="html" xml:base="https://blueirissoftware.com/forum/viewtopic.php?p=8027#p8027"><![CDATA[
I have a Pi3 and PiB+ that I have streaming to Blue Iris.<br><br>I install motioneyeOS on it first.  I can be found here:<a href="https://github.com/ccrisan/motioneyeos/wiki" class="postlink"> https://github.com/ccrisan/motioneyeos/wiki</a><br><br>After you get that up and running you can enable "Fast Network Camera" mode on it.  This drops my CPU usage on both Pis to almost nothing.  Seen as blue iris is doing all the motion detection and recording you don't need any of those features enabled on the Pi. <br><br>More info on Fast Network Camera mode here: <a href="https://github.com/ccrisan/motioneyeos/wiki/Fast-Network-Camera" class="postlink">https://github.com/ccrisan/motioneyeos/ ... ork-Camera</a><br><br>After you have that enabled it go to the video streaming settings and change the streaming protocol to "RTSP".<br><br>In blue iris here is a screenshot of the video settings for one of my Pi cams using rtsp.  It is not apparent that you need the /h264 url, but found it in a forum. <br><br>The area I greyed out you would put the hostname or ip of the pi. <br><br><img src="https://i.imgur.com/njZS8eo.png" class="postimage" alt="Image"><p>Statistics: Posted by <a href="https://blueirissoftware.com/forum/memberlist.php?mode=viewprofile&amp;u=3150">McBobby</a> — Wed Feb 10, 2021 5:29 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Malstrond]]></name></author>
		<updated>2020-12-12T11:41:55+00:00</updated>

		<published>2020-12-12T11:41:55+00:00</published>
		<id>https://blueirissoftware.com/forum/viewtopic.php?p=7354#p7354</id>
		<link href="https://blueirissoftware.com/forum/viewtopic.php?p=7354#p7354"/>
		<title type="html"><![CDATA[Re: Raspberry Pi IP Camera]]></title>

		
		<content type="html" xml:base="https://blueirissoftware.com/forum/viewtopic.php?p=7354#p7354"><![CDATA[
I'm using uv4l-raspicam for this. -&gt; <a href="https://www.linux-projects.org/uv4l/installation/" class="postlink">documentation</a>. <br>uv4l presents a raw H264 stream at /stream/video.h264.<br>I connected Blue Iris to that with the following settings:<br>Camera URL: http://[IP of RPi]:8080<br>Make: Generic/ONVIF<br>Model: Raw H.264<br>Stream Profiles - Main: /stream/video.h264<br><br>There are a ton more configuration options listed <a href="https://www.linux-projects.org/documentation/uv4l-raspicam/" class="postlink">here</a>.<br>You set them in /etc/uv4l-raspicam.conf. Noteworthy options are...<br>To get H264 streams:<br><em class="text-italics">encoding = h264</em><br>Resolution:<br><em class="text-italics">width = <br>height =</em><br>This sets your framerate to dynamic, a very neat feature. At daytime the Pi cranks the FPS up as far as it can while at night it can lower the framerate down to 1, while increasing the exposure time. This provides a usable image even with no IR LEDs with just street lighting:<br><em class="text-italics">framerate = 0</em><br>To avoid pixel binning:<br><em class="text-italics">custom-sensor-config =</em><br>Also required for dynamic FPS is auto ISO:<br><em class="text-italics">iso = 0</em><br>Increase exposure at night, still works fine at daytime:<br><em class="text-italics">exposure = night</em><br>Enable AWB:<br><em class="text-italics">awb = auto</em><br>Enable WDR:<br><em class="text-italics">drc = high</em><br>To disable WebRTC if you just use the stream functionality, saves some RAM:<br><em class="text-italics">server-option = --enable-webrtc=no</em><br>H264 quality options:<br><em class="text-italics">profile = <br>level = </em><br>If you want CBR at 2mbit/s:<br><em class="text-italics">bitrate = 2000000</em><br>OR if you want VBR:<br><em class="text-italics">quantisation-parameter = 25</em><p>Statistics: Posted by <a href="https://blueirissoftware.com/forum/memberlist.php?mode=viewprofile&amp;u=1997">Malstrond</a> — Sat Dec 12, 2020 11:41 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[toddmc451]]></name></author>
		<updated>2020-07-18T21:24:55+00:00</updated>

		<published>2020-07-18T21:24:55+00:00</published>
		<id>https://blueirissoftware.com/forum/viewtopic.php?p=5856#p5856</id>
		<link href="https://blueirissoftware.com/forum/viewtopic.php?p=5856#p5856"/>
		<title type="html"><![CDATA[Re: Raspberry Pi IP Camera]]></title>

		
		<content type="html" xml:base="https://blueirissoftware.com/forum/viewtopic.php?p=5856#p5856"><![CDATA[
Did you ever get Blue Iris to recognize the Raspberry Pi Camera?  If YES, please tell us how you configured everything!  THANK YOU! <img class="smilies" src="https://blueirissoftware.com/forum/images/smilies/icon_e_biggrin.gif" width="15" height="17" alt=":D" title="Very Happy"><p>Statistics: Posted by <a href="https://blueirissoftware.com/forum/memberlist.php?mode=viewprofile&amp;u=2602">toddmc451</a> — Sat Jul 18, 2020 9:24 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[MikeBwca]]></name></author>
		<updated>2020-06-28T04:57:26+00:00</updated>

		<published>2020-06-28T04:57:26+00:00</published>
		<id>https://blueirissoftware.com/forum/viewtopic.php?p=5676#p5676</id>
		<link href="https://blueirissoftware.com/forum/viewtopic.php?p=5676#p5676"/>
		<title type="html"><![CDATA[Re: Raspberry Pi IP Camera]]></title>

		
		<content type="html" xml:base="https://blueirissoftware.com/forum/viewtopic.php?p=5676#p5676"><![CDATA[
Wow.  So many things between the camera and BlueIris. <br><br>I tried streaming VLC, and it works.  But I choose not to do it... lots of extra cpu/gpu.<p>Statistics: Posted by <a href="https://blueirissoftware.com/forum/memberlist.php?mode=viewprofile&amp;u=326">MikeBwca</a> — Sun Jun 28, 2020 4:57 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[wjburl]]></name></author>
		<updated>2020-06-25T20:08:26+00:00</updated>

		<published>2020-06-25T20:08:26+00:00</published>
		<id>https://blueirissoftware.com/forum/viewtopic.php?p=5665#p5665</id>
		<link href="https://blueirissoftware.com/forum/viewtopic.php?p=5665#p5665"/>
		<title type="html"><![CDATA[Raspberry Pi IP Camera]]></title>

		
		<content type="html" xml:base="https://blueirissoftware.com/forum/viewtopic.php?p=5665#p5665"><![CDATA[
I would like to use my Raspberry Pi with an RPi camera to feed into Blue Iris SW.  I can use raspivid to output a stream using VLC and  I can view the stream on a PC using VLC.  I use the Open Network Stream and enter  192.168.2.111:8554/stream.  That way I can see the stream on the PC.  Is there a way to set up the RPi to add it as a camera to  Blue Iris SW?<p>Statistics: Posted by <a href="https://blueirissoftware.com/forum/memberlist.php?mode=viewprofile&amp;u=2421">wjburl</a> — Thu Jun 25, 2020 8:08 pm</p><hr />
]]></content>
	</entry>
	</feed>
