{"id":3326,"date":"2026-06-17T23:00:19","date_gmt":"2026-06-17T23:00:19","guid":{"rendered":"https:\/\/exponentialdecay.co.uk\/blog\/?p=3326"},"modified":"2026-06-18T07:41:10","modified_gmt":"2026-06-18T07:41:10","slug":"why-we-do-this-work","status":"publish","type":"post","link":"https:\/\/exponentialdecay.co.uk\/blog\/why-we-do-this-work\/","title":{"rendered":"Why we do this work&#8230;"},"content":{"rendered":"<p>There aren&#8217;t many rewards in a discipline that is about taking the long term view but occasionally something comes up that you can take some pride in.<\/p>\n<p>Last month, <a href=\"https:\/\/digipres.club\/deck\/@ed\" target=\"_blank\" rel=\"noopener\">Ed Summers<\/a> put out a call on Mastodon: <a href=\"https:\/\/digipres.club\/deck\/@ed\/116635874334395478\" target=\"_blank\" rel=\"noopener\">digipres.club<\/a> where he was wrestling with a CD-R format that was difficult to recognize. The disks likely held precious data belonging to his late brother.<\/p>\n<p>Much of the search area had already been examined and narrowed down by folks in the community, including <a href=\"https:\/\/digipres.club\/deck\/@misty\" target=\"_blank\" rel=\"noopener\">Misty de Meo<\/a>, <a href=\"https:\/\/digipres.club\/deck\/@roxiruuska\" target=\"_blank\" rel=\"noopener\">Roxi Ruuska<\/a>, <a href=\"https:\/\/digipres.club\/deck\/@The_BFOOL\" target=\"_blank\" rel=\"noopener\">Ethan Gates<\/a>, and <a href=\"https:\/\/digipres.club\/deck\/@bitsgalore\" target=\"_blank\" rel=\"noopener\">Johan van der Knijff<\/a> who all contributed suggestions and analysis..<\/p>\n<p>Ed was able to share a copy of one of his disk images, and I had some time that I could dedicate to taking a look as well.<\/p>\n<p>Long-story short, we were able to identify the disks, and Ed has written up the background here: <a href=\"https:\/\/inkdroid.org\/2026\/06\/12\/tascam\/\" target=\"_blank\" rel=\"noopener\">https:\/\/inkdroid.org\/2026\/06\/12\/tascam\/<\/a><\/p>\n<p>The situation might be familiar to others: <em>a digital file that isn&#8217;t recognized by the major file format identification tools, and yet, because of its context, you know it is something that might be important.<\/em><\/p>\n<p>I have different experiences with these types of files, sometimes they are valuable (and you want to look after them), sometimes they are not (and it can still benefit you to get rid of them). The process of finding this out often follows a similar path.<\/p>\n<p>In this instance the files turned out to be incredibly valuable and I wanted to elaborate on the path of discovery. Even though it really isn&#8217;t very sophisticated, I hope it will be helpful to those with unidentified digital records who might find the task of identifying them quite daunting.<\/p>\n<p><!--more--><\/p>\n<h2>From hex to (h)exposition<\/h2>\n<p><em><strong>NB.<\/strong> Some of the below functions may be available on Windows through the Linux subsystem, but the post largely assumes the use of Linux, my view, the operating system of digital preservation.<\/em><\/p>\n<p>Ed was able to provide a sample file, and given any example file, the first thing we need to do is take a look at it in a hex editor.<\/p>\n<p>I will usually do this one of two ways:<\/p>\n<ul>\n<li>Output the beginning of the file so that I can get a sense whether or not the file has something that looks like a <a href=\"https:\/\/en.wikipedia.org\/wiki\/Magic_number_(programming)\" target=\"_blank\" rel=\"noopener\">magic number<\/a> or other contextualizing information.<\/li>\n<\/ul>\n<pre>xxd -l160 -g1 &lt;\/path\/to\/file&gt;\r\n<\/pre>\n<ul>\n<li>If the file doesn&#8217;t look structured, we need to scan through the file to look for different information: We use less so that it is easier to scroll.<\/li>\n<\/ul>\n<pre>xxd -g1&lt;\/path\/to\/file&gt; | less\r\n<\/pre>\n<p><em><strong>Tip: <\/strong><code>xxd<\/code> also has a <code>-c<\/code> flag which allows you to change the number of columns on a single line. This is helpful for revealing different hidden structure in a file &#8212; maybe seen best with bitmap formats such as <a href=\"http:\/\/justsolve.archiveteam.org\/wiki\/DICOM\" target=\"_blank\" rel=\"noopener\">DICOM<\/a> where medical images can start to appear in the hex editor without even beginning to look at the files through the correct rendering tool.<\/em><\/p>\n<p>The first 160 bytes of Ed&#8217;s file looks as follows.<\/p>\n<pre>00000000: 92 35 96 39 02 78 79 4b 00 00 00 00 00 00 00 01 .5.9.xyK........\r\n00000010: 00 00 00 01 00 00 08 00 00 00 00 60 00 00 1d 48 ...........`...H\r\n00000020: 00 00 00 01 00 00 02 55 00 00 05 14 00 00 00 00 .......U........\r\n00000030: 00 00 05 13 00 00 05 14 00 00 00 01 00 00 00 14 ................\r\n00000040: 00 00 00 01 37 00 00 00 00 57 46 da 57 48 45 52 ....7....WF.WHER\r\n00000050: 45 20 45 56 45 52 20 20 00 00 00 00 00 00 00 14 E EVER ........\r\n00000060: 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 00 ................\r\n00000070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................\r\n00000080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................\r\n00000090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................\r\n<\/pre>\n<p>The first bytes:<\/p>\n<pre>92 35 96 39 02 78 79 4b\r\n<\/pre>\n<p>Definitely look like a magic number but these don&#8217;t really appear anywhere in the popular file format tools, and don&#8217;t appear in internet searches.<\/p>\n<p>You will want to search for both <code>92 35 96 39 02 78 79 4b<\/code> and <code>923596390278794b<\/code> when you look for these patterns in your favorite search engine (inside double-quotes), and if nothing appears immediately, to try and increase the results, reduce the bytes one by one, so, search <code>92 35 96 39 02 78 79 4b<\/code> then <code>92 35 96 39 02 78 79<\/code> and then <code>92 35 96 39 02 78<\/code>. The first results, if they appear, might be your first clues as to what this format might be if someone has already looked at them during the history of the internet.<\/p>\n<p>Ed&#8217;s magic numbers didn&#8217;t reveal much and so I had to manually scroll through the file using <code>xxd<\/code> and <code>less<\/code> to see if I could find other information that might be helpful.<\/p>\n<p>Little things that were interesting were lists of character sets, maybe a character map:<\/p>\n<pre>0000a8e0: 00 00 31 00 00 00 31 80 00 00 32 00 00 00 32 80 ..1...1...2...2.\r\n0000a8f0: 00 00 33 00 00 00 33 80 00 00 34 00 00 00 34 80 ..3...3...4...4.\r\n0000a900: 00 00 35 00 00 00 35 80 00 00 36 00 00 00 36 80 ..5...5...6...6.\r\n0000a910: 00 00 37 00 00 00 37 80 00 00 38 00 00 00 38 80 ..7...7...8...8.\r\n0000a920: 00 00 39 00 00 00 39 80 00 00 3a 00 00 00 3a 80 ..9...9...:...:.\r\n0000a930: 00 00 3b 00 00 00 3b 80 00 00 3c 00 00 00 3c 80 ..;...;...&lt;...&lt;.\r\n0000a940: 00 00 3d 00 00 00 3d 80 00 00 3e 00 00 00 3e 80 ..=...=...&gt;...&gt;.\r\n0000a950: 00 00 3f 00 00 00 3f 80 00 00 40 00 00 00 40 80 ..?...?...@...@.\r\n0000a960: 00 00 41 00 00 00 41 80 00 00 42 00 00 00 42 80 ..A...A...B...B.\r\n0000a970: 00 00 43 00 00 00 43 80 00 00 44 00 00 00 44 80 ..C...C...D...D.\r\n0000a980: 00 00 45 00 00 00 45 80 00 00 46 00 00 00 46 80 ..E...E...F...F.\r\n0000a990: 00 00 47 00 00 00 47 80 00 00 48 00 00 00 48 80 ..G...G...H...H.\r\n<\/pre>\n<p>And a track listing with no other information:<\/p>\n<pre>0000ac80: 6b 30 30 36 00 00 00 00 00 00 00 00 54 72 61 63 k006........Trac\r\n0000ac90: 6b 30 30 37 00 00 00 00 00 00 00 00 54 72 61 63 k007........Trac\r\n0000aca0: 6b 30 30 38 00 00 00 00 00 00 00 00 54 72 61 63 k008........Trac\r\n0000acb0: 6b 30 30 39 00 00 00 00 00 00 00 00 54 72 61 63 k009........Trac\r\n0000acc0: 6b 30 31 30 00 00 00 00 00 00 00 00 54 72 61 63 k010........Trac\r\n0000acd0: 6b 30 31 31 00 00 00 00 00 00 00 00 54 72 61 63 k011........Trac\r\n0000ace0: 6b 30 31 32 00 00 00 00 00 00 00 00 54 72 61 63 k012........Trac\r\n0000acf0: 6b 30 31 33 00 00 00 00 00 00 00 00 54 72 61 63 k013........Trac\r\n0000ad00: 6b 30 31 34 00 00 00 00 00 00 00 00 54 72 61 63 k014........Trac\r\n<\/pre>\n<p>This is consistent with what you might expect on a CD.<\/p>\n<p>Large chunks of the beginning of the file are repeating bytes, e.g. groups of <code>00s<\/code> or <code>FFs<\/code> before the byte stream becomes a little less predictable and starts to exhibit what may be other structure, but unfortunately it wasn&#8217;t enough information to reveal (to me anyway) individual files, e.g. different groupings of magic number or identifying metadata.<\/p>\n<p>123MB is also quite a lot to scroll through and so the next stop in our analysis is to use strings to see if we can find anything more human readable:<\/p>\n<pre>cat backup.bin | strings | less\r\n<\/pre>\n<p>We see the same information we have above:<\/p>\n<pre>WHERE EVER\r\ndSNGMNG\r\nWHERE EVER\r\nTrack001\r\nTrack002\r\nTrack003\r\nTrack004\r\nTrack005\r\nTrack006\r\nTrack007\r\nTrack008\r\nTrack009\r\nTrack010\r\nTrack011\r\nTrack012\r\n<\/pre>\n<p>But more information starts to appear that is helpful:<\/p>\n<pre><strong>hi_sysdown:MEM, %d, GET_BLF<\/strong>\r\nc#`3\r\nc#b3B\r\n<strong>hi_sysdown:MEM, %d, REL_BLF\r\n<\/strong>&lt;@`3@\r\nc#`3@\r\nc#`3@\r\nc#b3B\r\nK#yg='x\r\nW2'x\r\n<strong>c2Wsb32<\/strong>|c\r\nS1Wsb3\r\nVrgcw\r\nW2`s\r\nW2'x\r\nc2Wsa31|c\r\n<\/pre>\n<p>and:<\/p>\n<pre>c!a=d\r\na#r%a !\r\n<strong>Completed takes\r\nNo armed tracks\r\n<\/strong>ma#r\r\nka#r\r\nAa#r\r\n<\/pre>\n<p>and:<\/p>\n<pre>ERRO\r\nnknow\r\nnt PixelMap !!\r\nERROR ** Nothing Background !!\r\n<strong>get M\r\n<\/strong>P for PixelMap !!\r\n<strong>Can't get MPLAPP for Graphi\r\nase a memory area for PixelMap !!\r\n<\/strong>@!)b\r\nc!!1Q\r\nb1!!Q\r\nb1!!Q\r\nb1!!a\r\nc a&lt;S\r\ng1b}\r\nBackgr\r\n@ PixelMap now !!\r\nERROR ** Can't create Backgr\r\nixelMa\r\n<strong>ERROR : Unknow PixelMap !!\r\n: Not\r\n@ graphics area !!\r\n<\/strong>.BbSacc\r\nb11(b\r\n<\/pre>\n<p>Specifically, what I am beginning to see here is the structure of a programming language or compiled computer program. There are function calls, there are error messages &#8212; these would be loaded into a program at runtime for different purposes.<\/p>\n<p>Some of the information in-between might be low-level machine instructions.<\/p>\n<p>Back to the search engine with this information, and I am led to the open source real time operating system RTEMS: <a href=\"https:\/\/www.rtems.org\/\" target=\"_blank\" rel=\"noopener\">https:\/\/www.rtems.org\/<\/a><\/p>\n<p>Perhaps this information is the embedded operating system? Perhaps this information came from something that uses an embedded operating system?<\/p>\n<p>Unfortunately the posit <em>&#8220;an embedded system&#8221;<\/em> provides far too many threads to follow.<\/p>\n<p>So, back to scrolling the strings output. More clues started to pique my interest:<\/p>\n<pre><strong>INTRO\r\nMELODY\r\nVERS\r\nUS\r\nHOOK\r\nSOLO\r\nBRID\r\nAIN\r\nENDING\r\n<\/strong>11\r\n12\r\n@\r\n14\r\n15\r\n<strong>GUIT<\/strong>\r\nL\r\n<strong>BASS\r\nDRUMS\r\nKEYB\r\n<\/strong>S\r\n<strong>WOODWINDS\r\nSTRINGS\r\n<\/strong><\/pre>\n<p>and:<\/p>\n<pre>e#f3\r\n~Po\r\n<strong>[ BOOT ]\r\nDSP1<\/strong>...N\r\nP1...G\r\n)@<strong>DSP2<\/strong>...NG\r\nDSP2...GOOD\r\n[ DMA ]\r\n<strong>SCATTER<\/strong>..GOO\r\nATTER.\r\nDMA.....GOOD\r\nDMA.....NG\r\n[ DSP1(1) ]\r\nTOLS\r\n.....NG\r\nTACO_SH..GOOD\r\nTACO_SH..NG\r\n[ DSP1(2) ]\r\n.....G\r\nCK.....NG\r\n<strong>CLICK..GOOD\r\nCLICK..NG\r\n[ DSP2 ]<\/strong>\r\n...GOO\r\n*@LRCK.....NG\r\nSH 4FS...GOOD\r\nSH 4FS....NG\r\n[ D\r\n<\/pre>\n<p>and:<\/p>\n<pre>CAUTIO\r\n<strong>No BFS FORMAT\r\n<\/strong>[Yes \/ No]\r\nVer:[%2d\r\nCapa\r\nSONG:[%d]\r\n<strong>[ SIZE ]\r\nSECTOR:[%d]\r\nCLUSTER:\r\n<\/strong>[\r\nTER ]\r\n<strong>TOTAL :[%d]\r\nREMAIN :[%d]\r\n<\/strong>e#f3\r\nc a&lt;\r\n7@WfV\r\n<\/pre>\n<p>Now I am thinking, MIDI, maybe &#8220;digital signal processor&#8221; from &#8220;dsp&#8221; and maybe drums, or timing track, from &#8220;CLICK&#8221;.<\/p>\n<p>There is mention of FORMAT, SECTOR, and SIZE too which turns one&#8217;s thinking toward storage &#8212; maybe an old synthesizer? A digital music recording device? I wasn&#8217;t immediately thinking of one that wrote to a CD but perhaps there was an interchange format that was first written to a computer or floppy disk and transferred to a CD?<\/p>\n<h3>Search search search<\/h3>\n<p>As noted, this isn&#8217;t a sophisticated process, and relies heavily on internet search infrastructure, so at this point, we just have to search, search, search.<\/p>\n<p>I&#8217;ve listed most of my search history as I was analyzing the file below:<\/p>\n<pre>3:01 pm  \"WF.WHER 00000050: 4520 4556 4552 2020 0000 0000 0000 0014 E EVER\" \r\n3:01 pm  \"WF.WHERE EVER\" \r\n3:01 pm  \"WF WHERE EVER\" \r\n3:02 pm  \"dSYNCTRK\" \r\n3:03 pm  \"SYNCTRACK\" \r\n3:05 pm  \"9235 9639 0278 794b\" \r\n3:05 pm  \"92 35 96 39 02 78 79 4b \r\n3:05 pm  92 35 96 39 02 78 79 4b \r\n3:05 pm  \"92 35 96 39\" \r\n3:06 pm  \"92 35 96 39\" \r\n3:06 pm  0x92359639 \r\n3:11 pm  \"5748 4552 4520 4556 4552 2020\" \r\n3:11 pm  linux tool extract text from binary \r\n3:12 pm  \"hi_sysdown:MEM, %d, GET_BLF\" \r\n3:12 pm  \"hi_sysdown\" \r\n3:12 pm  GET_BLF \r\n3:13 pm  \"RTEMS ITRON\" \r\n3:15 pm  \"Can't get MPLAPP for Graphi\" \r\n3:15 pm  \"Can't get MPLAPP\" \r\n3:15 pm  \"Can't get MPLAPP\" \r\n3:15 pm  Can't get MPLAPP \r\n3:15 pm  \"MPLAPP\" \r\n3:15 pm  Matplotlib for Python Developers (2009).pdf\r\n3:17 pm  Home | RTEMS.com\r\n3:17 pm  RTEMS \"FseMgr\" \r\n3:18 pm  \"FseMgr\" \r\n3:18 pm  \"FseMgr\" \r\n3:18 pm  RTEMS i_cmd \r\n3:19 pm  RTEMS song list \r\n3:21 pm  yamaha keyboard cd \r\n3:22 pm  yamaha keyboard dsp2 \r\n3:22 pm  \"DSP1\" midi \r\n3:25 pm  midi \"CLONE TRACK\" \r\n3:25 pm  midi \"CLONE TRACK\" \r\n3:33 pm  Retrospect Backup (DANTZ Development Corporation)(Mac 4.2)(3211)(1999) : Free Download, Borrow, and Streaming : Internet Archive\r\n3:35 pm  tascam daw \r\n3:52 pm  DAW \r\n3:52 pm  tascam daw \r\n3:52 pm  read tascam788 disk \r\n3:52 pm  tascam 788 cd format \r\n3:52 pm  tascam 788 cd file format \r\n3:55 pm  tascam 788 CD-R format \r\n4:29 pm  tascam teac \r\n4:29 pm  teac drivers \r\n4:30 pm  TASCAM \"0.00:1999\/06\/04\" \r\n4:30 pm  RTEMS \"0.00:1999\/06\/04\" \r\n4:30 pm  RTEMS operating system version \r\n4:31 pm  TEAC 0.89 \r\n4:32 pm  TEAC DAW \r\n4:32 pm  Why I Love... My DAW\r\n4:32 pm  TEAC788 CD format \r\n4:33 pm  TEAC788 5.9 \r\n4:33 pm  TEAC 788 \"9235 9639 0278 794b\" \r\n4:34 pm  TEAC 788 \"923596390278794b\" \r\n4:34 pm  0xda ascii \r\n4:35 pm  TEAC \"WF WHER EVER\" \r\n4:35 pm  TEAC WF WHER EVER \r\n4:35 pm  TEAC WF WHERE EVER \r\n4:35 pm  TASCAM WF WHERE EVER \r\n4:39 pm  Broadcast WAVE - PRONOM - The National Archives\r\n4:40 pm  Waveform Audio (PCMWAVEFORMAT) - PRONOM - The National Archives\r\n<\/pre>\n<p><em><strong>NB.<\/strong> Given some information I found about RTEMS based systems, and thinking about the era where CD-Rs were most prevalent, I also settled on a time-frame for search, and so all of my searches from this point had the additional keywords <code>before: 2010<\/code> although this isn&#8217;t shown clearly above.<\/em><\/p>\n<p>I kept following the musical theme through my searches and started to hone in on the idea that the data might come from a digital audio workstation (DAW).<\/p>\n<p>I started to find more function names and keywords that started to confirm this hypothesis as well.<\/p>\n<p>See also, the short list of keywords or signals that I jotted down when they caught my eye:<\/p>\n<pre>TEAC\r\nTEAC   \r\n123456789012345\r\n0.89\r\nSCSI Driver initial start\r\nSCSI Driver ini\r\n\r\nOperat\r\n&amp;@System  ver 0.00:1999\/06\/04.... \r\n\tcre_mpl erro\r\n = %x\r\n\r\n2a#r\r\n   mtr_exec:ERROR unknown i_fun(Cmd2MTR\r\nexec:ERROR unknown i_fun(Cmd2SYS) !!\r\n   mtr_\r\nRROR u\r\no@wn i_fun(MIDI) !!\r\n   mtr_exec:ERROR unknown i\r\nc a&lt;\r\n\r\nDIST_FLG_REV\r\nDIST_FLG_DLY\r\nDIST_EXC_REV\r\nDIST_PIT_REV\r\nDIST_PIT_DLY\r\nDIST_CHO_REV\r\n\r\nCOPY\r\nINSERT\r\nMOVE\r\nPASTE\r\nMOVE\r\nINSERT\r\nSILENCE\r\nCLONE TRACK\r\nEAN OU\r\nRECORDING\r\nAUTO PUNCH\r\nSTART UP\r\nSTERIN\r\n\r\nINTRO       \r\nMELODY      \r\nVERS\r\nUS      \r\nHOOK        \r\nSOLO        \r\nBRID\r\nAIN     \r\nENDING      \r\n11         \r\n12 \r\n@        \r\n14         \r\n15         \r\nGUIT\r\nL       \r\nBASS        \r\nDRUMS       \r\nKEYB\r\nS       \r\nWOODWINDS   \r\nSTRINGS     \r\nPERC\r\n\r\n        ~Po\r\n         [ BOOT ]\r\n        DSP1...N\r\nP1...G\r\n\r\n\r\n        SCATTER..GOO\r\nATTER.\r\nDMA.....GOOD\r\n        DMA.....NG\r\n [ DSP1(1) ]\r\n        TOLS\r\n.....NG\r\nTACO_SH..GOOD\r\n        TACO_SH..NG\r\n [ DSP1(2) ]\r\n.....G\r\nCK.....NG\r\n        CLICK..GOOD\r\nCLICK..NG\r\n         [ DSP2 ]\r\n...GOO\r\n*@LRCK.....NG\r\nSH 4FS...GOOD\r\n        SH 4FS....NG\r\n         [ D\r\nP) ]\r\n.....GOOD\r\n        DSP1.....NG\r\nDSP2.....GOOD\r\n        DSP2....\r\n\r\n<\/pre>\n<p>I found a manual for a device that I thought the data most <a href=\"http:\/\/www.futurestyle.org\/archives\/t\/tascam788.htm\" target=\"_blank\" rel=\"noopener\">likely came from<\/a>, the TASCAM 788 DAW from TEAC:<\/p>\n<ul>\n<li><a href=\"https:\/\/www.tascam.eu\/en\/docs\/788_man.pdf\" target=\"_blank\" rel=\"noopener\">https:\/\/www.tascam.eu\/en\/docs\/788_man.pdf<\/a><\/li>\n<\/ul>\n<p>And between the manual and the strings search I had been doing, grepped for function names that I was seeing either in the byte stream or the manual to begin to confirm the correct pairing. I would go back and forth between manual, grep, and search engine.<\/p>\n<pre>INTRO       \r\nMELODY      \r\nVERS\r\nUS      \r\nHOOK        \r\nSOLO  \r\n...\r\n...\r\nKEYB\r\nWOODWINDS   \r\nSTRINGS     \r\nPERC\r\n\r\nPASTE\r\nMOVE\r\nINSERT\r\nSILENCE\r\nCLONE TRACK\r\n\r\nDIST_FLG_REV\r\nDIST_FLG_DLY\r\nDIST_EXC_REV\r\nDIST_PIT_REV\r\nDIST_PIT_DLY\r\nDIST_CHO_REV\r\n\r\nOn Self Test \r\n\t788 Ver[%s] ####\r\n\tGA Reset -&gt; \r\n(PE12) L -&gt; \r\n\tPWAD(PE7) PWDA(PE5) L -&gt; \r\n\tCDCR\r\n@RESET -&gt; \r\n\tDSP1 DSP2 RESET L -&gt; \r\n<\/pre>\n<p>There are clear matches for function names in the DAW&#8217;s manual.<\/p>\n<figure id=\"attachment_3332\" aria-describedby=\"caption-attachment-3332\" style=\"width: 910px\" class=\"wp-caption aligncenter\"><a href=\"https:\/\/exponentialdecay.co.uk\/blog\/wp-content\/uploads\/2026\/06\/tascam-functions.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-3332\" src=\"https:\/\/exponentialdecay.co.uk\/blog\/wp-content\/uploads\/2026\/06\/tascam-functions.png\" alt=\"An excerpt from the TASCAM DAW manual that has very specific descriptions of functions such as DIST_FLG_DLY which we could find mirrored in the strings output of the save file\" width=\"910\" height=\"518\" srcset=\"https:\/\/exponentialdecay.co.uk\/blog\/wp-content\/uploads\/2026\/06\/tascam-functions.png 910w, https:\/\/exponentialdecay.co.uk\/blog\/wp-content\/uploads\/2026\/06\/tascam-functions-500x285.png 500w, https:\/\/exponentialdecay.co.uk\/blog\/wp-content\/uploads\/2026\/06\/tascam-functions-768x437.png 768w\" sizes=\"auto, (max-width: 910px) 100vw, 910px\" \/><\/a><figcaption id=\"caption-attachment-3332\" class=\"wp-caption-text\">Functions described in the TASCAM DAW manual<\/figcaption><\/figure>\n<p>And better than that, we know that the CD we are looking at is a CD-R, could the manual reveal some sort of file format, or audio output?<\/p>\n<p>Absolutely! The TASCAM 788 was capable of writing to CD-R.<\/p>\n<figure id=\"attachment_3333\" aria-describedby=\"caption-attachment-3333\" style=\"width: 869px\" class=\"wp-caption aligncenter\"><a href=\"https:\/\/exponentialdecay.co.uk\/blog\/wp-content\/uploads\/2026\/06\/save-to-cd-r.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-3333\" src=\"https:\/\/exponentialdecay.co.uk\/blog\/wp-content\/uploads\/2026\/06\/save-to-cd-r.png\" alt=\"An excerpt from the TASCAM DAW manual describing backup to CD-R via SCSI connected CD-R or CD-RW drive\" width=\"869\" height=\"414\" srcset=\"https:\/\/exponentialdecay.co.uk\/blog\/wp-content\/uploads\/2026\/06\/save-to-cd-r.png 869w, https:\/\/exponentialdecay.co.uk\/blog\/wp-content\/uploads\/2026\/06\/save-to-cd-r-500x238.png 500w, https:\/\/exponentialdecay.co.uk\/blog\/wp-content\/uploads\/2026\/06\/save-to-cd-r-768x366.png 768w\" sizes=\"auto, (max-width: 869px) 100vw, 869px\" \/><\/a><figcaption id=\"caption-attachment-3333\" class=\"wp-caption-text\">An excerpt from the TASCAM DAW manual describing backup to CD-R via SCSI connected CD-R or CD-RW drive<\/figcaption><\/figure>\n<p>One final look through the data and we can see clearly the manufacturer name in the data as well.<\/p>\n<pre>3380688-000c2340: 0009 7b40 0000 0000 0000 0000 0009 7b80  ..{@..........{.\r\n3380756-000c2350: 0100 0000 0000 0000 0000 0000 b620 d2d0  ............. ..\r\n3380824-000c2360: 39f0 d28e 39f1 d1d0 d0d2 b080 d1d2 3be4  9...9.........;.\r\n3380892-000c2370: d1d4 b620 d180 91e0 e0e0 b702 d1d6 b704  ... ............\r\n3380960-000c2380: 0009 7b80 0000 d0b6 e0e0 b704 0009 7bc0  ..{...........{.\r\n3381028-000c2390: b610 d1d8 b620 d180 3ae2 d1d8 b620 d180  ..... ..:.... ..\r\n3381096-000c23a0: 38e3 d1da b620 d180 3391 e280 91ea 91e3  8.... ..3.......\r\n3381164-000c23b0: 91e8 91f0 91eb 91ed 91e9 8080 0000 0000  ................\r\n3381232-000c23c0: 0009 7bc0 0000 0000 0000 0000 0009 7c00  ..{...........|.\r\n3381300-000c23d0: 0000 0000 0000 0000 0000 0000 0300 0282  ................\r\n3381368:000c23e0: 1f00 0000 5445 4143 2020 2000 3132 3334  ....<strong>TEAC<\/strong>   .1234\r\n3381436-000c23f0: 3536 3738 3930 3132 3334 3500 302e 3839  56789012345.0.89\r\n3381504-000c2400: 0009 7c00 0000 000a 0000 0000 0009 7c40  ..|...........|@\r\n3381572-000c2410: 0000 0009 0a53 4353 4920 4472 6976 6572  .....SCSI Driver\r\n3381640-000c2420: 2069 6e69 7469 616c 2073 7461 7274 0a00   initial start..\r\n3381708-000c2430: 0a53 4353 4920 4472 6976 6572 2069 6e69  .SCSI Driver ini\r\n3381776-000c2440: 0009 7c40 0000 6e64 0a00 0009 0009 7c80  ..|@..nd......|.\r\n3381844-000c2450: 4f22 7ffc 6ef3 61f3 d21d 6423 d81d 480b  O\"..n.a...d#..H.\r\n3381912-000c2460: 0009 61f3 e400 e500 d81b 480b 0009 e100  ..a.......H.....\r\n3381980-000c2470: 2e12 7ffc 61f3 e200 2122 e401 65e3 e602  ....a...!\"..e...\r\n3382048-000c2480: 0009 7c80 0000 0009 7f04 7ffc 0009 7cc0  ..|...........|.\r\n<\/pre>\n<p>I reached out to Ed to see if it is likely his brother had this device or if this data <a href=\"https:\/\/digipres.club\/@beet_keeper\/116646927739788993\" target=\"_blank\" rel=\"noopener\">might come from a DAW<\/a> and he provided a strong <a href=\"https:\/\/digipres.club\/@ed\/116646899644839480\" target=\"_blank\" rel=\"noopener\">definitely maybe<\/a>!<\/p>\n<h2>Converting the data to audio<\/h2>\n<p>My analytical mind needed to recharge at this point but fortunately Ed had enough information to then look at how to convert the data.<\/p>\n<p>Within an hour or so Ed got back to us. He had <a href=\"https:\/\/digipres.club\/@ed\/116647454251885089\" target=\"_blank\" rel=\"noopener\">managed to get the data<\/a> by pointing it at the audio processing application <a href=\"https:\/\/www.audacityteam.org\/\" target=\"_blank\" rel=\"noopener\">Audacity<\/a> along with some information about the data&#8217;s potential offsets.<\/p>\n<p>i&#8217;m pretty sure i wouldn&#8217;t have got to that point in short order but a team effort found a result in much quicker time. And now Audacity will become a new tool in my own digital preservation toolkit!<\/p>\n<h2>Unsophisticated but effective<\/h2>\n<p>I love my long meandering stories and blogs and so writing this one feels weird.<\/p>\n<p><em>So, what exactly did you do Ross?<\/em><\/p>\n<p>I looked at ASCII in a hex editor and I used a search engine to hone in on the information I was seeing.<\/p>\n<p>Yes, I have a professional background in software development (and have looked at a lot of hex in my past life reverse engineering VoIP protocols, and in digital preservation), and I have an amateur background in music theory and music production-lite, but in a different context, the background you bring to the table, and the knowledge you have, be that in construction, architecture, art history, or <a href=\"https:\/\/preservation.tylerthorsted.com\/2023\/12\/01\/embroidery-formats\/\" target=\"_blank\" rel=\"noopener\">anything else<\/a>! Might all reveal clues to your next digital discovery &#8212; and it doesn&#8217;t take a lot to turn that knowledge from digital unknown to digital forensics &#8212; or at least start out on a pathway toward digital forensics. <em>That&#8217;s the takeaway.<\/em><\/p>\n<p>Even if it seems ambitious to begin with:<\/p>\n<ul>\n<li>Use your hex editor,<\/li>\n<li>Ask your colleagues,<\/li>\n<li>Find clues,<\/li>\n<li>Build on the knowledge you can find gradually&#8230;<\/li>\n<\/ul>\n<p>Thinking about embedded systems and embedded devices, rightly or wrongly propelled me to think about digital music, and I used my confirmation bias to exhaust that theory &#8212; in this instance it paid off. If I had to walk it all back, then i think following the embedded systems idea in a different direction might still have been a strong one and I might then have looked more closely at different obsolete file systems to see where that path took me.<\/p>\n<h3>The internet is our most vital resource<\/h3>\n<p><a href=\"https:\/\/doctorow.medium.com\/the-specific-process-by-which-google-enshittified-its-search-1ffd3b02d205\" target=\"_blank\" rel=\"noopener\">Enshittification<\/a> is a well-documented phenomenon. Combined with AI slop searches and the guardrails being setup around important websites to prevent AI crawling, the future of the search engine is uncertain.<\/p>\n<p>I think it almost impossible to think of what I would have done to help Ed in this instance without a search engine.<\/p>\n<p>It&#8217;s important for you to start saving all of your important manuals and documents to the Internet Archive (IA). I hope one day a global search engine will exist to provide OG &#8220;Google-like&#8221; search on top of the IA and other memento instances.<\/p>\n<p>Please support the IA, and if you find a search engine with good principles and ethics, please support those too. They are vital for the survival of digital heritage.<\/p>\n<h3>And what would we do without search?<\/h3>\n<p>Honestly I have no idea. In the past, people released books <a href=\"https:\/\/www.fileformat.info\/resource\/book\/ddj-cdrom\/index.htm\" target=\"_blank\" rel=\"noopener\">about file formats<\/a> and so we might start there.<\/p>\n<p>Websites that still act like directories (like the <a href=\"http:\/\/fileformats.archiveteam.org\/wiki\/Main_Page\" target=\"_blank\" rel=\"noopener\">Just Solve It Wiki<\/a>) are also helpful to narrow our focus.<\/p>\n<p>But internet search is still massively important, so I think we need to update Maslow&#8217;s hierarchy of needs AGAIN:<\/p>\n<pre>                        \/\\\r\n                       \/  \\\r\n                      \/    \\\r\n                     \/ SELF-\\\r\n                    \/ ACTUAL-\\\r\n                   \/  IZATION \\\r\n                  \/------------\\\r\n                 \/   ESTEEM &amp;   \\\r\n                \/  RECOGNITION   \\\r\n               \/------------------\\\r\n              \/   LOVE &amp; SOCIAL    \\\r\n             \/       BELONGING      \\\r\n            \/------------------------\\\r\n           \/     SAFETY, HEALTH &amp;     \\\r\n          \/       PHYSICAL SHELTER     \\\r\n         \/------------------------------\\\r\n        \/         Wi-FI SIGNAL           \\\r\n       \/      (NETWORK CONNECTION)        \\\r\n      \/------------------------------------\\\r\n     \/               BATTERY                \\\r\n    \/             (DEVICE POWER)             \\\r\n   \/------------------------------------------\\\r\n  \/          <strong>INTERNET SEARCH ENGINE<\/strong>            \\\r\n \/              <strong>(ACCESSIBLE INFO)<\/strong>               \\\r\n\/________________________________________________\\\r\n<\/pre>\n<h2>What next for Ed&#8217;s format<\/h2>\n<p>It&#8217;s important to share the knowledge gained during this process for others who might have similarly DAW ripped CD-Rs.<\/p>\n<p>I have it on my list to add Ed&#8217;s blog and this one to the Archive Team&#8217;s <a href=\"http:\/\/fileformats.archiveteam.org\/wiki\/Main_Page\" target=\"_blank\" rel=\"noopener\">Just Solve It Wiki<\/a>, and maybe see if I can find more sample files. At a minimum we can share the magic number on there, and maybe find enough information to create a Wikidata entry, even if we don&#8217;t have enough information for a PRONOM one. But let&#8217;s see.<\/p>\n<p>It&#8217;d be great to find a name for file the format, but in lieu of anything else, <em>TASCAM 788 CD-R Format<\/em> might work well enough &#8212; we can workshop it \ud83d\ude09<\/p>\n<p>Ed documents <a href=\"https:\/\/github.com\/edsu\/jas-discs\/blob\/main\/extract_tracks.py\" target=\"_blank\" rel=\"noopener\">a script<\/a> for extracting data from these disks, We can share information about that on the Just Solve It Wiki as well. One thing I might add to those scripts is some information about extracting the original\/draft song title:<\/p>\n<pre>00000000: 92 35 96 39 02 78 79 4b 00 00 00 00 00 00 00 01 .5.9.xyK........ 00000010: 00 00 00 01 00 00 08 00 00 00 00 60 00 00 1d 48 ...........`...H 00000020: 00 00 00 01 00 00 02 55 00 00 05 14 00 00 00 00 .......U........ 00000030: 00 00 05 13 00 00 05 14 00 00 00 01 00 00 00 14 ................ 00000040: 00 00 00 01 37 00 00 00 00 57 46 da 57 48 45 52 ....7....WF.<strong>WHER<\/strong> 00000050: 45 20 45 56 45 52 20 20 00 00 00 00 00 00 00 14 <strong>E EVER<\/strong> ........\r\n<\/pre>\n<p>Right there at byte <code>0x77<\/code> &#8220;WHEREVER&#8221; which based on the lyrics on Ed&#8217;s brother&#8217;s music, I believe is the title this song was drafted with.<\/p>\n<h2>An emotional connection to archives<\/h2>\n<p>it was touching to hear Ed&#8217;s brother John&#8217;s voice and music. And touching to think that this job can sometimes make a difference.<\/p>\n<p>I&#8217;ve discussed <a href=\"https:\/\/exponentialdecay.co.uk\/blog\/digital-preservation-at-the-coalface-or-how-i-learned-that-glamping-doesnt-always-involve-the-vast-wilderness\/\" target=\"_blank\" rel=\"noopener\">emotion in the archive before<\/a>. These moments don&#8217;t happen too often but when they do, hold onto them, they help you get through some of the tedium, the low-pay, the lack of jobs, the lack of funding, especially for research, and some of the other sub-optimal aspects of jobs day-to-day. Yes, I think we can solve those issues one day too, but until then, these are the moments that can help.<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_3326\" class=\"pvc_stats total_only  \" data-element-id=\"3326\" style=\"\"><i class=\"pvc-stats-icon small\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/exponentialdecay.co.uk\/blog\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>There aren&#8217;t many rewards in a discipline that is about taking the long term view but occasionally something comes up that you can take some pride in.<\/p>\n<p>Last month, <a href=\"https:\/\/digipres.club\/deck\/@ed\" target=\"_blank\" rel=\"noopener\">Ed Summers<\/a> put out a call on Mastodon: <a href=\"https:\/\/digipres.club\/deck\/@ed\/116635874334395478\" target=\"_blank\" rel=\"noopener\">digipres.club<\/a> where he was wrestling with a CD-R format that was difficult to recognize. The disks likely held precious data belonging to his late brother.<\/p>\n<p>Much of the search area had already been examined and narrowed down by folks in the community, including <a href=\"https:\/\/digipres.club\/deck\/@misty\" target=\"_blank\" rel=\"noopener\">Misty de Meo<\/a>, <a href=\"https:\/\/digipres.club\/deck\/@roxiruuska\" target=\"_blank\" rel=\"noopener\">Roxi Ruuska<\/a>, <a href=\"https:\/\/digipres.club\/deck\/@The_BFOOL\" target=\"_blank\" rel=\"noopener\">Ethan Gates<\/a>, and <a href=\"https:\/\/digipres.club\/deck\/@bitsgalore\" target=\"_blank\" rel=\"noopener\">Johan van der Knijff<\/a> who all contributed suggestions and analysis..<\/p>\n<p>Ed was able to share a copy of one of his disk images, and I had some time that I could dedicate to taking a look as well.<\/p>\n<p>Long-story short, we were able to identify the disks, and Ed has written up the background here: <a href=\"https:\/\/inkdroid.org\/2026\/06\/12\/tascam\/\" target=\"_blank\" rel=\"noopener\">https:\/\/inkdroid.org\/2026\/06\/12\/tascam\/<\/a><\/p>\n<p>The situation might be familiar to others: <em>a digital file that isn&#8217;t recognized by the major file format identification tools, and yet, because of its context, you know it is something that might be important.<\/em><\/p>\n<p>I have different experiences with these types of files, sometimes they are valuable (and you want to look after them), sometimes they are not (and it can still benefit you to get rid of them). The process of finding this out often follows a similar path.<\/p>\n<p>In this instance the files turned out to be incredibly valuable and I wanted to elaborate on the path of discovery. Even though it really isn&#8217;t very sophisticated, I hope it will be helpful to those with unidentified digital records who might find the task of identifying them quite daunting.<\/p>\n<div class=\"link-more\"><a href=\"https:\/\/exponentialdecay.co.uk\/blog\/why-we-do-this-work\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &ldquo;Why we do this work&#8230;&rdquo;<\/span>&hellip;<\/a><\/div>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_3326\" class=\"pvc_stats total_only  \" data-element-id=\"3326\" style=\"\"><i class=\"pvc-stats-icon small\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/exponentialdecay.co.uk\/blog\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":1,"featured_media":3341,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"activitypub_content_warning":"","activitypub_content_visibility":"","activitypub_max_image_attachments":3,"activitypub_interaction_policy_quote":"anyone","activitypub_status":"federated","footnotes":""},"categories":[86,3],"tags":[500,147,396,503,71,504,506,502,505,501,358,356],"class_list":["post-3326","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-archives","category-digital-preservation","tag-daw","tag-digipres","tag-digital-forensics","tag-digital-heritage","tag-digital-preservation","tag-internet-archive","tag-music-production","tag-personal-digital-archiving","tag-tascam","tag-teac","tag-web-archives","tag-web-archiving","entry"],"a3_pvc":{"activated":true,"total_views":148,"today_views":1},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Why we do this work... ross spencer :: exponentialdecay.digipres :: blog<\/title>\n<meta name=\"description\" content=\"Recovering a colleague&#039;s late brother&#039;s audio recordings from an obsolete CD-R format with the help of some basic digital forensics\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/exponentialdecay.co.uk\/blog\/why-we-do-this-work\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Why we do this work... ross spencer :: exponentialdecay.digipres :: blog\" \/>\n<meta property=\"og:description\" content=\"Recovering a colleague&#039;s late brother&#039;s audio recordings from an obsolete CD-R format with the help of some basic digital forensics\" \/>\n<meta property=\"og:url\" content=\"https:\/\/exponentialdecay.co.uk\/blog\/why-we-do-this-work\/\" \/>\n<meta property=\"og:site_name\" content=\"ross spencer :: exponentialdecay.digipres :: blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-17T23:00:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-18T07:41:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/exponentialdecay.co.uk\/blog\/wp-content\/uploads\/2026\/06\/Kandinsky_-_Three_Sounds_1926.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"980\" \/>\n\t<meta property=\"og:image:height\" content=\"982\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Ross Spencer\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@beet_keeper\" \/>\n<meta name=\"twitter:site\" content=\"@beet_keeper\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ross Spencer\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"11 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/why-we-do-this-work\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/why-we-do-this-work\\\/\"},\"author\":{\"name\":\"Ross Spencer\",\"@id\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/4cae0a954400f42b9c1b70c699837716\"},\"headline\":\"Why we do this work&#8230;\",\"datePublished\":\"2026-06-17T23:00:19+00:00\",\"dateModified\":\"2026-06-18T07:41:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/why-we-do-this-work\\\/\"},\"wordCount\":2212,\"commentCount\":4,\"publisher\":{\"@id\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/4cae0a954400f42b9c1b70c699837716\"},\"image\":{\"@id\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/why-we-do-this-work\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Kandinsky_-_Three_Sounds_1926.jpg\",\"keywords\":[\"DAW\",\"digipres\",\"Digital Forensics\",\"digital heritage\",\"Digital Preservation\",\"internet archive\",\"Music Production\",\"personal digital archiving\",\"TASCAM\",\"TEAC\",\"Web Archives\",\"web-archiving\"],\"articleSection\":[\"Archives\",\"Digital Preservation\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/why-we-do-this-work\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/why-we-do-this-work\\\/\",\"url\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/why-we-do-this-work\\\/\",\"name\":\"Why we do this work... ross spencer :: exponentialdecay.digipres :: blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/why-we-do-this-work\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/why-we-do-this-work\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Kandinsky_-_Three_Sounds_1926.jpg\",\"datePublished\":\"2026-06-17T23:00:19+00:00\",\"dateModified\":\"2026-06-18T07:41:10+00:00\",\"description\":\"Recovering a colleague's late brother's audio recordings from an obsolete CD-R format with the help of some basic digital forensics\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/why-we-do-this-work\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/why-we-do-this-work\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/why-we-do-this-work\\\/#primaryimage\",\"url\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Kandinsky_-_Three_Sounds_1926.jpg\",\"contentUrl\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Kandinsky_-_Three_Sounds_1926.jpg\",\"width\":980,\"height\":982,\"caption\":\"Kandinsky's Three Sounds (1926)\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/why-we-do-this-work\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Why we do this work&#8230;\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/\",\"name\":\"ross spencer :: exponentialdecay.digipres :: blog\",\"description\":\"Digital preservation analyst, researcher, and software developer\",\"publisher\":{\"@id\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/4cae0a954400f42b9c1b70c699837716\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/4cae0a954400f42b9c1b70c699837716\",\"name\":\"Ross Spencer\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/avatar-scaled.png\",\"url\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/avatar-scaled.png\",\"contentUrl\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/avatar-scaled.png\",\"width\":2560,\"height\":2560,\"caption\":\"Ross Spencer\"},\"logo\":{\"@id\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/avatar-scaled.png\"},\"description\":\"Digital preservation domain expert and full-stack software developer.\",\"sameAs\":[\"http:\\\/\\\/www.exponentialdecay.co.uk\\\/blog\",\"https:\\\/\\\/www.instagram.com\\\/b33tk33p3r\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/ross-spencer-b6b9b758\\\/\",\"https:\\\/\\\/x.com\\\/beet_keeper\"],\"url\":\"https:\\\/\\\/exponentialdecay.co.uk\\\/blog\\\/author\\\/exponentialdecay\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Why we do this work... ross spencer :: exponentialdecay.digipres :: blog","description":"Recovering a colleague's late brother's audio recordings from an obsolete CD-R format with the help of some basic digital forensics","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/exponentialdecay.co.uk\/blog\/why-we-do-this-work\/","og_locale":"en_US","og_type":"article","og_title":"Why we do this work... ross spencer :: exponentialdecay.digipres :: blog","og_description":"Recovering a colleague's late brother's audio recordings from an obsolete CD-R format with the help of some basic digital forensics","og_url":"https:\/\/exponentialdecay.co.uk\/blog\/why-we-do-this-work\/","og_site_name":"ross spencer :: exponentialdecay.digipres :: blog","article_published_time":"2026-06-17T23:00:19+00:00","article_modified_time":"2026-06-18T07:41:10+00:00","og_image":[{"width":980,"height":982,"url":"https:\/\/exponentialdecay.co.uk\/blog\/wp-content\/uploads\/2026\/06\/Kandinsky_-_Three_Sounds_1926.jpg","type":"image\/jpeg"}],"author":"Ross Spencer","twitter_card":"summary_large_image","twitter_creator":"@beet_keeper","twitter_site":"@beet_keeper","twitter_misc":{"Written by":"Ross Spencer","Est. reading time":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/exponentialdecay.co.uk\/blog\/why-we-do-this-work\/#article","isPartOf":{"@id":"https:\/\/exponentialdecay.co.uk\/blog\/why-we-do-this-work\/"},"author":{"name":"Ross Spencer","@id":"https:\/\/exponentialdecay.co.uk\/blog\/#\/schema\/person\/4cae0a954400f42b9c1b70c699837716"},"headline":"Why we do this work&#8230;","datePublished":"2026-06-17T23:00:19+00:00","dateModified":"2026-06-18T07:41:10+00:00","mainEntityOfPage":{"@id":"https:\/\/exponentialdecay.co.uk\/blog\/why-we-do-this-work\/"},"wordCount":2212,"commentCount":4,"publisher":{"@id":"https:\/\/exponentialdecay.co.uk\/blog\/#\/schema\/person\/4cae0a954400f42b9c1b70c699837716"},"image":{"@id":"https:\/\/exponentialdecay.co.uk\/blog\/why-we-do-this-work\/#primaryimage"},"thumbnailUrl":"https:\/\/exponentialdecay.co.uk\/blog\/wp-content\/uploads\/2026\/06\/Kandinsky_-_Three_Sounds_1926.jpg","keywords":["DAW","digipres","Digital Forensics","digital heritage","Digital Preservation","internet archive","Music Production","personal digital archiving","TASCAM","TEAC","Web Archives","web-archiving"],"articleSection":["Archives","Digital Preservation"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/exponentialdecay.co.uk\/blog\/why-we-do-this-work\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/exponentialdecay.co.uk\/blog\/why-we-do-this-work\/","url":"https:\/\/exponentialdecay.co.uk\/blog\/why-we-do-this-work\/","name":"Why we do this work... ross spencer :: exponentialdecay.digipres :: blog","isPartOf":{"@id":"https:\/\/exponentialdecay.co.uk\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/exponentialdecay.co.uk\/blog\/why-we-do-this-work\/#primaryimage"},"image":{"@id":"https:\/\/exponentialdecay.co.uk\/blog\/why-we-do-this-work\/#primaryimage"},"thumbnailUrl":"https:\/\/exponentialdecay.co.uk\/blog\/wp-content\/uploads\/2026\/06\/Kandinsky_-_Three_Sounds_1926.jpg","datePublished":"2026-06-17T23:00:19+00:00","dateModified":"2026-06-18T07:41:10+00:00","description":"Recovering a colleague's late brother's audio recordings from an obsolete CD-R format with the help of some basic digital forensics","breadcrumb":{"@id":"https:\/\/exponentialdecay.co.uk\/blog\/why-we-do-this-work\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/exponentialdecay.co.uk\/blog\/why-we-do-this-work\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/exponentialdecay.co.uk\/blog\/why-we-do-this-work\/#primaryimage","url":"https:\/\/exponentialdecay.co.uk\/blog\/wp-content\/uploads\/2026\/06\/Kandinsky_-_Three_Sounds_1926.jpg","contentUrl":"https:\/\/exponentialdecay.co.uk\/blog\/wp-content\/uploads\/2026\/06\/Kandinsky_-_Three_Sounds_1926.jpg","width":980,"height":982,"caption":"Kandinsky's Three Sounds (1926)"},{"@type":"BreadcrumbList","@id":"https:\/\/exponentialdecay.co.uk\/blog\/why-we-do-this-work\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/exponentialdecay.co.uk\/blog\/"},{"@type":"ListItem","position":2,"name":"Why we do this work&#8230;"}]},{"@type":"WebSite","@id":"https:\/\/exponentialdecay.co.uk\/blog\/#website","url":"https:\/\/exponentialdecay.co.uk\/blog\/","name":"ross spencer :: exponentialdecay.digipres :: blog","description":"Digital preservation analyst, researcher, and software developer","publisher":{"@id":"https:\/\/exponentialdecay.co.uk\/blog\/#\/schema\/person\/4cae0a954400f42b9c1b70c699837716"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/exponentialdecay.co.uk\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/exponentialdecay.co.uk\/blog\/#\/schema\/person\/4cae0a954400f42b9c1b70c699837716","name":"Ross Spencer","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/exponentialdecay.co.uk\/blog\/wp-content\/uploads\/2025\/06\/avatar-scaled.png","url":"https:\/\/exponentialdecay.co.uk\/blog\/wp-content\/uploads\/2025\/06\/avatar-scaled.png","contentUrl":"https:\/\/exponentialdecay.co.uk\/blog\/wp-content\/uploads\/2025\/06\/avatar-scaled.png","width":2560,"height":2560,"caption":"Ross Spencer"},"logo":{"@id":"https:\/\/exponentialdecay.co.uk\/blog\/wp-content\/uploads\/2025\/06\/avatar-scaled.png"},"description":"Digital preservation domain expert and full-stack software developer.","sameAs":["http:\/\/www.exponentialdecay.co.uk\/blog","https:\/\/www.instagram.com\/b33tk33p3r\/","https:\/\/www.linkedin.com\/in\/ross-spencer-b6b9b758\/","https:\/\/x.com\/beet_keeper"],"url":"https:\/\/exponentialdecay.co.uk\/blog\/author\/exponentialdecay\/"}]}},"views":370,"_links":{"self":[{"href":"https:\/\/exponentialdecay.co.uk\/blog\/wp-json\/wp\/v2\/posts\/3326","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/exponentialdecay.co.uk\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/exponentialdecay.co.uk\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/exponentialdecay.co.uk\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/exponentialdecay.co.uk\/blog\/wp-json\/wp\/v2\/comments?post=3326"}],"version-history":[{"count":11,"href":"https:\/\/exponentialdecay.co.uk\/blog\/wp-json\/wp\/v2\/posts\/3326\/revisions"}],"predecessor-version":[{"id":3353,"href":"https:\/\/exponentialdecay.co.uk\/blog\/wp-json\/wp\/v2\/posts\/3326\/revisions\/3353"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/exponentialdecay.co.uk\/blog\/wp-json\/wp\/v2\/media\/3341"}],"wp:attachment":[{"href":"https:\/\/exponentialdecay.co.uk\/blog\/wp-json\/wp\/v2\/media?parent=3326"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/exponentialdecay.co.uk\/blog\/wp-json\/wp\/v2\/categories?post=3326"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/exponentialdecay.co.uk\/blog\/wp-json\/wp\/v2\/tags?post=3326"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}