this post was submitted on 30 Aug 2025
860 points (98.1% liked)

Technology

74692 readers
3427 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
 

A music and science lover has revealed that some birds can store and retrieve digital data. Specifically, he converted a PNG sketch of a bird into an audio waveform, then tried to embed it in the song memory of a young starling, ready for later retrieval as an image. Benn Jordan made a video of this feat, sharing it on YouTube, and according to his calculations, the bird-based data transfer system could be capable of around 2 MB/s data speeds.

top 50 comments
sorted by: hot top controversial new old
[–] Showroom7561@lemmy.ca 11 points 1 day ago* (last edited 1 day ago)

Only a matter of time before megacorps put ads and a subscription service on bird calls, now. 😫

[–] Rakonat@lemmy.world 15 points 1 day ago (1 children)

Inb4 Doom can now run on birds.

[–] Beero@lemmy.world 2 points 1 day ago

Latency tho....

[–] orenj@lemmy.sdf.org 5 points 1 day ago* (last edited 1 day ago) (2 children)

How useful would this have been back at the dawn of computation, I wonder?

They didn’t have ultrasonic microphones at the dawn of computation

[–] Jankatarch@lemmy.world 4 points 1 day ago* (last edited 1 day ago)

Pigeon guided missile but instead of pigeon it's a parrot and sings relevant source code in hex and an interpeter assembles it.

(I hate the last 4 words that sentence I made.)

[–] ISOmorph@feddit.org 176 points 2 days ago (17 children)

In before EU genocides all starlings because you can't put backdoors in them to scan for CSAM.

[–] PhobosAnomaly@feddit.uk 89 points 2 days ago (7 children)

Well, technically it has a built in backdoor...

[–] hoch@lemmy.world 85 points 2 days ago (9 children)
load more comments (9 replies)
load more comments (6 replies)
load more comments (16 replies)
[–] gozz@lemmy.world 19 points 2 days ago (2 children)

Not to be a wet blanket, but every time this comes up I get annoyed by some factual inaccuracies in the articles about this. It is not digital! He drew an image on a computer, but converted it to an analogue spectrogram to store on the bird. That's neat as hell, but it's not digital. The image that he got back was slightly corrupted.

Now I would be fascinated to see a follow-up seeing if you can actually modulate a digital signal and have is survive a round trip through the bird bit-for-bit accurate. I suspect in reality it would be much lower data rate, but definitely not nothing!

[–] CookieOfFortune@lemmy.world 12 points 2 days ago (1 children)

By your definition nothing can be digital since the world is analog. Even the bits in your CPU are voltages in transistors. As such, every real life signal can be distorted.

[–] Lifter@discuss.tchncs.de 12 points 2 days ago (3 children)

The point with digital transfers is that you round it back to either 0 or 1, hoping that no bits are distorted enough to have any loss at all.

[–] gozz@lemmy.world 11 points 1 day ago (9 children)

Exactly. Digital logic, when implemented in analogue, generally have to have forbidden zones where a signal in that range is considerer invalid. Regardless of implementation, digital is about the discretized logic of the system. That is explicitly the whole point of digital: Minor analogue distortion does not change the information content of the signal unless it is so bad as to flip a bit.

load more comments (9 replies)
[–] CookieOfFortune@lemmy.world 4 points 1 day ago (2 children)

That’s not really how it works in the real world. Usually you have both bandwidth and noise constraints.

Sure you can send something like a square wave but this isn’t practical for real communication channels. Typically you’re sending many sine waves in parallel with multiple amplitudes and phase offsets to represent a sequence of bits (QAM). Then on top of that you’d encode the original data with both a randomizer (to prevent long runs from looking like nothing) and error correction. So usually the system can handle some level of distortion.

What you’re hoping is that by the time the data reaches the user (really, Layer 3), all the errors have already been handled and you never see any issues.

The bird is just another type of noisy channel with its own distortion characteristics.

[–] socsa@piefed.social 3 points 1 day ago (3 children)

The point is that at the physical layer you still have a well defined log likelihood test to produce digital information. That's why QAM lasted so long even though it is not power efficient - because it has an analytical likelihood function.

This is the boundary between digital and analog communications. Since he did not use a digital modulation scheme, this would be a form of analog comms

load more comments (3 replies)
[–] Lifter@discuss.tchncs.de 3 points 1 day ago

You are not addressing my critique of your statement, just piling on a bunch of useless extra knowledge just so that you can feel superior.

load more comments (1 replies)
[–] abruptly8951@lemmy.world 7 points 2 days ago (3 children)

Hmm, not so sure. He produced a digital signal, who's spectrogram happened to be an image, and then played that digital signal to a bird. Dunno if a analogue spectrogram really even makes sense as a concept. The only analogue part of the chain would be the birds vocalisations, right?

[–] gozz@lemmy.world 5 points 1 day ago* (last edited 1 day ago) (7 children)

The whole sequence is:

  • Digitally synthesized spectrogram (lossless)
  • Played through a DAC and speaker to produce an analogue signal (lossy)
  • Heard by the bird (analogue, lossy)
  • Reproduced by the bird (analogue, lossy)
  • Captured by an ADC as a digital audio signal (lossy)
  • Spectrum-analysed to observe a similar (but corrupted) reproduction of the shape in the original spectrogram

To be transferring digital information, we would instead need to modulate and demodulate the digital signal (exactly like an old modem) so that the analogue corruption does not affect the digital signal:

  • Image file (lossless)
  • Bit stream (lossless)
  • Analogue modulation of bit stream played through DAC (lossy)
  • Heard by the bird (lossy)
  • Reproduced by the bird (lossy)
  • Demodulated to recover exact bit stream despite distortion (lossless again)
  • Decode bit stream to recover original image file, bit-for-bit perfect

I extremely doubt that this bird is capable of 2MB/s. For reference that would make it 280+ times fast than dialup, and barely slower than ADSL. This setup is basically just using the bird instead of a telephone line.

load more comments (7 replies)
load more comments (2 replies)
[–] Korkki@lemmy.ml 125 points 2 days ago (4 children)

Imagine the possibilities for piracy and secure messaging (provided that the birds don't snitch on you).

load more comments (4 replies)
[–] Cocopanda@lemmy.world 17 points 2 days ago (1 children)

Birds are totally organic organisms. Rightttttt. BIRDS ARENT REAL!!!!

load more comments (1 replies)
[–] khannie@lemmy.world 72 points 2 days ago (5 children)

2MB/s / 16Mbps is enough for 4K HEVC video and audio. In theory you could encode a full movie with enough starlings.

[–] brsrklf@jlai.lu 51 points 2 days ago (5 children)

And they say physical media is dead!

load more comments (5 replies)
[–] faythofdragons@slrpnk.net 33 points 2 days ago

A million monkeys on typewriters is old news. Now we're gonna teach a million starlings to play back the entire bee movie.

load more comments (3 replies)
[–] Vespair@lemmy.zip 61 points 2 days ago

We're finally getting tweets back

[–] RunJun@lemmy.dbzer0.com 66 points 2 days ago (2 children)

Reducing Benn Jordan down to just “enthusiast” is wild.

load more comments (2 replies)
[–] biofaust@lemmy.world 7 points 1 day ago

I want this to be the next reveal in a movie or TV series, in the same fashion as the one of the Navajo "backing up" the Smoking Man's magnetic tape in The X-Files.

[–] YesButActuallyMaybe@lemmy.ca 41 points 2 days ago* (last edited 2 days ago) (2 children)

Hear me out! Bird factor authentication!

Please honk your seagull to unlock your ed25519-sk ssh key

load more comments (2 replies)
[–] pineapplelover@lemmy.dbzer0.com 29 points 2 days ago

Well of course NSA's spy device can store information. We've known this for decades

[–] Hatsune_Miku@lemmy.world 9 points 2 days ago (1 children)
load more comments (1 replies)
[–] DeathByBigSad@sh.itjust.works 19 points 2 days ago (1 children)

Me, everytime I see a bird:

load more comments (1 replies)
[–] Warl0k3@lemmy.world 50 points 2 days ago (10 children)

Quick, someone teach it the soundtrack to Doom

load more comments (10 replies)
[–] muzzle@lemmy.zip 41 points 2 days ago

This is a whole new twist over RFC 1149: IP over Avian Carriers

[–] Gerudo@lemmy.zip 26 points 2 days ago (3 children)
load more comments (3 replies)
[–] rizzothesmall@sh.itjust.works 38 points 2 days ago (2 children)

Some people will use anything but cloud storage

load more comments (2 replies)
load more comments
view more: next ›