<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comments for Gabor Heja	</title>
	<atom:link href="https://gabor.heja.hu/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>https://gabor.heja.hu/blog</link>
	<description></description>
	<lastBuildDate>Wed, 08 Apr 2026 13:03:20 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.3.2</generator>
			<item>
				<title>
				Comment on Using ffmpeg to color correct / color grade a video by John				</title>
				<link>https://gabor.heja.hu/blog/2024/12/10/using-ffmpeg-to-color-correct-color-grade-a-video-lut-hald-clut/#comment-18836</link>
		<dc:creator><![CDATA[John]]></dc:creator>
		<pubDate>Wed, 08 Apr 2026 13:03:20 +0000</pubDate>
		<guid isPermaLink="false">https://gabor.heja.hu/blog/?p=678#comment-18836</guid>
					<description><![CDATA[Oh God, I tried both the vertical and simple solutions you supplied; all end in the same error as before!

This is after Stream mapping:

Stream mapping:
  Stream #0:0 (libdav1d) -&#062; haldclut
  Stream #0:2 (mjpeg) -&#062; haldclut
  haldclut:default -&#062; Stream #0:0 (libx264)
  Stream #0:1 -&#062; #0:1 (copy)
Press [q] to stop, [?] for help
[Parsed_haldclut_0 @ 00000169ed8e5e40] Padding on the right (280px) of the Hald CLUT will be ignored
[Parsed_haldclut_0 @ 00000169ed8e5e40] The Hald CLUT width does not match the level
[Parsed_haldclut_0 @ 00000169ed8e5e40] Failed to configure input pad on Parsed_haldclut_0
[fc#0 @ 00000169ed0d7b80] Error reinitializing filters!
[fc#0 @ 00000169ed0d7b80] Task finished with error code: -1094995529 (Invalid data found when processing input)
[fc#0 @ 00000169ed0d7b80] Terminating thread with return code -1094995529 (Invalid data found when processing input)
[vost#0:0/libx264 @ 00000169ed155300] [enc:libx264 @ 00000169ed097540] Could not open encoder before EOF
[vost#0:0/libx264 @ 00000169ed155300] Task finished with error code: -22 (Invalid argument)
[vost#0:0/libx264 @ 00000169ed155300] Terminating thread with return code -22 (Invalid argument)
[out#0/mp4 @ 00000169ed5c8180] Nothing was written into output file, because at least one of its streams received no packets.]]></description>
		<content:encoded><![CDATA[<p>Oh God, I tried both the vertical and simple solutions you supplied; all end in the same error as before!</p>
<p>This is after Stream mapping:</p>
<p>Stream mapping:<br />
  Stream #0:0 (libdav1d) -&gt; haldclut<br />
  Stream #0:2 (mjpeg) -&gt; haldclut<br />
  haldclut:default -&gt; Stream #0:0 (libx264)<br />
  Stream #0:1 -&gt; #0:1 (copy)<br />
Press [q] to stop, [?] for help<br />
[Parsed_haldclut_0 @ 00000169ed8e5e40] Padding on the right (280px) of the Hald CLUT will be ignored<br />
[Parsed_haldclut_0 @ 00000169ed8e5e40] The Hald CLUT width does not match the level<br />
[Parsed_haldclut_0 @ 00000169ed8e5e40] Failed to configure input pad on Parsed_haldclut_0<br />
[fc#0 @ 00000169ed0d7b80] Error reinitializing filters!<br />
[fc#0 @ 00000169ed0d7b80] Task finished with error code: -1094995529 (Invalid data found when processing input)<br />
[fc#0 @ 00000169ed0d7b80] Terminating thread with return code -1094995529 (Invalid data found when processing input)<br />
[vost#0:0/libx264 @ 00000169ed155300] [enc:libx264 @ 00000169ed097540] Could not open encoder before EOF<br />
[vost#0:0/libx264 @ 00000169ed155300] Task finished with error code: -22 (Invalid argument)<br />
[vost#0:0/libx264 @ 00000169ed155300] Terminating thread with return code -22 (Invalid argument)<br />
[out#0/mp4 @ 00000169ed5c8180] Nothing was written into output file, because at least one of its streams received no packets.</p>
]]></content:encoded>
						</item>
						<item>
				<title>
				Comment on Using ffmpeg to color correct / color grade a video by john				</title>
				<link>https://gabor.heja.hu/blog/2024/12/10/using-ffmpeg-to-color-correct-color-grade-a-video-lut-hald-clut/#comment-18757</link>
		<dc:creator><![CDATA[john]]></dc:creator>
		<pubDate>Tue, 10 Mar 2026 07:04:06 +0000</pubDate>
		<guid isPermaLink="false">https://gabor.heja.hu/blog/?p=678#comment-18757</guid>
					<description><![CDATA[you should use 16-bit precision and 12 levels for the ffmpeg pipeline (from the LUT gen to consumption).

by default it uses 8-bit precision which results in banding.

you would need to jump through some hoops to get it done.

ffmpeg -f lavfi -i haldclutsrc=12 -pix_fmt rgb48le ...

and


-f lavfi -i haldclutsrc=12 
-filter_complex &quot;[0:v]format=rgb48le[vid]; 
 [1:v]format=rgb48le[lut]; 
 [vid][lut]haldclut, 
 format=yuv420p&quot;]]></description>
		<content:encoded><![CDATA[<p>you should use 16-bit precision and 12 levels for the ffmpeg pipeline (from the LUT gen to consumption).</p>
<p>by default it uses 8-bit precision which results in banding.</p>
<p>you would need to jump through some hoops to get it done.</p>
<p>ffmpeg -f lavfi -i haldclutsrc=12 -pix_fmt rgb48le &#8230;</p>
<p>and</p>
<p>-f lavfi -i haldclutsrc=12<br />
-filter_complex &#8220;[0:v]format=rgb48le[vid];<br />
 [1:v]format=rgb48le[lut];<br />
 [vid][lut]haldclut,<br />
 format=yuv420p&#8221;</p>
]]></content:encoded>
						</item>
						<item>
				<title>
				Comment on Using ffmpeg to color correct / color grade a video by Ko				</title>
				<link>https://gabor.heja.hu/blog/2024/12/10/using-ffmpeg-to-color-correct-color-grade-a-video-lut-hald-clut/#comment-17476</link>
		<dc:creator><![CDATA[Ko]]></dc:creator>
		<pubDate>Sat, 11 Oct 2025 02:07:54 +0000</pubDate>
		<guid isPermaLink="false">https://gabor.heja.hu/blog/?p=678#comment-17476</guid>
					<description><![CDATA[Wow!! You solved my issue: color grading on linux.
This is a very elegant way to use the same tool for both stills and movie.

Thank you so much!!]]></description>
		<content:encoded><![CDATA[<p>Wow!! You solved my issue: color grading on linux.<br />
This is a very elegant way to use the same tool for both stills and movie.</p>
<p>Thank you so much!!</p>
]]></content:encoded>
						</item>
						<item>
				<title>
				Comment on Using ffmpeg to color correct / color grade a video by Gabor Heja				</title>
				<link>https://gabor.heja.hu/blog/2024/12/10/using-ffmpeg-to-color-correct-color-grade-a-video-lut-hald-clut/#comment-17234</link>
		<dc:creator><![CDATA[Gabor Heja]]></dc:creator>
		<pubDate>Wed, 17 Sep 2025 23:35:52 +0000</pubDate>
		<guid isPermaLink="false">https://gabor.heja.hu/blog/?p=678#comment-17234</guid>
					<description><![CDATA[I have checked the &lt;a href=&quot;https://github.com/FFmpeg/FFmpeg/blob/master/libavfilter/vf_lut3d.c#L1489&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer nofollow ugc&quot;&gt;source&lt;/a&gt;, it looks ffmpeg check the image&#039;s width and height, takes the smaller one and tries to use that to calculate the image CLUT size and gives the error above if this is not correct. Check if the shorter side of the image is 512 pixels.&lt;br/&gt;
&lt;br/&gt;
You can try to create a vertical version of it too:&lt;br/&gt;
&lt;code&gt;ffmpeg -f lavfi -i haldclutsrc=8 \
  -i input.mp4 -ss 0:00:04 -frames:v 1 \
  -filter_complex &quot;[1]scale=512:-1[b];[0][b]vstack&quot; \
  haldclut_correction_vertical.png&lt;/code&gt;
Or try to create an image containing only the CLUT:&lt;br/&gt;
&lt;code&gt;ffmpeg -f lavfi -i haldclutsrc=8 -frames:v 1 haldclut_correction_simple.png&lt;/code&gt;
Ffmpeg should use the top-left corner of the picture you supply, as long as the shorter side is 512 and this picture (or the modified version of it) is there it should work.&lt;br/&gt;
&lt;br/&gt;
If it still doesn&#039;t work, could you post the output of ffmpeg (the part starting from the &quot;Stream mapping:&quot; line until the end should be enough) and the picture you try to supply as a CLUT?]]></description>
		<content:encoded><![CDATA[<p>I have checked the <a href="https://github.com/FFmpeg/FFmpeg/blob/master/libavfilter/vf_lut3d.c#L1489" target="_blank" rel="noopener noreferrer nofollow ugc">source</a>, it looks ffmpeg check the image&#8217;s width and height, takes the smaller one and tries to use that to calculate the image CLUT size and gives the error above if this is not correct. Check if the shorter side of the image is 512 pixels.</p>
<p>You can try to create a vertical version of it too:<br />
<code>ffmpeg -f lavfi -i haldclutsrc=8 \<br />
  -i input.mp4 -ss 0:00:04 -frames:v 1 \<br />
  -filter_complex "[1]scale=512:-1[b];[0][b]vstack" \<br />
  haldclut_correction_vertical.png</code><br />
Or try to create an image containing only the CLUT:<br />
<code>ffmpeg -f lavfi -i haldclutsrc=8 -frames:v 1 haldclut_correction_simple.png</code><br />
Ffmpeg should use the top-left corner of the picture you supply, as long as the shorter side is 512 and this picture (or the modified version of it) is there it should work.</p>
<p>If it still doesn&#8217;t work, could you post the output of ffmpeg (the part starting from the &#8220;Stream mapping:&#8221; line until the end should be enough) and the picture you try to supply as a CLUT?</p>
]]></content:encoded>
						</item>
						<item>
				<title>
				Comment on Easy face recognition in Python by Gabor Heja				</title>
				<link>https://gabor.heja.hu/blog/2021/01/04/easy-face-recognition-in-2021-using-python/#comment-17233</link>
		<dc:creator><![CDATA[Gabor Heja]]></dc:creator>
		<pubDate>Wed, 17 Sep 2025 23:15:15 +0000</pubDate>
		<guid isPermaLink="false">https://gabor.heja.hu/blog/?p=519#comment-17233</guid>
					<description><![CDATA[I think in general it is called clustering or grouping.]]></description>
		<content:encoded><![CDATA[<p>I think in general it is called clustering or grouping.</p>
]]></content:encoded>
						</item>
						<item>
				<title>
				Comment on Using ffmpeg to color correct / color grade a video by Gabor Heja				</title>
				<link>https://gabor.heja.hu/blog/2024/12/10/using-ffmpeg-to-color-correct-color-grade-a-video-lut-hald-clut/#comment-17232</link>
		<dc:creator><![CDATA[Gabor Heja]]></dc:creator>
		<pubDate>Wed, 17 Sep 2025 23:12:35 +0000</pubDate>
		<guid isPermaLink="false">https://gabor.heja.hu/blog/?p=678#comment-17232</guid>
					<description><![CDATA[Ffmpeg (depending on the input file and output codec) can pick a different pixel format, which might be unsupported by web browsers. The yuv420p is widely supported and I think it is a safe bet if you intend to embed the video in a web page or play it on an older software/hardware.]]></description>
		<content:encoded><![CDATA[<p>Ffmpeg (depending on the input file and output codec) can pick a different pixel format, which might be unsupported by web browsers. The yuv420p is widely supported and I think it is a safe bet if you intend to embed the video in a web page or play it on an older software/hardware.</p>
]]></content:encoded>
						</item>
						<item>
				<title>
				Comment on Easy face recognition in Python by ilmu sosial				</title>
				<link>https://gabor.heja.hu/blog/2021/01/04/easy-face-recognition-in-2021-using-python/#comment-17201</link>
		<dc:creator><![CDATA[ilmu sosial]]></dc:creator>
		<pubDate>Sun, 14 Sep 2025 13:53:43 +0000</pubDate>
		<guid isPermaLink="false">https://gabor.heja.hu/blog/?p=519#comment-17201</guid>
					<description><![CDATA[What is the term for arranging detected faces into groups based on their facial features?]]></description>
		<content:encoded><![CDATA[<p>What is the term for arranging detected faces into groups based on their facial features?</p>
]]></content:encoded>
						</item>
						<item>
				<title>
				Comment on Using ffmpeg to color correct / color grade a video by ilmu sosial				</title>
				<link>https://gabor.heja.hu/blog/2024/12/10/using-ffmpeg-to-color-correct-color-grade-a-video-lut-hald-clut/#comment-17200</link>
		<dc:creator><![CDATA[ilmu sosial]]></dc:creator>
		<pubDate>Sun, 14 Sep 2025 13:52:48 +0000</pubDate>
		<guid isPermaLink="false">https://gabor.heja.hu/blog/?p=678#comment-17200</guid>
					<description><![CDATA[Why is it sometimes recommended to use the -pix_fmt yuv420p flag when encoding a video with FFmpeg and libx264?]]></description>
		<content:encoded><![CDATA[<p>Why is it sometimes recommended to use the -pix_fmt yuv420p flag when encoding a video with FFmpeg and libx264?</p>
]]></content:encoded>
						</item>
						<item>
				<title>
				Comment on Using ffmpeg to color correct / color grade a video by John				</title>
				<link>https://gabor.heja.hu/blog/2024/12/10/using-ffmpeg-to-color-correct-color-grade-a-video-lut-hald-clut/#comment-16374</link>
		<dc:creator><![CDATA[John]]></dc:creator>
		<pubDate>Mon, 23 Jun 2025 05:46:12 +0000</pubDate>
		<guid isPermaLink="false">https://gabor.heja.hu/blog/?p=678#comment-16374</guid>
					<description><![CDATA[So I tried it without editing the PNG at all and the same error occurs. I then downloaded the latest ffmpeg, and tried again with no luck. The same error! I&#039;m on Windows if that makes any difference. Please let me know if you have any other ideas.

Thanks]]></description>
		<content:encoded><![CDATA[<p>So I tried it without editing the PNG at all and the same error occurs. I then downloaded the latest ffmpeg, and tried again with no luck. The same error! I&#8217;m on Windows if that makes any difference. Please let me know if you have any other ideas.</p>
<p>Thanks</p>
]]></content:encoded>
						</item>
						<item>
				<title>
				Comment on Using ffmpeg to color correct / color grade a video by Gabor Heja				</title>
				<link>https://gabor.heja.hu/blog/2024/12/10/using-ffmpeg-to-color-correct-color-grade-a-video-lut-hald-clut/#comment-16278</link>
		<dc:creator><![CDATA[Gabor Heja]]></dc:creator>
		<pubDate>Sat, 14 Jun 2025 12:19:17 +0000</pubDate>
		<guid isPermaLink="false">https://gabor.heja.hu/blog/?p=678#comment-16278</guid>
					<description><![CDATA[Hello John, could you try to run the correction without changing the PNG? Just to see if ffmpeg can process the original, unaltered output it produced. If that works, then double-check the size before saving the changed video, to be the exact same dimensions as the source. If it doesn&#039;t work, you might need to update your ffmpeg installation. These are the quick ideas I have at the moment, let me know how it goes!]]></description>
		<content:encoded><![CDATA[<p>Hello John, could you try to run the correction without changing the PNG? Just to see if ffmpeg can process the original, unaltered output it produced. If that works, then double-check the size before saving the changed video, to be the exact same dimensions as the source. If it doesn&#8217;t work, you might need to update your ffmpeg installation. These are the quick ideas I have at the moment, let me know how it goes!</p>
]]></content:encoded>
						</item>
						<item>
				<title>
				Comment on Using ffmpeg to color correct / color grade a video by Gabor Heja				</title>
				<link>https://gabor.heja.hu/blog/2024/12/10/using-ffmpeg-to-color-correct-color-grade-a-video-lut-hald-clut/#comment-16277</link>
		<dc:creator><![CDATA[Gabor Heja]]></dc:creator>
		<pubDate>Sat, 14 Jun 2025 12:17:21 +0000</pubDate>
		<guid isPermaLink="false">https://gabor.heja.hu/blog/?p=678#comment-16277</guid>
					<description><![CDATA[I am happy it worked, Fabionne :)]]></description>
		<content:encoded><![CDATA[<p>I am happy it worked, Fabionne :)</p>
]]></content:encoded>
						</item>
						<item>
				<title>
				Comment on Using ffmpeg to color correct / color grade a video by John				</title>
				<link>https://gabor.heja.hu/blog/2024/12/10/using-ffmpeg-to-color-correct-color-grade-a-video-lut-hald-clut/#comment-16102</link>
		<dc:creator><![CDATA[John]]></dc:creator>
		<pubDate>Tue, 13 May 2025 03:13:22 +0000</pubDate>
		<guid isPermaLink="false">https://gabor.heja.hu/blog/?p=678#comment-16102</guid>
					<description><![CDATA[I&#039;m really intrigued about this technique as it&#039;s seemingly so simple and logical, but I keep getting the error: &quot;[Parsed_haldclut_0 @ 0000019bc0f46100] The Hald CLUT width does not match the level&quot;. I&#039;m not very good at ffmpeg and can basically only copy commands and techniques that I see online like yours. I inputted everything basically the same as you, any advice/help?

Thanks]]></description>
		<content:encoded><![CDATA[<p>I&#8217;m really intrigued about this technique as it&#8217;s seemingly so simple and logical, but I keep getting the error: &#8220;[Parsed_haldclut_0 @ 0000019bc0f46100] The Hald CLUT width does not match the level&#8221;. I&#8217;m not very good at ffmpeg and can basically only copy commands and techniques that I see online like yours. I inputted everything basically the same as you, any advice/help?</p>
<p>Thanks</p>
]]></content:encoded>
						</item>
						<item>
				<title>
				Comment on Using ffmpeg to color correct / color grade a video by fabionne				</title>
				<link>https://gabor.heja.hu/blog/2024/12/10/using-ffmpeg-to-color-correct-color-grade-a-video-lut-hald-clut/#comment-15956</link>
		<dc:creator><![CDATA[fabionne]]></dc:creator>
		<pubDate>Wed, 30 Apr 2025 15:05:02 +0000</pubDate>
		<guid isPermaLink="false">https://gabor.heja.hu/blog/?p=678#comment-15956</guid>
					<description><![CDATA[Thank you. This is simply brilliant. I&#039;ve already used it on a video that was yellowed with perfect success.]]></description>
		<content:encoded><![CDATA[<p>Thank you. This is simply brilliant. I&#8217;ve already used it on a video that was yellowed with perfect success.</p>
]]></content:encoded>
						</item>
						<item>
				<title>
				Comment on Using ffmpeg to color correct / color grade a video by Gabor Heja				</title>
				<link>https://gabor.heja.hu/blog/2024/12/10/using-ffmpeg-to-color-correct-color-grade-a-video-lut-hald-clut/#comment-15257</link>
		<dc:creator><![CDATA[Gabor Heja]]></dc:creator>
		<pubDate>Fri, 14 Feb 2025 18:29:50 +0000</pubDate>
		<guid isPermaLink="false">https://gabor.heja.hu/blog/?p=678#comment-15257</guid>
					<description><![CDATA[Thanks, Roberto! I am glad you liked it.]]></description>
		<content:encoded><![CDATA[<p>Thanks, Roberto! I am glad you liked it.</p>
]]></content:encoded>
						</item>
						<item>
				<title>
				Comment on Using ffmpeg to color correct / color grade a video by Roberto				</title>
				<link>https://gabor.heja.hu/blog/2024/12/10/using-ffmpeg-to-color-correct-color-grade-a-video-lut-hald-clut/#comment-15256</link>
		<dc:creator><![CDATA[Roberto]]></dc:creator>
		<pubDate>Fri, 14 Feb 2025 17:58:29 +0000</pubDate>
		<guid isPermaLink="false">https://gabor.heja.hu/blog/?p=678#comment-15256</guid>
					<description><![CDATA[Great article.
This was really useful, thanks a lot!]]></description>
		<content:encoded><![CDATA[<p>Great article.<br />
This was really useful, thanks a lot!</p>
]]></content:encoded>
						</item>
						<item>
				<title>
				Comment on Receiving and decoding 433 MHz radio signals from wireless devices by Automating a Balsam Hill Artificial Tree &#8211; Dave&#039;s Stuff				</title>
				<link>https://gabor.heja.hu/blog/2020/03/16/receiving-and-decoding-433-mhz-radio-signals-from-wireless-devices/#comment-14868</link>
		<dc:creator><![CDATA[Automating a Balsam Hill Artificial Tree &#8211; Dave&#039;s Stuff]]></dc:creator>
		<pubDate>Sat, 14 Dec 2024 07:21:35 +0000</pubDate>
		<guid isPermaLink="false">https://gabor.heja.hu/blog/?p=431#comment-14868</guid>
					<description><![CDATA[[&#8230;] Receiving and decoding 433 MHz radio signals from wireless devices (using Gqrx) [&#8230;]]]></description>
		<content:encoded><![CDATA[<p>[&#8230;] Receiving and decoding 433 MHz radio signals from wireless devices (using Gqrx) [&#8230;]</p>
]]></content:encoded>
						</item>
						<item>
				<title>
				Comment on Easy face recognition in Python by Arif Bahrudin				</title>
				<link>https://gabor.heja.hu/blog/2021/01/04/easy-face-recognition-in-2021-using-python/#comment-14741</link>
		<dc:creator><![CDATA[Arif Bahrudin]]></dc:creator>
		<pubDate>Mon, 18 Nov 2024 14:48:35 +0000</pubDate>
		<guid isPermaLink="false">https://gabor.heja.hu/blog/?p=519#comment-14741</guid>
					<description><![CDATA[I don’t normally comment on blogs.. But nice post! I just bookmarked your site]]></description>
		<content:encoded><![CDATA[<p>I don’t normally comment on blogs.. But nice post! I just bookmarked your site</p>
]]></content:encoded>
						</item>
						<item>
				<title>
				Comment on Receiving and decoding the DCF77 time signal with an ATMega/ATTiny AVR by Gabor Heja				</title>
				<link>https://gabor.heja.hu/blog/2020/12/12/receiving-and-decoding-the-dcf77-time-signal-with-an-atmega-attiny-avr/#comment-11264</link>
		<dc:creator><![CDATA[Gabor Heja]]></dc:creator>
		<pubDate>Wed, 25 Oct 2023 23:55:22 +0000</pubDate>
		<guid isPermaLink="false">https://gabor.heja.hu/blog/?p=483#comment-11264</guid>
					<description><![CDATA[Hey Robert,

First of all, sorry for the very late reply...

The module I used gives only a logic high or low value, depending on the signal the antenna receives. I think in your case there is some noise which makes the read of the logic level unreliable - for the same reason I used some basic noise filtering: sampling the value from the module a number of times (200 in my case) and then assuming the signal was high if the majority (75% = 150 samples) of it were high, otherwise low. See &lt;a href=&quot;https://github.com/gheja/dcf77-decoder/blob/main/src/main.c#L143&quot; rel=&quot;nofollow ugc&quot;&gt;Line 143 of my code&lt;/a&gt; and the &lt;strong&gt;Noise&lt;/strong&gt; section of this post for more details.

And regarding the other station - I don&#039;t &lt;em&gt;think&lt;/em&gt; that anyone else is allowed to broadcast on this exact frequency as this station is used all around Europe.

I&#039;m almost certain that you have finished your project a long time ago, but I wanted to reply in any case.

Gabor]]></description>
		<content:encoded><![CDATA[<p>Hey Robert,</p>
<p>First of all, sorry for the very late reply&#8230;</p>
<p>The module I used gives only a logic high or low value, depending on the signal the antenna receives. I think in your case there is some noise which makes the read of the logic level unreliable &#8211; for the same reason I used some basic noise filtering: sampling the value from the module a number of times (200 in my case) and then assuming the signal was high if the majority (75% = 150 samples) of it were high, otherwise low. See <a href="https://github.com/gheja/dcf77-decoder/blob/main/src/main.c#L143" rel="nofollow ugc">Line 143 of my code</a> and the <strong>Noise</strong> section of this post for more details.</p>
<p>And regarding the other station &#8211; I don&#8217;t <em>think</em> that anyone else is allowed to broadcast on this exact frequency as this station is used all around Europe.</p>
<p>I&#8217;m almost certain that you have finished your project a long time ago, but I wanted to reply in any case.</p>
<p>Gabor</p>
]]></content:encoded>
						</item>
						<item>
				<title>
				Comment on Receiving and decoding 433 MHz radio signals from wireless devices by Gabor Heja				</title>
				<link>https://gabor.heja.hu/blog/2020/03/16/receiving-and-decoding-433-mhz-radio-signals-from-wireless-devices/#comment-9797</link>
		<dc:creator><![CDATA[Gabor Heja]]></dc:creator>
		<pubDate>Sat, 27 May 2023 08:18:45 +0000</pubDate>
		<guid isPermaLink="false">https://gabor.heja.hu/blog/?p=431#comment-9797</guid>
					<description><![CDATA[Szia Gábor!

Örülök, hogy hasznos volt! Sok sikert a hőmérős projektedhez! :)

Üdv:
Gábor]]></description>
		<content:encoded><![CDATA[<p>Szia Gábor!</p>
<p>Örülök, hogy hasznos volt! Sok sikert a hőmérős projektedhez! :)</p>
<p>Üdv:<br />
Gábor</p>
]]></content:encoded>
						</item>
						<item>
				<title>
				Comment on Receiving and decoding 433 MHz radio signals from wireless devices by Tóth Gábor				</title>
				<link>https://gabor.heja.hu/blog/2020/03/16/receiving-and-decoding-433-mhz-radio-signals-from-wireless-devices/#comment-9793</link>
		<dc:creator><![CDATA[Tóth Gábor]]></dc:creator>
		<pubDate>Fri, 26 May 2023 17:57:13 +0000</pubDate>
		<guid isPermaLink="false">https://gabor.heja.hu/blog/?p=431#comment-9793</guid>
					<description><![CDATA[Hello Gábor!

Köszi a jól összefoglalt leírást! Épp most küzdök egy ilyen külső hőmérővel; nagy segítség volt így egyben olvasni! 

Üdv, Gábor]]></description>
		<content:encoded><![CDATA[<p>Hello Gábor!</p>
<p>Köszi a jól összefoglalt leírást! Épp most küzdök egy ilyen külső hőmérővel; nagy segítség volt így egyben olvasni! </p>
<p>Üdv, Gábor</p>
]]></content:encoded>
						</item>
			</channel>
</rss>
