<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/rss-style.xsl" type="text/xsl"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	    xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	     xmlns:dc="http://purl.org/dc/elements/1.1/"
	   xmlns:atom="http://www.w3.org/2005/Atom"
	     xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	  xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>
<channel>
	<title>LG360 &#8211; Terence Eden’s Blog</title>
	<atom:link href="https://shkspr.mobi/blog/tag/lg360/feed/" rel="self" type="application/rss+xml" />
	<link>https://shkspr.mobi/blog</link>
	<description>Regular nonsense about tech and its effects 🙃</description>
	<lastBuildDate>Mon, 09 Mar 2026 11:04:45 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://shkspr.mobi/blog/wp-content/uploads/2023/07/cropped-avatar-32x32.jpeg</url>
	<title>LG360 &#8211; Terence Eden’s Blog</title>
	<link>https://shkspr.mobi/blog</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title><![CDATA[Reprojecting Dual Fisheye Videos to Equirectangular (LG 360)]]></title>
		<link>https://shkspr.mobi/blog/2026/04/reprojecting-dual-fisheye-videos-to-equirectangular-lg-360/</link>
					<comments>https://shkspr.mobi/blog/2026/04/reprojecting-dual-fisheye-videos-to-equirectangular-lg-360/#respond</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Sun, 19 Apr 2026 11:34:32 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[LG360]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[video]]></category>
		<guid isPermaLink="false">https://shkspr.mobi/blog/?p=67087</guid>

					<description><![CDATA[I still use my obsolete LG 360 Camera. When copying MP4 videos from its SD card, they come out in &#34;Dual Fisheye&#34; format - which looks like this:    VLC and YouTube will only play &#34;Equirectangular&#34; videos in spherical mode. So, how to convert a dual fisheye to equirectangualr?  The Simple Way  ffmpeg \   -i original.mp4 \   -vf &#34;v360=input=dfisheye:output=equirect:ih_fov=189:iv_fov=189&#34; \  …]]></description>
										<content:encoded><![CDATA[<p>I still use my <a href="https://shkspr.mobi/blog/2021/11/lg-killed-its-360-camera-after-only-4-years-heres-how-to-get-it-back/">obsolete LG 360 Camera</a>. When copying MP4 videos from its SD card, they come out in "Dual Fisheye" format - which looks like this:</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2026/02/Original.webp" alt="Dual fisheye photo of us and some elephants." width="2560" height="1280" class="aligncenter size-full wp-image-67108">

<p>VLC and YouTube will only play "Equirectangular" videos in spherical mode. So, how to convert a dual fisheye to equirectangualr?</p>

<h2 id="the-simple-way"><a href="https://shkspr.mobi/blog/2026/04/reprojecting-dual-fisheye-videos-to-equirectangular-lg-360/#the-simple-way">The Simple Way</a></h2>

<pre><code class="language-bash">ffmpeg \
  -i original.mp4 \
  -vf "v360=input=dfisheye:output=equirect:ih_fov=189:iv_fov=189" \
  360.mp4
</code></pre>

<p>However, this has some "quirks".</p>

<p>The first part of the video filter is <code>v360=input=dfisheye:output=equirect</code> - that just says to use the 360 filter on an input which is dual fisheye and then output in equirectangular.</p>

<p>The next part is <code>:ih_fov=189:iv_fov=189</code> which says that the input video has a horizontal and vertical field of view of 189°. That's a <em>weird</em> number, right?</p>

<p>You'd kind of expect each lens to be 180°, right? Here's what happens if <code>:ih_fov=180:iv_fov=180</code> is used:</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2026/02/360-180.webp" alt="Flattened image, but there are overlaps at the seams." width="2560" height="1280" class="aligncenter size-full wp-image-67109">

<p>The lenses overlaps a little bit. So using 180° means that certain portions are duplicated.</p>

<p>I <em>think</em> the lenses technically offer 200°, but the physical casing prevents all of that from being viewed. I got to the value of 189° by trial and error. Mostly error! Using <code>:ih_fov=189:iv_fov=189</code> get this image which has less overlap:</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2026/02/360-189.webp" alt="A flattened image which has less overlap at the edges." width="2560" height="1280" class="aligncenter size-full wp-image-67110">

<p>It isn't <em>perfect</em> - but it preserves most of the image coherence.</p>

<h2 id="cut-off-images"><a href="https://shkspr.mobi/blog/2026/04/reprojecting-dual-fisheye-videos-to-equirectangular-lg-360/#cut-off-images">Cut Off Images</a></h2>

<p>There's another thing worth noticing - the top, right, bottom, and left "corners" of the circle are cut off. If the image sensor captured everything, the resultant fisheye would look something like this:</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2026/02/Repaged.webp" alt="Two circular images with gaps between them." width="2626" height="1313" class="aligncenter size-full wp-image-67111">

<p>I tried repaging the video to include the gaps, but it didn't make any noticeable difference.</p>

<h2 id="making-equirectangular-videos-work-with-vlc"><a href="https://shkspr.mobi/blog/2026/04/reprojecting-dual-fisheye-videos-to-equirectangular-lg-360/#making-equirectangular-videos-work-with-vlc">Making Equirectangular Videos Work With VLC</a></h2>

<p>Sadly, ffmpeg will not write the metadata necessary to let playback devices know the video is spherical. Instead, according to <a href="https://bino3d.org/metadata-for-stereo-3d-and-surround-video.html">Bino3D</a>, you have to use <code>exiftool</code> like so:</p>

<pre><code class="language-bash">exiftool \
        -XMP-GSpherical:Spherical="true" \
        -XMP-GSpherical:Stitched="true" \
        -XMP-GSpherical:ProjectionType="equirectangular" \
        video.mp4
</code></pre>

<h2 id="putting-it-all-together"><a href="https://shkspr.mobi/blog/2026/04/reprojecting-dual-fisheye-videos-to-equirectangular-lg-360/#putting-it-all-together">Putting It All Together</a></h2>

<p>The LG 360 records audio in 5.1 surround using AAC. That's already fairly well compressed, so there's no point squashing it down to Opus.</p>

<p>The default video codec is h264, but the picture is going to be reprojected, so quality is always going to take a bit of a hit. Pick whichever code you like to give the best balance of quality, file size, and encoding time.</p>

<p>Run:</p>

<pre><code class="language-bash">ffmpeg \
  -i original.mp4 \
  -vf "v360=input=dfisheye:output=equirect:ih_fov=189:iv_fov=189" \
  -c:v libx265 -preset fast -crf 28 -c:a copy \
  out.mp4; exiftool \
        -XMP-GSpherical:Spherical="true" \
        -XMP-GSpherical:Stitched="true" \
        -XMP-GSpherical:ProjectionType="equirectangular" \
        out.mp4
</code></pre>

<p>That will produce a reasonable equirectangular file suitable for viewing in VLC or in VR.</p>

<p>If this has been useful to you, please stick a comment in the box!</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=67087&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2026/04/reprojecting-dual-fisheye-videos-to-equirectangular-lg-360/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[LG killed its 360 camera after only 4 years - here's how to get it back]]></title>
		<link>https://shkspr.mobi/blog/2021/11/lg-killed-its-360-camera-after-only-4-years-heres-how-to-get-it-back/</link>
					<comments>https://shkspr.mobi/blog/2021/11/lg-killed-its-360-camera-after-only-4-years-heres-how-to-get-it-back/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Mon, 22 Nov 2021 12:34:08 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[360]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[LG360]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[NaBloPoMo]]></category>
		<guid isPermaLink="false">https://shkspr.mobi/blog/?p=41005</guid>

					<description><![CDATA[Four years ago, I reviewed the LG-R105 360 Camera. It&#039;s a pretty nifty bit of hardware. Sadly, LG have decided that they don&#039;t want to support it any more. They already got your money, so fuck you for expecting any further updates.  Here&#039;s their message:  We express a sincere gratitude for your patronage to LG 360 CAM Manager Service. Due to changes in our operation policies, LG 360 CAM Manager…]]></description>
										<content:encoded><![CDATA[<p>Four years ago, I <a href="https://shkspr.mobi/blog/2017/08/lg-360-camera-review/">reviewed the LG-R105 360 Camera</a>. It's a pretty nifty bit of hardware. Sadly, LG have decided that they don't want to support it any more. They already got your money, so fuck you for expecting any further updates.</p>

<p>Here's their message:</p>

<blockquote><p>We express a sincere gratitude for your patronage to LG 360 CAM Manager Service.
Due to changes in our operation policies, LG 360 CAM Manager Service via mobile applications will be terminated as of June 20, 2020.</p></blockquote>

<p>Well, that's a load of bollocks, isn't it! Here's how you can continue using the camera on modern versions of Android - and connect to it on Linux.</p>

<h2 id="get-the-app"><a href="https://shkspr.mobi/blog/2021/11/lg-killed-its-360-camera-after-only-4-years-heres-how-to-get-it-back/#get-the-app">Get The App</a></h2>

<p>LG have removed it from Google Play. They could have left it there, but they didn't.  But the Internet never forgets. So you can <a href="https://apkpure.com/lg-360-cam-manager-will-closed/com.lge.sc">download the final version from APK Pure</a>.</p>

<p>Copy the APK to your phone and install it.  You can <a href="https://www.lg.com/us/support/products/documents/LG_G5_360_CAM_InstructionSheet.pdf">read the instructions</a> to see how the app works.</p>

<p>If you're lucky, everything will just work. If not, read on…</p>

<h2 id="reset-the-camera"><a href="https://shkspr.mobi/blog/2021/11/lg-killed-its-360-camera-after-only-4-years-heres-how-to-get-it-back/#reset-the-camera">Reset the camera</a></h2>

<p>Charge the camera via USB-C. Turn it on by holding the power button for 4 seconds. After all the lights have stopped flashing, simultaneously hold down power and shutter for about 12 seconds. You'll get an assortment of flashy lights and sounds. This is the camera resetting.  You may need to turn it off and on again.</p>

<p>Go into the app, and search for your device. Click on the device it finds.</p>

<p>Now, go to your phone's WiFi settings. You should see a new network called something like <code>LGR105_123456.OSC</code>. Connect to it.</p>

<p>The password will be <code>00123456</code> - so <code>00</code> plus the last 6 numbers of the Access Point name. Secure!</p>

<p>You can now go back to the app and use it as per normal.</p>

<h2 id="root-it"><a href="https://shkspr.mobi/blog/2021/11/lg-killed-its-360-camera-after-only-4-years-heres-how-to-get-it-back/#root-it">Root it!</a></h2>

<p>Oh yes 😁 using <a href="https://lekensteyn.nl/lglaf/">LGLAF</a> you can force the camera into ADB debugging mode. You will also need to install <a href="https://github.com/pyusb/pyusb">PyUSB</a>.</p>

<p>As per <a href="https://forum.xda-developers.com/t/rooted-lg-360-cam.3791114/">these instructions</a>:</p>

<ol>
<li>Turn off camera by holding the power button until it beeps forlornly. Keep holding it down until the double LEDs on the side stop flashing.</li>
<li>Plug a USB cable into a computer, but do <strong>not</strong> connect the camera</li>
<li>Press and hold the shutter button while plugging the USB-C into the camera</li>
<li>Keep holding the shutter button down until led turns blue</li>
<li>In a terminal, type <code>python lglaf.py --cr</code></li>
<li>Type <code>setprop persist.sys.usb.config mtp,adb</code></li>
<li>Type <code>exit</code> and unplug camera</li>
<li>Hold power button down until the blue LED goes off</li>
<li>Hold power button to turn on the camera</li>
<li>Plug camera back into USB-C</li>
<li>On computer, type <code>adb devices</code> and you should see the camera</li>
</ol>

<p>Now, using something like <a href="https://shkspr.mobi/blog/2021/10/notes-on-using-an-android-phone-as-a-webcam-on-linux/"><code>scrcpy</code></a> you can connect to the camera and use it just like an Android phone!</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2021/11/scrcpy-lgr105.png" alt="Screenshot of an Android device with lots of debug options." width="500" height="855" class="aligncenter size-full wp-image-41008">

<p>It acts just like a normal Android device - you have access to all the settings, developer mode, etc.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2021/11/lg.png" alt="The Android " about="" phone"="" screen."="" width="500" height="855" class="aligncenter size-full wp-image-41067"></p>

<h2 id="http-requests"><a href="https://shkspr.mobi/blog/2021/11/lg-killed-its-360-camera-after-only-4-years-heres-how-to-get-it-back/#http-requests">HTTP Requests</a></h2>

<p>Once you've got access to the camera, you can turn on its WiFi and connect to your home network. As per <a href="https://forum.xda-developers.com/t/lg-360-cam-live-streaming.3590564/">these helpful instructions</a> you can then use the built in  OCS API.</p>

<p>For example, sending a HTTP GET to <code>http://192.168.123.456:6624/osc/info</code> will get you back:</p>

<pre><code class="language-JSON">{
  "manufacturer": "LGE",
  "model": "LG-R105",
  "serialNumber": "123456",
  "firmwareVersion": "R10510l",
  "supportUrl": "developer.lge.com/friends",
  "endpoints": {
    "httpPort": 6624,
    "httpUpdatesPort": 6624
  },
  "gps": false,
  "gyro": true,
  "uptime": 18,
  "api": [
    "/osc/checkForUpdates",
    "/osc/commands/execute",
    "/osc/commands/status",
    "/osc/info",
    "/osc/state"
  ],
  "apiLevel": [
    1,
    2
  ]
}
</code></pre>

<p>To take a photo, run: 
<code>curl -X POST http://192.168.123.456:6624/osc/commands/execute -H 'Content-Type: application/json' -d '{"name": "camera.takePicture"}'</code>
that will save it on the camera's SD card.</p>

<p>To get a photo from the camera, run:
<code>curl -X POST http://192.168.123.456:6624/osc/commands/execute -H 'Content-Type: application/json' -d '{"name": "camera.getLivePreview"}' --output test.jpg</code></p>

<p>I haven't figured out 360 streaming (if it is even possible) but you can get a preview of one of the cameras:</p>

<p>To start a session, run:
<code>curl -X POST http://192.168.123.456:6624/osc/commands/execute -H 'Content-Type: application/json' -d '{"name": "camera.startSession"}'</code>
To start a stream, run:
<code>curl -X POST http://192.168.123.456:6624/osc/commands/execute -H 'Content-Type: application/json' -d '{"name": "camera._startPreview", "parameters": {"sessionId": "123"}}'</code></p>

<p>You will get back:</p>

<pre><code class="language-JSON">{
  "results": {
    "_previewUri": "udp://:1234"
  },
  "name": "camera._startPreview",
  "state": "done"
}
</code></pre>

<p>Run VLC and open the network stream <code>udp://:1234</code> and you'll get a low-resolution preview of what the camera is seeing.</p>

<p>You can see more commands on the <a href="https://developers.google.com/streetview/open-spherical-camera/guides/osc/commands/execute">Open Spherical Camera API page</a>.</p>

<h2 id="full-list-of-commands"><a href="https://shkspr.mobi/blog/2021/11/lg-killed-its-360-camera-after-only-4-years-heres-how-to-get-it-back/#full-list-of-commands">Full list of commands</a></h2>

<p>By decompiling the APK, I was able to extract these available commands. Anything which starts with <code>_</code> is a manufacturer specific command, so won't work on other OSC cameras.</p>

<ul>
<li><code>camera._getRecordingStatus</code></li>
<li><code>camera._getThumbnail</code></li>
<li><code>camera._getVideo</code></li>
<li><code>camera._listAll</code></li>
<li><code>camera._liveSnapshot</code></li>
<li><code>camera._manualMetaData</code></li>
<li><code>camera._pauseRecording</code></li>
<li><code>camera._resumeRecording</code></li>
<li><code>camera._startPreview</code></li>
<li><code>camera._startStillPreview</code></li>
<li><code>camera._stopPreview</code></li>
<li><code>camera._stopStillPreview</code></li>
<li><code>camera._updateTimer</code></li>
<li><code>camera.closeSession</code></li>
<li><code>camera.delete</code></li>
<li><code>camera.getFile</code></li>
<li><code>camera.getImage</code></li>
<li><code>camera.getMetadata</code></li>
<li><code>camera.getOptions</code></li>
<li><code>camera.listFiles</code></li>
<li><code>camera.setOptions</code></li>
<li><code>camera.startCapture</code></li>
<li><code>camera.startSession</code></li>
<li><code>camera.stopCapture</code></li>
<li><code>camera.takePicture</code></li>
<li><code>camera.updateSession</code></li>
</ul>

<p>Enjoy!</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=41005&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2021/11/lg-killed-its-360-camera-after-only-4-years-heres-how-to-get-it-back/feed/</wfw:commentRss>
			<slash:comments>29</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[The 360 Selfie]]></title>
		<link>https://shkspr.mobi/blog/2019/11/the-360-selfie/</link>
					<comments>https://shkspr.mobi/blog/2019/11/the-360-selfie/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Sat, 30 Nov 2019 07:51:09 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[360]]></category>
		<category><![CDATA[LG360]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[NaBloPoMo]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[photos]]></category>
		<guid isPermaLink="false">https://shkspr.mobi/blog/?p=28919</guid>

					<description><![CDATA[I&#039;ll admit it - I never really got the selfie. I was trapped in the mistake that they were a mere narcissistic folly. I couldn&#039;t have been more wrong.  The more I travel the world, the more I see a change in people&#039;s behaviour around monuments.  It used to be people jostling to get the one perfect shot of a thing.  Even if they got the perfect shot, they never looked at the result.  Why?  People…]]></description>
										<content:encoded><![CDATA[<p>I'll admit it - I never really <em>got</em> the selfie. I was trapped in the mistake that they were a mere narcissistic folly. I couldn't have been more wrong.  The more I travel the world, the more I see a change in people's behaviour around monuments.  It used to be people jostling to get the one perfect shot of a thing.  Even if they got the perfect shot, they never looked at the result.  Why?</p>

<p>People <em>want</em> to take a photo like this:
<a href="https://flic.kr/p/99wq3J"><img src="https://farm6.staticflickr.com/5008/5347320366_d4570080e7_b.jpg" width="512" alt="A beautiful and artful photo of the Eifel Tower" class="aligncenter size-medium"></a></p>

<p>But it often ends up coming out like this:
<a href="https://flic.kr/p/oemrbL"><img src="https://farm4.staticflickr.com/3852/14590950308_d8fea4c486_b.jpg" width="512" height="384" class="aligncenter size-medium"></a></p>

<p>That's not intended to be snarky. Most of us don't have the time, skill, or equipment to take stunning photographs.  But that's OK! The best photographs of mere objects have already been taken. The photo that no-one else has ever taken is of <em>you standing there!</em></p>

<p>That's what I love about selfies! A photo of a monument is just that. It shows you were there, once, kinda. But a selfie <em>proves</em> that you were there! I think there's something delightful about saying "This is me! Here I am!"</p>

<p>So, here are a couple of 360 selfies from our recent trips. They're not the greatest photos in the world - they're not static shots of a thing - but they are of <em>us</em> and the memories we made.</p>

<h2 id="rome"><a href="https://shkspr.mobi/blog/2019/11/the-360-selfie/#rome">Rome</a></h2>

<iframe style="border-style:none;" width="1024" height="400" allowfullscreen="" src="https://shkspr.mobi/pannellum/pannellum.htm#panorama=/blog/wp-content/uploads/2017/11/Cave.jpg&amp;autoRotate=2&amp;autoLoad=false&amp;title=Caves"></iframe>

<iframe style="border-style:none;" width="1024" height="400" allowfullscreen="" src="https://shkspr.mobi/pannellum/pannellum.htm#panorama=/blog/wp-content/uploads/2017/11/kissing.jpg&amp;autoRotate=-2&amp;autoLoad=false&amp;title=Trevi"></iframe>

<h2 id="hong-kong"><a href="https://shkspr.mobi/blog/2019/11/the-360-selfie/#hong-kong">Hong Kong</a></h2>

<iframe style="border-style:none;" width="1024" height="400" allowfullscreen="" src="https://shkspr.mobi/pannellum/pannellum.htm#panorama=/blog/wp-content/uploads/2019/11/20190827_041245.jpg&amp;autoRotate=2&amp;autoLoad=false&amp;title=HongKong"></iframe>

<h2 id="australia"><a href="https://shkspr.mobi/blog/2019/11/the-360-selfie/#australia">Australia</a></h2>

<iframe style="border-style:none;" width="1024" height="400" allowfullscreen="" src="https://shkspr.mobi/pannellum/pannellum.htm#panorama=/blog/wp-content/uploads/2019/11/20190912_194621.jpg&amp;autoRotate=2&amp;autoLoad=false&amp;title=Opera"></iframe>

<iframe style="border-style:none;" width="1024" height="400" allowfullscreen="" src="https://shkspr.mobi/pannellum/pannellum.htm#panorama=/blog/wp-content/uploads/2019/11/20190831_085631.jpg&amp;autoRotate=2&amp;autoLoad=false&amp;title="></iframe>

<iframe style="border-style:none;" width="1024" height="400" allowfullscreen="" src="https://shkspr.mobi/pannellum/pannellum.htm#panorama=/blog/wp-content/uploads/2019/11/20190901_111239.jpg&amp;autoRotate=2&amp;autoLoad=false&amp;title="></iframe>

<iframe style="border-style:none;" width="1024" height="400" allowfullscreen="" src="https://shkspr.mobi/pannellum/pannellum.htm#panorama=/blog/wp-content/uploads/2019/11/20190901_131142.jpg&amp;autoRotate=2&amp;autoLoad=false&amp;title="></iframe>

<iframe style="border-style:none;" width="1024" height="400" allowfullscreen="" src="https://shkspr.mobi/pannellum/pannellum.htm#panorama=/blog/wp-content/uploads/2019/11/20190902_183656.jpg&amp;autoRotate=2&amp;autoLoad=false&amp;title="></iframe>

<iframe style="border-style:none;" width="1024" height="400" allowfullscreen="" src="https://shkspr.mobi/pannellum/pannellum.htm#panorama=/blog/wp-content/uploads/2019/11/20190904_130638.jpg&amp;autoRotate=2&amp;autoLoad=false&amp;title="></iframe>

<iframe style="border-style:none;" width="1024" height="400" allowfullscreen="" src="https://shkspr.mobi/pannellum/pannellum.htm#panorama=/blog/wp-content/uploads/2019/11/20190904_153516.jpg&amp;autoRotate=2&amp;autoLoad=false&amp;title="></iframe>

<iframe style="border-style:none;" width="1024" height="400" allowfullscreen="" src="https://shkspr.mobi/pannellum/pannellum.htm#panorama=/blog/wp-content/uploads/2019/11/20190910_123029.jpg&amp;autoRotate=2&amp;autoLoad=false&amp;title="></iframe>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=28919&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2019/11/the-360-selfie/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[LG 360 Camera Review]]></title>
		<link>https://shkspr.mobi/blog/2017/08/lg-360-camera-review/</link>
					<comments>https://shkspr.mobi/blog/2017/08/lg-360-camera-review/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Thu, 31 Aug 2017 11:41:42 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[LG360]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[tech]]></category>
		<guid isPermaLink="false">https://shkspr.mobi/blog/?p=25508</guid>

					<description><![CDATA[I&#039;ve just bought an LG 360 - at £150, it&#039;s one of the cheapest dual lens cameras on the market.  This an excellent bit of kit. Easy to use, impressive results, and an app which works pretty well.  A single click button to take photos and videos, recording audio in surround sound, and perfect for uploading to Facebook or YouTube.  Unlike most of the kit I review, I paid for this myself. I have no …]]></description>
										<content:encoded><![CDATA[<p>I've just bought an <a href="http://amzn.to/2vJUIfQ">LG 360</a> - at £150, it's one of the cheapest dual lens cameras on the market.</p>

<p>This an excellent bit of kit. Easy to use, impressive results, and an app which works pretty well.</p>

<p>A single click button to take photos and videos, recording audio in surround sound, and perfect for uploading to Facebook or YouTube.</p>

<p>Unlike most of the kit I review, I paid for this myself. I have no hesitation in recommending it to anyone who wants to get started in spherical photography.</p>

<p>You can find the tech specs yourself - I'm going to show you a few of the photos and then tell you why you <em>shouldn't</em> buy it.</p>

<h2 id="sample-shots"><a href="https://shkspr.mobi/blog/2017/08/lg-360-camera-review/#sample-shots">Sample Shots</a></h2>

<p>This is what a "raw" equirectangular image looks like. Click for MASSIVE.
<a href="https://shkspr.mobi/blog/wp-content/uploads/2017/08/360.jpg"><img src="https://shkspr.mobi/blog/wp-content/uploads/2017/08/360.jpg" alt="A distorted image" width="5660" height="2830" class="alignnone size-full wp-image-28544"></a>
If you zoom in, you can tell exactly where the stitching is.  It's pretty good - but not seamless.</p>

<h2 id="design-flaws"><a href="https://shkspr.mobi/blog/2017/08/lg-360-camera-review/#design-flaws">Design Flaws</a></h2>

<p>The camera is not perfect, I'll start by talking about the things which show this is a V1 product.</p>

<h3 id="charging-flap"><a href="https://shkspr.mobi/blog/2017/08/lg-360-camera-review/#charging-flap">Charging Flap</a></h3>

<p>On the base of the unit is a flap - it covers the USB charging port and the microSD slot. With the flap open, you can't use the tripod.&nbsp;</p>

<p>Or, to put it a different way, you have to take off the tripod every time you want to charge it.</p>

<h3 id="usb-connection"><a href="https://shkspr.mobi/blog/2017/08/lg-360-camera-review/#usb-connection">USB Connection</a></h3>

<p>I like the fact it uses the newer USB-C standard. But it appears that the camera can only be charged over USB, you can't transfer files from it. When plugged into a computer, it doesn't show as a USB drive. The only way to get photos and videos off is over WiFi using the app. WiFi transfers pretty quickly, but you end up going camera to phone to laptop if you want to edit anything.</p>

<h3 id="no-live-streaming"><a href="https://shkspr.mobi/blog/2017/08/lg-360-camera-review/#no-live-streaming">No Live Streaming</a></h3>

<p>The camera streams video direct to the handset over WiFi, but there's no way to put that on YouTube or Facebook directly.</p>

<p>There are some <a href="https://forum.xda-developers.com/lg-g5/accessories/lg-360-cam-live-streaming-t3590564">hacky workarounds</a></p>

<h3 id="no-built-in-gps"><a href="https://shkspr.mobi/blog/2017/08/lg-360-camera-review/#no-built-in-gps">No Built-in GPS</a></h3>

<p>Photos do have GPS EXIF - but the location is that of your phone. That's fine if you're holding both, but if you put the camera somewhere then get out of shot, the location will represent your position, not the camera's.&nbsp;</p>

<h3 id="password-protection-and-wifi-connectivity"><a href="https://shkspr.mobi/blog/2017/08/lg-360-camera-review/#password-protection-and-wifi-connectivity">Password Protection and WiFi Connectivity</a></h3>

<p>When you first connect to the camera, it prompts you to change the default WiFi password. A brilliant idea!&nbsp;</p>

<p>But it doesn't actually work. I repeatedly tried changing the password, to no effect.&nbsp;</p>

<p>WiFi can be a little hard to manage. Your phone connects to the camera - but some phones will complain that there is no Internet connection, and will disconnect. It sometimes takes some manual clicking around the options to get connected.&nbsp;</p>

<p>Even then, the connection can be spotty. Move too far away and the live video feed from the camera stops. The camera still took photos and videos, but the preview stopped. The range seemed to be about 5 metres.</p>

<h2 id="verdict"><a href="https://shkspr.mobi/blog/2017/08/lg-360-camera-review/#verdict">Verdict</a></h2>

<p>I'm being overly harsh on such a cheap product. For quick snaps or full videos, it's incredibly good.</p>

<p>The app is decent - not always a given with hardware. Plenty of options to fiddle with and relatively quick to use.</p>

<p>For around £150 it is excellent. Hold it high above your head and create some gorgeous images.</p>

<p>You can <a href="http://amzn.to/2vJUIfQ">buy the LG 360 from Amazon UK</a></p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=25508&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2017/08/lg-360-camera-review/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
	</channel>
</rss>
