-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathNRG_(file_format).html
1108 lines (1093 loc) · 61.9 KB
/
NRG_(file_format).html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" dir="ltr" class="client-nojs">
<head>
<meta charset="UTF-8" />
<title>NRG (file format) - Wikipedia, the free encyclopedia</title>
<meta name="generator" content="MediaWiki 1.24wmf7" />
<link rel="alternate" href="android-app://org.wikipedia/http/en.m.wikipedia.org/wiki/NRG_(file_format)" />
<link rel="alternate" type="application/x-wiki" title="Edit this page" href="/w/index.php?title=NRG_(file_format)&action=edit" />
<link rel="edit" title="Edit this page" href="/w/index.php?title=NRG_(file_format)&action=edit" />
<link rel="apple-touch-icon" href="//bits.wikimedia.org/apple-touch/wikipedia.png" />
<link rel="shortcut icon" href="//bits.wikimedia.org/favicon/wikipedia.ico" />
<link rel="search" type="application/opensearchdescription+xml" href="/w/opensearch_desc.php" title="Wikipedia (en)" />
<link rel="EditURI" type="application/rsd+xml" href="//en.wikipedia.org/w/api.php?action=rsd" />
<link rel="copyright" href="//creativecommons.org/licenses/by-sa/3.0/" />
<link rel="alternate" type="application/atom+xml" title="Wikipedia Atom feed" href="/w/index.php?title=Special:RecentChanges&feed=atom" />
<link rel="canonical" href="http://en.wikipedia.org/wiki/NRG_(file_format)" />
<link rel="stylesheet" href="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&lang=en&modules=ext.gadget.DRN-wizard%2CReferenceTooltips%2Ccharinsert%2CrefToolbar%2Cteahouse%7Cext.uls.nojs%7Cext.visualEditor.viewPageTarget.noscript%7Cext.wikihiero%7Cmediawiki.legacy.commonPrint%2Cshared%7Cmediawiki.skinning.interface%7Cmediawiki.ui.button%7Cskins.vector.styles%7Cwikibase.client.init&only=styles&skin=vector&*" />
<meta name="ResourceLoaderDynamicStyles" content="" />
<link rel="stylesheet" href="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&lang=en&modules=site&only=styles&skin=vector&*" />
<style>a:lang(ar),a:lang(kk-arab),a:lang(mzn),a:lang(ps),a:lang(ur){text-decoration:none}
/* cache key: enwiki:resourceloader:filter:minify-css:7:3904d24a08aa08f6a68dc338f9be277e */</style>
<script src="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&lang=en&modules=startup&only=scripts&skin=vector&*"></script>
<script>if(window.mw){
mw.config.set({"wgCanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":0,"wgPageName":"NRG_(file_format)","wgTitle":"NRG (file format)","wgCurRevisionId":605505658,"wgRevisionId":605505658,"wgArticleId":8453693,"wgIsArticle":true,"wgIsRedirect":false,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["Articles lacking sources from November 2011","All articles lacking sources","Articles that may contain original research from May 2010","All articles that may contain original research","Archive formats","Disk images"],"wgBreakFrames":false,"wgPageContentLanguage":"en","wgPageContentModel":"wikitext","wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgMonthNamesShort":["","Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"wgRelevantPageName":"NRG_(file_format)","wgIsProbablyEditable":true,"wgRestrictionEdit":[],"wgRestrictionMove":[],"wgWikiEditorEnabledModules":{"toolbar":true,"dialogs":true,"hidesig":true,"preview":false,"previewDialog":false,"publish":false},"wgBetaFeaturesFeatures":[],"wgMediaViewerOnClick":true,"wgVisualEditor":{"isPageWatched":false,"magnifyClipIconURL":"//bits.wikimedia.org/static-1.24wmf7/skins/common/images/magnify-clip.png","pageLanguageCode":"en","pageLanguageDir":"ltr","svgMaxSize":2048},"wikilove-recipient":"","wikilove-anon":0,"wgGuidedTourHelpGuiderUrl":"Help:Guided tours/guider","wgFlowTermsOfUseEdit":"By saving changes, you agree to our \u003Ca class=\"external text\" href=\"//wikimediafoundation.org/wiki/Terms_of_use\"\u003ETerms of Use\u003C/a\u003E and agree to irrevocably release your text under the \u003Ca rel=\"nofollow\" class=\"external text\" href=\"//creativecommons.org/licenses/by-sa/3.0\"\u003ECC BY-SA 3.0 License\u003C/a\u003E and \u003Ca class=\"external text\" href=\"//en.wikipedia.org/wiki/Wikipedia:Text_of_the_GNU_Free_Documentation_License\"\u003EGFDL\u003C/a\u003E","wgFlowTermsOfUseSummarize":"By clicking \"Summarize\", you agree to the terms of use for this wiki.","wgFlowTermsOfUseCloseTopic":"By clicking \"Close topic\", you agree to the terms of use for this wiki.","wgFlowTermsOfUseReopenTopic":"By clicking \"Reopen topic\", you agree to the terms of use for this wiki.","wgULSAcceptLanguageList":["en-us","en"],"wgULSCurrentAutonym":"English","wgFlaggedRevsParams":{"tags":{"status":{"levels":1,"quality":2,"pristine":3}}},"wgStableRevisionId":null,"wgCategoryTreePageCategoryOptions":"{\"mode\":0,\"hideprefix\":20,\"showcount\":true,\"namespaces\":false}","wgNoticeProject":"wikipedia","wgWikibaseItemId":"Q1213743"});
}</script><script>if(window.mw){
mw.loader.implement("user.options",function($,jQuery){mw.user.options.set({"ccmeonemails":0,"cols":80,"date":"default","diffonly":0,"disablemail":0,"editfont":"default","editondblclick":0,"editsectiononrightclick":0,"enotifminoredits":0,"enotifrevealaddr":0,"enotifusertalkpages":1,"enotifwatchlistpages":0,"extendwatchlist":0,"fancysig":0,"forceeditsummary":0,"gender":"unknown","hideminor":0,"hidepatrolled":0,"imagesize":2,"math":0,"minordefault":0,"newpageshidepatrolled":0,"nickname":"","norollbackdiff":0,"numberheadings":0,"previewonfirst":0,"previewontop":1,"rcdays":7,"rclimit":50,"rows":25,"showhiddencats":false,"shownumberswatching":1,"showtoolbar":1,"skin":"vector","stubthreshold":0,"thumbsize":4,"underline":2,"uselivepreview":0,"usenewrc":0,"watchcreations":1,"watchdefault":0,"watchdeletion":0,"watchlistdays":3,"watchlisthideanons":0,"watchlisthidebots":0,"watchlisthideliu":0,"watchlisthideminor":0,"watchlisthideown":0,"watchlisthidepatrolled":0,"watchmoves":0,"wllimit":250,
"useeditwarning":1,"prefershttps":1,"flaggedrevssimpleui":1,"flaggedrevsstable":0,"flaggedrevseditdiffs":true,"flaggedrevsviewdiffs":false,"usebetatoolbar":1,"usebetatoolbar-cgd":1,"multimediaviewer-enable":true,"visualeditor-enable":0,"visualeditor-betatempdisable":0,"visualeditor-enable-experimental":0,"visualeditor-enable-language":0,"visualeditor-hidebetawelcome":0,"wikilove-enabled":1,"mathJax":false,"echo-subscriptions-web-page-review":true,"echo-subscriptions-email-page-review":false,"ep_showtoplink":false,"ep_bulkdelorgs":false,"ep_bulkdelcourses":true,"ep_showdyk":true,"echo-subscriptions-web-education-program":true,"echo-subscriptions-email-education-program":false,"echo-notify-show-link":true,"echo-show-alert":true,"echo-email-frequency":0,"echo-email-format":"html","echo-subscriptions-email-system":true,"echo-subscriptions-web-system":true,"echo-subscriptions-email-other":false,"echo-subscriptions-web-other":true,"echo-subscriptions-email-edit-user-talk":false,
"echo-subscriptions-web-edit-user-talk":true,"echo-subscriptions-email-reverted":false,"echo-subscriptions-web-reverted":true,"echo-subscriptions-email-article-linked":false,"echo-subscriptions-web-article-linked":false,"echo-subscriptions-email-mention":false,"echo-subscriptions-web-mention":true,"echo-subscriptions-web-edit-thank":true,"echo-subscriptions-email-edit-thank":false,"echo-subscriptions-web-flow-discussion":true,"echo-subscriptions-email-flow-discussion":false,"gettingstarted-task-toolbar-show-intro":true,"uls-preferences":"","language":"en","variant-gan":"gan","variant-iu":"iu","variant-kk":"kk","variant-ku":"ku","variant-shi":"shi","variant-sr":"sr","variant-tg":"tg","variant-uz":"uz","variant-zh":"zh","searchNs0":true,"searchNs1":false,"searchNs2":false,"searchNs3":false,"searchNs4":false,"searchNs5":false,"searchNs6":false,"searchNs7":false,"searchNs8":false,"searchNs9":false,"searchNs10":false,"searchNs11":false,"searchNs12":false,"searchNs13":false,"searchNs14":
false,"searchNs15":false,"searchNs100":false,"searchNs101":false,"searchNs108":false,"searchNs109":false,"searchNs118":false,"searchNs119":false,"searchNs446":false,"searchNs447":false,"searchNs710":false,"searchNs711":false,"searchNs828":false,"searchNs829":false,"gadget-teahouse":1,"gadget-ReferenceTooltips":1,"gadget-DRN-wizard":1,"gadget-charinsert":1,"gadget-refToolbar":1,"gadget-mySandbox":1,"variant":"en"});},{},{});mw.loader.implement("user.tokens",function($,jQuery){mw.user.tokens.set({"editToken":"+\\","patrolToken":false,"watchToken":false});},{},{});
/* cache key: enwiki:resourceloader:filter:minify-js:7:369915ab579125627842c0da1e18ba20 */
}</script>
<script>if(window.mw){
mw.loader.load(["mediawiki.page.startup","mediawiki.legacy.wikibits","mediawiki.legacy.ajax","ext.centralauth.centralautologin","mmv.head","ext.visualEditor.viewPageTarget.init","ext.uls.init","ext.uls.interface","ext.centralNotice.bannerController","skins.vector.js"]);
}</script>
<link rel="dns-prefetch" href="//meta.wikimedia.org" /><!--[if lt IE 7]><style type="text/css">body{behavior:url("/w/static-1.24wmf7/skins/vector/csshover.min.htc")}</style><![endif]--></head>
<body class="mediawiki ltr sitedir-ltr ns-0 ns-subject page-NRG_file_format skin-vector action-view vector-animateLayout">
<div id="mw-page-base" class="noprint"></div>
<div id="mw-head-base" class="noprint"></div>
<div id="content" class="mw-body" role="main">
<a id="top"></a>
<div id="mw-js-message" style="display:none;"></div>
<div id="siteNotice"><!-- CentralNotice --></div>
<h1 id="firstHeading" class="firstHeading" lang="en"><span dir="auto">NRG (file format)</span></h1>
<div id="bodyContent" class="mw-body-content">
<div id="siteSub">From Wikipedia, the free encyclopedia</div>
<div id="contentSub"></div>
<div id="jump-to-nav" class="mw-jump">
Jump to: <a href="#mw-navigation">navigation</a>, <a href="#p-search">search</a>
</div>
<div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr"><table class="metadata plainlinks ambox ambox-content ambox-Unreferenced" role="presentation">
<tr>
<td class="mbox-image">
<div style="width:52px;"><a href="/wiki/File:Question_book-new.svg" class="image"><img alt="Question book-new.svg" src="//upload.wikimedia.org/wikipedia/en/thumb/9/99/Question_book-new.svg/50px-Question_book-new.svg.png" width="50" height="39" srcset="//upload.wikimedia.org/wikipedia/en/thumb/9/99/Question_book-new.svg/75px-Question_book-new.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/9/99/Question_book-new.svg/100px-Question_book-new.svg.png 2x" data-file-width="262" data-file-height="204" /></a></div>
</td>
<td class="mbox-text"><span class="mbox-text-span">This article <b>does not <a href="/wiki/Wikipedia:Citing_sources" title="Wikipedia:Citing sources">cite</a> any <a href="/wiki/Wikipedia:Verifiability" title="Wikipedia:Verifiability">references or sources</a></b>. <span class="hide-when-compact">Please help <a class="external text" href="//en.wikipedia.org/w/index.php?title=NRG_(file_format)&action=edit">improve this article</a> by <a href="/wiki/Help:Introduction_to_referencing/1" title="Help:Introduction to referencing/1">adding citations to reliable sources</a>. Unsourced material may be challenged and <a href="/wiki/Wikipedia:Verifiability#Burden_of_evidence" title="Wikipedia:Verifiability">removed</a>.</span> <small><i>(November 2011)</i></small></span></td>
</tr>
</table>
<table class="infobox" cellspacing="3" style="border-spacing:3px;width:22em;">
<caption>NRG</caption>
<tr>
<th scope="row" style="text-align:left;padding:0.225em 0;line-height:1.2em; padding-right:0.65em;;"><a href="/wiki/Filename_extension" title="Filename extension">Filename extension</a></th>
<td><code>.nrg</code></td>
</tr>
<tr>
<th scope="row" style="text-align:left;padding:0.225em 0;line-height:1.2em; padding-right:0.65em;;"><a href="/wiki/Uniform_Type_Identifier" title="Uniform Type Identifier">Uniform Type Identifier (UTI)</a></th>
<td>com.nero.nrg-image</td>
</tr>
<tr>
<th scope="row" style="text-align:left;padding:0.225em 0;line-height:1.2em; padding-right:0.65em;;">UTI conformation</th>
<td>public.iso-image,<br />
com.apple.disk-image,<br />
public.archive,<br />
public.data,<br />
public.item,<br />
public.disk-image</td>
</tr>
<tr>
<th scope="row" style="text-align:left;padding:0.225em 0;line-height:1.2em; padding-right:0.65em;;">Developed by</th>
<td><a href="/wiki/Nero_AG" title="Nero AG">Nero AG</a></td>
</tr>
<tr>
<th scope="row" style="text-align:left;padding:0.225em 0;line-height:1.2em; padding-right:0.65em;;">Type of format</th>
<td><a href="/wiki/Disk_image" title="Disk image">disk image</a></td>
</tr>
<tr>
<th scope="row" style="text-align:left;padding:0.225em 0;line-height:1.2em; padding-right:0.65em;;"><a href="/wiki/Digital_container_format" title="Digital container format">Container for</a></th>
<td><a href="/wiki/Filesystem" title="Filesystem" class="mw-redirect">filesystem</a> and volumes</td>
</tr>
</table>
<div class="hatnote">For other uses, see <a href="/wiki/NRG_(disambiguation)" title="NRG (disambiguation)" class="mw-redirect">NRG</a>.</div>
<p>A <b>.nrg</b> file is a proprietary <a href="/wiki/Compact_Disc" title="Compact Disc" class="mw-redirect">CD</a> image file format used by <a href="/wiki/Nero_Burning_ROM" title="Nero Burning ROM">Nero Burning ROM</a>, a utility suite made by <a href="/wiki/Nero_AG" title="Nero AG">Nero AG</a>, to create and burn CD images.</p>
<p>Other than Nero Burning ROM, a variety of software titles can use these image files. For example, <a href="/wiki/PowerISO" title="PowerISO">PowerISO</a>, <a href="/wiki/Alcohol_120%25" title="Alcohol 120%">Alcohol 120%</a>, or <a href="/wiki/Daemon_Tools" title="Daemon Tools">Daemon Tools</a> can <a href="/wiki/Mount_(computing)" title="Mount (computing)">mount</a> NRG files onto <a href="/wiki/RAM_drive" title="RAM drive">virtual drives</a> for reading.</p>
<p>Contrary to popular belief, .nrg files are not <a href="/wiki/ISO_image" title="ISO image">ISO images</a> with .nrg extension and a header attached.</p>
<p></p>
<div id="toc" class="toc">
<div id="toctitle">
<h2>Contents</h2>
</div>
<ul>
<li class="toclevel-1 tocsection-1"><a href="#Converting_nrg_files"><span class="tocnumber">1</span> <span class="toctext">Converting nrg files</span></a></li>
<li class="toclevel-1 tocsection-2"><a href="#File_format"><span class="tocnumber">2</span> <span class="toctext">File format</span></a>
<ul>
<li class="toclevel-2 tocsection-3"><a href="#Header"><span class="tocnumber">2.1</span> <span class="toctext">Header</span></a></li>
<li class="toclevel-2 tocsection-4"><a href="#Chunks"><span class="tocnumber">2.2</span> <span class="toctext">Chunks</span></a>
<ul>
<li class="toclevel-3 tocsection-5"><a href="#.28CUES.29_Cue_Sheet"><span class="tocnumber">2.2.1</span> <span class="toctext">(CUES) Cue Sheet</span></a></li>
<li class="toclevel-3 tocsection-6"><a href="#.28DAOI.29_DAO_Information"><span class="tocnumber">2.2.2</span> <span class="toctext">(DAOI) DAO Information</span></a></li>
<li class="toclevel-3 tocsection-7"><a href="#.28CDTX.29_CD-text"><span class="tocnumber">2.2.3</span> <span class="toctext">(CDTX) CD-text</span></a></li>
<li class="toclevel-3 tocsection-8"><a href="#.28ETNF.29_Extended_Track_Information"><span class="tocnumber">2.2.4</span> <span class="toctext">(ETNF) Extended Track Information</span></a></li>
<li class="toclevel-3 tocsection-9"><a href="#.28SINF.29_Session_Information"><span class="tocnumber">2.2.5</span> <span class="toctext">(SINF) Session Information</span></a></li>
<li class="toclevel-3 tocsection-10"><a href="#.28MTYP.29_Media_Type.3F"><span class="tocnumber">2.2.6</span> <span class="toctext">(MTYP) Media Type?</span></a></li>
<li class="toclevel-3 tocsection-11"><a href="#.28DINF.29_Disc_Information.3F"><span class="tocnumber">2.2.7</span> <span class="toctext">(DINF) Disc Information?</span></a></li>
<li class="toclevel-3 tocsection-12"><a href="#.28TOCT.29_TOC_T.3F"><span class="tocnumber">2.2.8</span> <span class="toctext">(TOCT) TOC T?</span></a></li>
<li class="toclevel-3 tocsection-13"><a href="#.28RELO.29"><span class="tocnumber">2.2.9</span> <span class="toctext">(RELO)</span></a></li>
<li class="toclevel-3 tocsection-14"><a href="#.28END.21.29_End_of_chain"><span class="tocnumber">2.2.10</span> <span class="toctext">(END!) End of chain</span></a></li>
</ul>
</li>
</ul>
</li>
<li class="toclevel-1 tocsection-15"><a href="#See_also"><span class="tocnumber">3</span> <span class="toctext">See also</span></a>
<ul>
<li class="toclevel-2 tocsection-16"><a href="#Emulating.2Fediting_software_supporting_NRG"><span class="tocnumber">3.1</span> <span class="toctext">Emulating/editing software supporting NRG</span></a></li>
</ul>
</li>
<li class="toclevel-1 tocsection-17"><a href="#External_links"><span class="tocnumber">4</span> <span class="toctext">External links</span></a></li>
</ul>
</div>
<p></p>
<h2><span class="mw-headline" id="Converting_nrg_files">Converting nrg files</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=NRG_(file_format)&action=edit&section=1" title="Edit section: Converting nrg files">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<p>There are several tools available to convert a <code>.nrg</code> data file into an ISO 9660 CD image. Note that converting a cd image <code>.nrg</code> multitrack (data + audio tracks) to ISO involve the loss of audio tracks.</p>
<ul>
<li>Free but not Open Source tools include:
<ul>
<li><b>nrgtoiso</b> — Windows freeware. Converts a Nero NRG file (CD Image) to a standard ISO CD Image file.</li>
</ul>
</li>
<li>Open Source <a href="/wiki/Command_line_interface" title="Command line interface" class="mw-redirect">command line</a> tools include:
<ul>
<li><b>nrg2iso</b> — cross-platform. <a href="/wiki/Hard_coding" title="Hard coding">Hardcoded</a> to read all nrg files as <a href="/wiki/Disc_At_Once" title="Disc At Once" class="mw-redirect">disc at once</a> (DAO) type causing it to fail on <a href="/wiki/Track_At_Once" title="Track At Once" class="mw-redirect">track at once</a> (TAO) type images.</li>
<li><b>iat</b> — cross-platform. Tool for detecting the structure of many types of CD/DVD image and convert image CD/DVD to ISO9660.</li>
<li><b>fusenrg</b> — for <a href="/wiki/Unix-like" title="Unix-like">Unix-like</a> systems. Hardcoded to read all nrg files as <a href="/wiki/Disc_At_Once" title="Disc At Once" class="mw-redirect">disc at once</a> (DAO).</li>
<li><b>nrg4iso</b> — (project abandoned by author - last updated Oct 2007) for Unix-like systems (including Mac OS X). Can convert both DAO and TAO images into ISO 9660 CD images. Does NOT support DAO with multiple tracks.</li>
<li><b>eNeRGy</b> — Mac OS X, based on nrg4iso, has a graphical user interface.</li>
</ul>
</li>
<li>Shareware tools include:
<ul>
<li><b>PowerISO</b> — converts from nrg to ISO as well as allows for browsing and extracting individual files from a nrg data file.</li>
<li><b>MagicIso</b> — Is another powerful tool converts from nrg to ISO as well as allows for browsing and extracting individual files from a nrg data file.</li>
</ul>
</li>
</ul>
<p>The data contents of NRG files can be extracted directly without creating an ISO image using <a href="/wiki/Freeware" title="Freeware">freeware</a> file <a href="/wiki/File_archiver" title="File archiver">archivers</a> such as <a href="/wiki/IZArc" title="IZArc">IZArc</a>.</p>
<h2><span class="mw-headline" id="File_format">File format</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=NRG_(file_format)&action=edit&section=2" title="Edit section: File format">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<table class="metadata plainlinks ambox ambox-content ambox-Original_research" role="presentation">
<tr>
<td class="mbox-image">
<div style="width:52px;"><img alt="" src="//upload.wikimedia.org/wikipedia/en/f/f4/Ambox_content.png" width="40" height="40" data-file-width="40" data-file-height="40" /></div>
</td>
<td class="mbox-text"><span class="mbox-text-span">This article <b>possibly contains <a href="/wiki/Wikipedia:No_original_research" title="Wikipedia:No original research">original research</a></b>. <span class="hide-when-compact">Please <a class="external text" href="//en.wikipedia.org/w/index.php?title=NRG_(file_format)&action=edit">improve it</a> by <a href="/wiki/Wikipedia:Verifiability" title="Wikipedia:Verifiability">verifying</a> the claims made and adding <a href="/wiki/Wikipedia:Citing_sources#Inline_citations" title="Wikipedia:Citing sources">inline citations</a>. Statements consisting only of original research should be removed.</span> <small><i>(May 2010)</i></small></span></td>
</tr>
</table>
<p><i>The file format specification below is unofficial and as such is lacking some data. There may also be errors.</i></p>
<p>The nrg file format uses a variation of the <a href="/wiki/Interchange_File_Format" title="Interchange File Format">Interchange File Format</a> (IFF) and stores data in a chain of "chunks". All integer values are stored <a href="/wiki/Signedness" title="Signedness">unsigned</a> in big endian <a href="/wiki/Endianness" title="Endianness">byte order</a>. Version 1 nrg format stores values as 32bit integers. Nero Burning ROM v5.5 introduced a new nrg file format, version 2, with support for 64bit integers.</p>
<h3><span class="mw-headline" id="Header">Header</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=NRG_(file_format)&action=edit&section=3" title="Edit section: Header">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
<p>The nrg format does not store its data as a header at the beginning of a file. It is instead attached at the end of the file like a footer. Image information is stored as a serialized chain of <a href="/wiki/Interchange_File_Format" title="Interchange File Format">IFF</a> chunks. To get the offset of the first chunk one must read the nrg footer from the last 8 or 12 bytes of the file.</p>
<div>
<table style="width: 100%; background-color:transparent;table-layout:fixed; border:none; border-spacing:0;" role="presentation">
<tr style="vertical-align: top;">
<td>
<div style="margin-right:20px;">
<table class="wikitable">
<caption>Nero footer (Version 1)</caption>
<tr>
<th>Size (bytes)</th>
<th>Type</th>
<th>Value / Purpose</th>
</tr>
<tr>
<td>4</td>
<td>Chunk ID</td>
<td>"NERO"</td>
</tr>
<tr>
<td>4</td>
<td>32bit</td>
<td>Offset of the first chunk data chain</td>
</tr>
</table>
</div>
</td>
<td>
<div style="margin-right: 20px;">
<table class="wikitable">
<caption>Nero footer (Version 2)</caption>
<tr>
<th>Size (bytes)</th>
<th>Type</th>
<th>Value / Purpose</th>
</tr>
<tr>
<td>4</td>
<td>Chunk ID</td>
<td>"NER5"</td>
</tr>
<tr>
<td>8</td>
<td>64bit</td>
<td>Offset of the first chunk data chain</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</div>
<h3><span class="mw-headline" id="Chunks">Chunks</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=NRG_(file_format)&action=edit&section=4" title="Edit section: Chunks">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
<h4><span class="mw-headline" id=".28CUES.29_Cue_Sheet">(CUES) Cue Sheet</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=NRG_(file_format)&action=edit&section=5" title="Edit section: (CUES) Cue Sheet">edit</a><span class="mw-editsection-bracket">]</span></span></h4>
<p>Available in all versions of nrg file format.</p>
<p>The CUEX chunk is the concatenation of fixed-size blocks, each one representing a cue point.</p>
<p>The index0 points are present even when they are identical to the index1 ones. The index0 points in audio tracks are incorrect if Nero has been asked to record all the sub-channel data (in that case the sector size is 2448 bytes). No index other than 0 or 1 has been encountered, although the chunk format allows for such cue points to be recorded; thus the number of cue blocks seems to be always 2*(#track + 1): two indices for each track, an index0 for the lead-in and an index1 for the lead-out.</p>
<div>
<table style="width: 100%; background-color:transparent;table-layout:fixed; border:none; border-spacing:0;" role="presentation">
<tr style="vertical-align: top;">
<td>
<div style="margin-right:20px;">
<table class="wikitable">
<caption>Version 1</caption>
<tr>
<th>Size (bytes)</th>
<th>Type</th>
<th>Value / Purpose</th>
</tr>
<tr>
<td>4</td>
<td>Chunk ID</td>
<td>"CUES"</td>
</tr>
<tr>
<td>4</td>
<td>32bit</td>
<td>Chunk size (bytes)</td>
</tr>
</table>
</div>
</td>
<td>
<div style="margin-right: 20px;">
<table class="wikitable">
<caption>Version 2</caption>
<tr>
<th>Size (bytes)</th>
<th>Type</th>
<th>Value / Purpose</th>
</tr>
<tr>
<td>4</td>
<td>Chunk ID</td>
<td>"CUEX"</td>
</tr>
<tr>
<td>4</td>
<td>32bit</td>
<td>Chunk size (bytes)</td>
</tr>
<tr style="background:silver">
<td>1</td>
<td>8bit</td>
<td>Mode (values found: 0x01 for audio; 0x21 for non copyright-protected audio; 0x41 for data)</td>
</tr>
<tr style="background:silver">
<td>1</td>
<td>8bit</td>
<td>Track number (BCD coded; 0xAA for the lead-out area)</td>
</tr>
<tr style="background:silver">
<td>1</td>
<td>8bit</td>
<td>Index number (probably BCD coded)</td>
</tr>
<tr style="background:silver">
<td>1</td>
<td>8bit</td>
<td>Padding? (always zero found)</td>
</tr>
<tr style="background:silver">
<td>4</td>
<td>32bit</td>
<td>LBA position in sectors (signed integer value)</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</div>
<h4><span class="mw-headline" id=".28DAOI.29_DAO_Information">(DAOI) DAO Information</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=NRG_(file_format)&action=edit&section=6" title="Edit section: (DAOI) DAO Information">edit</a><span class="mw-editsection-bracket">]</span></span></h4>
<p>Available in all versions of nrg file format.</p>
<p>DAOI chunks store disc at once sessions specific information in two parts. The first part contains data that is specific for the session only. The second part repeats track specific information (grey) once for each track. Parse the SINF chunks to get the number of tracks for a specific session.</p>
<div>
<table style="width: 100%; background-color:transparent;table-layout:fixed; border:none; border-spacing:0;" role="presentation">
<tr style="vertical-align: top;">
<td>
<div style="margin-right:20px;">
<table class="wikitable">
<caption>Version 1</caption>
<tr>
<th>Size (bytes)</th>
<th>Type</th>
<th>Value / Purpose</th>
</tr>
<tr>
<td>4</td>
<td>Chunk ID</td>
<td>"DAOI"</td>
</tr>
<tr>
<td>4</td>
<td>32bit</td>
<td>Chunk size (bytes) big endian</td>
</tr>
<tr>
<td>4</td>
<td>32bit</td>
<td>Chunk size (bytes) little endian</td>
</tr>
<tr>
<td>14</td>
<td> </td>
<td>UPC</td>
</tr>
<tr>
<td>4</td>
<td>32bit</td>
<td>Toc type</td>
</tr>
<tr>
<td>1</td>
<td>8bit</td>
<td>First track</td>
</tr>
<tr>
<td>1</td>
<td>8bit</td>
<td>Last track</td>
</tr>
<tr style="background:silver">
<td>12</td>
<td> </td>
<td>ISRC</td>
</tr>
<tr style="background:silver">
<td>4</td>
<td>32bit</td>
<td>Sector size</td>
</tr>
<tr style="background:silver">
<td>4</td>
<td>32bit</td>
<td>Mode</td>
</tr>
<tr style="background:silver">
<td>4</td>
<td>32bit</td>
<td>Index0 (Pre gap)</td>
</tr>
<tr style="background:silver">
<td>4</td>
<td>32bit</td>
<td>Index1 (Start of track)</td>
</tr>
<tr style="background:silver">
<td>4</td>
<td>32bit</td>
<td>Index2 (End of track + 1)</td>
</tr>
</table>
</div>
</td>
<td>
<div style="margin-right: 20px;">
<table class="wikitable">
<caption>Version 2</caption>
<tr>
<th>Size (bytes)</th>
<th>Type</th>
<th>Value / Purpose</th>
</tr>
<tr>
<td>4</td>
<td>Chunk ID</td>
<td>"DAOX"</td>
</tr>
<tr>
<td>4</td>
<td>32bit</td>
<td>Chunk size (bytes) big endian</td>
</tr>
<tr>
<td>4</td>
<td>32bit</td>
<td>Chunk size (bytes) (big endian already encountered; maybe also little endian on some machines)</td>
</tr>
<tr>
<td>13</td>
<td>Text</td>
<td>UPC (or NULLs)</td>
</tr>
<tr>
<td>1</td>
<td>8bit</td>
<td>Padding? (always NULL found)</td>
</tr>
<tr>
<td>2</td>
<td>16bit</td>
<td>Toc type (values already found: 0x0000 for audio; 0x0001 for data; 0x2001 for Mode 2/form 1 data)</td>
</tr>
<tr>
<td>1</td>
<td>8bit</td>
<td>First track in the session</td>
</tr>
<tr>
<td>1</td>
<td>8bit</td>
<td>Last track in the session</td>
</tr>
<tr style="background:silver">
<td>12</td>
<td>Text</td>
<td>ISRC (or NULLs)</td>
</tr>
<tr style="background:silver">
<td>2</td>
<td>16bit</td>
<td>Sector size in the image file (bytes)</td>
</tr>
<tr style="background:silver">
<td>2</td>
<td>16bit</td>
<td>Mode of the data in the image file (values already found: 0x0700 for audio; 0x1000 for audio with sub-channel; 0x0000 for data; 0x0500 for raw data; 0x0f00 for raw data with sub-channel; 0x0300 for Mode 2 Form 1 data; 0x0600 for raw Mode 2/form 1 data; 0x1100 for raw Mode 2/form 1 data with sub-channel)</td>
</tr>
<tr style="background:silver">
<td>2</td>
<td>16bit</td>
<td>Unknown (always 0x0001 found)</td>
</tr>
<tr style="background:silver">
<td>8</td>
<td>64bit</td>
<td>Index0 (Pre-gap) (bytes)</td>
</tr>
<tr style="background:silver">
<td>8</td>
<td>64bit</td>
<td>Index1 (Start of track) (bytes)</td>
</tr>
<tr style="background:silver">
<td>8</td>
<td>64bit</td>
<td>End of track + 1 (bytes)</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</div>
<h4><span class="mw-headline" id=".28CDTX.29_CD-text">(CDTX) CD-text</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=NRG_(file_format)&action=edit&section=7" title="Edit section: (CDTX) CD-text">edit</a><span class="mw-editsection-bracket">]</span></span></h4>
<p>Available in version 2 nrg file format.</p>
<p>The CDTX chunk is the concatenation of raw <a href="/wiki/CD-TEXT" title="CD-TEXT" class="mw-redirect">CD-text</a> packs of 18 bytes each.</p>
<table class="wikitable">
<caption>Version 2</caption>
<tr>
<th>Size (bytes)</th>
<th>Type</th>
<th>Value / Purpose</th>
</tr>
<tr>
<td>4</td>
<td>Chunk ID</td>
<td>"CDTX"</td>
</tr>
<tr>
<td>4</td>
<td>32bit</td>
<td>Chunk size (bytes)</td>
</tr>
<tr style="background:silver">
<td>1</td>
<td>8bit</td>
<td>Pack type</td>
</tr>
<tr style="background:silver">
<td>1</td>
<td>8bit</td>
<td>Pack type (track number)</td>
</tr>
<tr style="background:silver">
<td>1</td>
<td>8bit</td>
<td>Pack number in the block</td>
</tr>
<tr style="background:silver">
<td>1</td>
<td>8bit</td>
<td>Block number etc.</td>
</tr>
<tr style="background:silver">
<td>12</td>
<td>Text</td>
<td>NULL-separated text strings</td>
</tr>
<tr style="background:silver">
<td>2</td>
<td>16bit</td>
<td>CRC</td>
</tr>
</table>
<h4><span class="mw-headline" id=".28ETNF.29_Extended_Track_Information">(ETNF) Extended Track Information</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=NRG_(file_format)&action=edit&section=8" title="Edit section: (ETNF) Extended Track Information">edit</a><span class="mw-editsection-bracket">]</span></span></h4>
<p>Available in all versions of nrg file format.</p>
<p>ETNF chunks are used to store track information for track at once sessions. The data is repeated once for each track. Parse the SINF chunks to get the number of tracks for a specific session.</p>
<div>
<table style="width: 100%; background-color:transparent;table-layout:fixed; border:none; border-spacing:0;" role="presentation">
<tr style="vertical-align: top;">
<td>
<div style="margin-right:20px;">
<table class="wikitable">
<caption>Version 1</caption>
<tr>
<th>Size (bytes)</th>
<th>Type</th>
<th>Value / Purpose</th>
</tr>
<tr>
<td>4</td>
<td>Chunk ID</td>
<td>"ETNF"</td>
</tr>
<tr>
<td>4</td>
<td>32bit</td>
<td>Chunk size (bytes)</td>
</tr>
<tr style="background:silver">
<td>4</td>
<td>32bit</td>
<td>Track offset in image</td>
</tr>
<tr style="background:silver">
<td>4</td>
<td>32bit</td>
<td>Track length (bytes)</td>
</tr>
<tr style="background:silver">
<td>4</td>
<td>32bit</td>
<td>Mode</td>
</tr>
<tr style="background:silver">
<td>4</td>
<td>32bit</td>
<td>Start lba on disc</td>
</tr>
<tr style="background:silver">
<td>4</td>
<td> </td>
<td> ?</td>
</tr>
</table>
</div>
</td>
<td>
<div style="margin-right: 20px;">
<table class="wikitable">
<caption>Version 2</caption>
<tr>
<th>Size (bytes)</th>
<th>Type</th>
<th>Value / Purpose</th>
</tr>
<tr>
<td>4</td>
<td>Chunk ID</td>
<td>"ETN2"</td>
</tr>
<tr>
<td>4</td>
<td>32bit</td>
<td>Chunk size (bytes)</td>
</tr>
<tr style="background:silver">
<td>8</td>
<td>64bit</td>
<td>Track offset in image</td>
</tr>
<tr style="background:silver">
<td>8</td>
<td>64bit</td>
<td>Track length (bytes)</td>
</tr>
<tr style="background:silver">
<td>4</td>
<td>32bit</td>
<td>Mode (values found: 0x7 for audio; 0x0 for data; 0x3 for Mode 2 data)</td>
</tr>
<tr style="background:silver">
<td>4</td>
<td>32bit</td>
<td>Start lba on disc (sectors) (the start is after a lead-in of 150 sectors)</td>
</tr>
<tr style="background:silver">
<td>4</td>
<td>32bit</td>
<td>Unknown (only zero found)</td>
</tr>
<tr style="background:silver">
<td>4</td>
<td>32bit</td>
<td>Track length (sectors)</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</div>
<h4><span class="mw-headline" id=".28SINF.29_Session_Information">(SINF) Session Information</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=NRG_(file_format)&action=edit&section=9" title="Edit section: (SINF) Session Information">edit</a><span class="mw-editsection-bracket">]</span></span></h4>
<p>Available in all versions of nrg file format.</p>
<p>Session information chunks should be used to quickly scan the image for session and track count. SINF chunks are always listed in sequential order corresponding to the sessions order. To get more details information about a specific session one must parse the corresponding DAOI or ETNF chunk.</p>
<table class="wikitable">
<caption>Version 1 and 2</caption>
<tr>
<th>Size (bytes)</th>
<th>Type</th>
<th>Value / Purpose</th>
</tr>
<tr>
<td>4</td>
<td>Chunk ID</td>
<td>"SINF"</td>
</tr>
<tr>
<td>4</td>
<td>32bit</td>
<td>Chunk size (bytes)</td>
</tr>
<tr>
<td>4</td>
<td>32bit</td>
<td># tracks in session</td>
</tr>
</table>
<h4><span class="mw-headline" id=".28MTYP.29_Media_Type.3F">(MTYP) Media Type?</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=NRG_(file_format)&action=edit&section=10" title="Edit section: (MTYP) Media Type?">edit</a><span class="mw-editsection-bracket">]</span></span></h4>
<p>Available in all versions of nrg file format.</p>
<p><i>This chunk and its use is unknown</i>. A value of 1 (big endian) was found in images of several CD (audio or data; CD-ROM or CD-R).</p>
<table class="wikitable">
<caption>Version 1 and 2</caption>
<tr>
<th>Size (bytes)</th>
<th>Type</th>
<th>Value / Purpose</th>
</tr>
<tr>
<td>4</td>
<td>Chunk ID</td>
<td>"MTYP"</td>
</tr>
<tr>
<td>4</td>
<td>32bit</td>
<td>Chunk size (bytes)</td>
</tr>
<tr>
<td>4</td>
<td> </td>
<td> ?</td>
</tr>
</table>
<h4><span class="mw-headline" id=".28DINF.29_Disc_Information.3F">(DINF) Disc Information?</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=NRG_(file_format)&action=edit&section=11" title="Edit section: (DINF) Disc Information?">edit</a><span class="mw-editsection-bracket">]</span></span></h4>
<p>Found in TAO images in version 2 of nrg file format. Found in DAO images in version of nrg file format only if Nero was asked not to close the disc.</p>
<p><i>This chunk and its use is unknown</i>.</p>
<table class="wikitable">
<caption>Version 2 (and 1?)</caption>
<tr>
<th>Size (bytes)</th>
<th>Type</th>
<th>Value / Purpose</th>
</tr>
<tr>
<td>4</td>
<td>Chunk ID</td>
<td>"DINF"</td>
</tr>
<tr>
<td>4</td>
<td>32bit</td>
<td>Chunk size (bytes)</td>
</tr>
<tr>
<td>4</td>
<td>32bit</td>
<td>Unknown (found 0x1 for an unclosed disc; 0x0 otherwise)</td>
</tr>
</table>
<h4><span class="mw-headline" id=".28TOCT.29_TOC_T.3F">(TOCT) TOC T?</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=NRG_(file_format)&action=edit&section=12" title="Edit section: (TOCT) TOC T?">edit</a><span class="mw-editsection-bracket">]</span></span></h4>
<p>Found in TAO images in version 2 of nrg file format.</p>
<p><i>This chunk and its use is unknown</i>.</p>
<table class="wikitable">
<caption>Version 2 (and 1?)</caption>
<tr>
<th>Size (bytes)</th>
<th>Type</th>
<th>Value / Purpose</th>
</tr>
<tr>
<td>4</td>
<td>Chunk ID</td>
<td>"TOCT"</td>
</tr>
<tr>
<td>4</td>
<td>32bit</td>
<td>Chunk size (bytes)</td>
</tr>
<tr>
<td>2</td>
<td> </td>
<td>Unknown (always zero found)</td>
</tr>
</table>
<h4><span class="mw-headline" id=".28RELO.29">(RELO)</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=NRG_(file_format)&action=edit&section=13" title="Edit section: (RELO)">edit</a><span class="mw-editsection-bracket">]</span></span></h4>
<p>Found in TAO images in version 2 of nrg file format.</p>
<p><i>This chunk and its use is unknown</i>.</p>
<table class="wikitable">
<caption>Version 2 (and 1?)</caption>
<tr>
<th>Size (bytes)</th>
<th>Type</th>
<th>Value / Purpose</th>
</tr>
<tr>
<td>4</td>
<td>Chunk ID</td>
<td>"RELO"</td>
</tr>
<tr>
<td>4</td>
<td>32bit</td>
<td>Chunk size (bytes)</td>
</tr>
<tr>
<td>4</td>
<td> </td>
<td>Unknown (always zero found)</td>
</tr>
</table>
<h4><span class="mw-headline" id=".28END.21.29_End_of_chain">(END!) End of chain</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=NRG_(file_format)&action=edit&section=14" title="Edit section: (END!) End of chain">edit</a><span class="mw-editsection-bracket">]</span></span></h4>
<p>Available in all versions of nrg file format.</p>
<p>End of chain chunk is signals that there are no more chunks to be read.</p>
<table class="wikitable">
<caption>Version 1 and 2</caption>
<tr>
<th>Size (bytes)</th>
<th>Type</th>
<th>Value / Purpose</th>
</tr>
<tr>
<td>4</td>
<td>Chunk ID</td>
<td>"END!"</td>
</tr>
<tr>
<td>4</td>
<td>32bit</td>
<td>Chunk size (always zero)</td>
</tr>
</table>
<h2><span class="mw-headline" id="See_also">See also</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=NRG_(file_format)&action=edit&section=15" title="Edit section: See also">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<ul>
<li><a href="/wiki/Disk_image" title="Disk image">Disk image</a></li>
<li><a href="/wiki/.dmg" title=".dmg" class="mw-redirect">DMG (Apple disk image)</a></li>
<li><a href="/wiki/ISO_image" title="ISO image">ISO image</a></li>
</ul>
<h3><span class="mw-headline" id="Emulating.2Fediting_software_supporting_NRG">Emulating/editing software supporting NRG</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=NRG_(file_format)&action=edit&section=16" title="Edit section: Emulating/editing software supporting NRG">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
<ul>
<li><a href="/wiki/Alcohol_120%25" title="Alcohol 120%">Alcohol 120%</a></li>
<li><a href="/wiki/CDemu" title="CDemu">CDemu</a></li>
<li><a href="/wiki/Daemon_Tools" title="Daemon Tools">Daemon Tools</a></li>
<li><a href="/wiki/IsoBuster" title="IsoBuster">IsoBuster</a></li>
<li><a href="/wiki/MagicISO" title="MagicISO">MagicISO</a></li>
<li><a href="/wiki/PowerISO" title="PowerISO">PowerISO</a></li>
<li><a href="/wiki/Roxio_Toast" title="Roxio Toast">Roxio Toast</a></li>
<li><a href="/wiki/UltraISO" title="UltraISO">UltraISO</a></li>
<li><a href="/wiki/WinCDEmu" title="WinCDEmu">WinCDEmu</a></li>
</ul>
<h2><span class="mw-headline" id="External_links">External links</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=NRG_(file_format)&action=edit&section=17" title="Edit section: External links">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<ul>
<li><a rel="nofollow" class="external text" href="http://code.google.com/p/nrg4iso/">nrg4iso</a> — <a href="/wiki/BSD" title="BSD" class="mw-redirect">BSD</a> licensed command line utility. Does not fully support nrg format. Currently abandoned. (<a href="/wiki/POSIX" title="POSIX">POSIX</a>)</li>
<li><a rel="nofollow" class="external text" href="http://gregory.kokanosky.free.fr/v4/linux/nrg2iso.en.html">nrg2iso</a> — <a href="/wiki/Gpl" title="Gpl" class="mw-redirect">GPL</a> licensed command line utility. Does not fully support nrg format. (<a href="/wiki/Linux" title="Linux">Linux</a>)</li>
<li><a rel="nofollow" class="external text" href="http://iat.berlios.de/">IAT</a> — <a href="/wiki/GPL" title="GPL" class="mw-redirect">GPL</a> licensed command line utility without support for CD-AUDIO</li>
<li><a rel="nofollow" class="external text" href="http://fusenrg.sourceforge.net">fusenrg</a> — <a href="/wiki/Gpl" title="Gpl" class="mw-redirect">GPL</a> licensed command line utility. Converts NRG to ISO on the fly. Does not fully support nrg format. (<a href="/wiki/Linux" title="Linux">Linux</a>)</li>
<li><a rel="nofollow" class="external text" href="http://bladesdev.com/">nrg2iso</a> — Windows graphical utility. Does not fully support nrg format. (<a href="/wiki/Microsoft_Windows" title="Microsoft Windows">Windows</a>)</li>
<li><a rel="nofollow" class="external text" href="http://www.imgburn.com/">IMGBURN</a> — Windows Freeware ISO burning software capable of managing the nrg format.</li>
<li><a rel="nofollow" class="external text" href="http://intotheapple.com/segnalazioni/2053-il-software-di-ita-energy.html">eNeRGy</a>' — <a href="/wiki/Gpl" title="Gpl" class="mw-redirect">GPL</a> Mac OS X utility, based on nrg4iso, has a graphical user interface</li>
<li><a rel="nofollow" class="external text" href="http://www.nrgtoiso.com/">nrgtoiso</a> — Windows Freeware graphical utility. Converts nrg format to iso format.</li>
</ul>
<table cellspacing="0" class="navbox" style="border-spacing:0;">
<tr>
<td style="padding:2px;">
<table cellspacing="0" class="nowraplinks collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit;">
<tr>
<th scope="col" class="navbox-title" colspan="2">
<div class="plainlinks hlist navbar mini">
<ul>
<li class="nv-view"><a href="/wiki/Template:Disk_images" title="Template:Disk images"><span title="View this template" style=";;background:none transparent;border:none;;">v</span></a></li>
<li class="nv-talk"><a href="/wiki/Template_talk:Disk_images" title="Template talk:Disk images"><span title="Discuss this template" style=";;background:none transparent;border:none;;">t</span></a></li>
<li class="nv-edit"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Template:Disk_images&action=edit"><span title="Edit this template" style=";;background:none transparent;border:none;;">e</span></a></li>
</ul>
</div>
<div style="font-size:110%;"><a href="/wiki/Disk_image" title="Disk image">Disk image</a> <a href="/wiki/File_format" title="File format">file formats</a></div>
</th>
</tr>
<tr style="height:2px;">
<td colspan="2"></td>
</tr>
<tr>
<th scope="row" class="navbox-group"><a href="/wiki/Optical_discs" title="Optical discs" class="mw-redirect">Optical discs</a></th>
<td class="navbox-list navbox-odd hlist" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
<div style="padding:0em 0.25em;">
<ul>
<li><a href="/wiki/CloneCD_Control_File" title="CloneCD Control File">CCD/IMG/SUB</a></li>
<li><a href="/wiki/Cue_sheet_(computing)" title="Cue sheet (computing)">CUE/BIN</a></li>
<li><a href="/wiki/.CSO" title=".CSO">CSO</a></li>
<li><a href="/wiki/Direct_Access_Archive" title="Direct Access Archive">DAA</a></li>
<li><a href="/wiki/IsoBuster" title="IsoBuster">IBP/IBQ</a></li>
<li><a href="/wiki/ISO_image" title="ISO image">ISO</a></li>
<li><a href="/wiki/UltraISO#ISZ_format" title="UltraISO">ISZ</a></li>
<li><a href="/wiki/Mirror_Disk_File" title="Mirror Disk File" class="mw-redirect">MDS/MDF</a></li>
<li><a href="/wiki/Media_Data_Extended" title="Media Data Extended" class="mw-redirect">MDX</a></li>
<li><strong class="selflink">NRG</strong></li>
<li><a href="/wiki/MagicISO#Universal_Image_Format" title="MagicISO">UIF</a></li>
</ul>
</div>
</td>
</tr>
<tr style="height:2px;">
<td colspan="2"></td>
</tr>
<tr>
<th scope="row" class="navbox-group"><a href="/wiki/Hard_disks" title="Hard disks" class="mw-redirect">Hard disks</a></th>
<td class="navbox-list navbox-odd hlist" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
<div style="padding:0em 0.25em;">
<ul>
<li><a href="/wiki/Apple_Disk_Image" title="Apple Disk Image">DMG</a></li>
<li><a href="/wiki/Fast_Virtual_Disk" title="Fast Virtual Disk">FVD</a></li>
<li><a href="/wiki/IMG_(file_format)" title="IMG (file format)">IMG</a></li>
<li><a href="/wiki/ISO_image" title="ISO image">ISO</a></li>
<li><a href="/wiki/New_Disk_Image_Format" title="New Disk Image Format" class="mw-redirect">NDIF</a></li>
<li><a href="/wiki/Qcow" title="Qcow">QCOW</a></li>
<li><a href="/wiki/Universal_Disk_Image_Format" title="Universal Disk Image Format" class="mw-redirect">UDIF</a></li>
<li><a href="/wiki/VirtualBox#Virtual_Disk_Image" title="VirtualBox">VDI</a></li>
<li><a href="/wiki/VHD_(file_format)" title="VHD (file format)">VHD</a></li>
<li><a href="/wiki/VMDK" title="VMDK">VMDK</a></li>
<li><a href="/wiki/Windows_Imaging_Format" title="Windows Imaging Format">WIM</a></li>
</ul>
</div>
</td>
</tr>
<tr style="height:2px;">
<td colspan="2"></td>
</tr>
<tr>
<th scope="row" class="navbox-group"><a href="/wiki/Floppy_disks" title="Floppy disks" class="mw-redirect">Floppy disks</a></th>
<td class="navbox-list navbox-even hlist" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
<div style="padding:0em 0.25em;">
<ul>
<li><a href="/wiki/Amiga_Disk_File" title="Amiga Disk File">ADF/ADZ</a></li>
<li><a href="/wiki/Disk_Copy" title="Disk Copy">DC42/DART</a></li>
<li><a href="/wiki/Disk_Copy_Fast" title="Disk Copy Fast">DCF</a></li>
<li><a href="/wiki/Disk_Masher_System" title="Disk Masher System">DMS</a></li>
<li><a href="/wiki/IMG_(file_format)" title="IMG (file format)">IMG/IMA/IMZ</a></li>
<li><a href="/wiki/Virtual_Floppy_Disk_(file_type)" title="Virtual Floppy Disk (file type)" class="mw-redirect">VFD</a></li>
</ul>
</div>
</td>
</tr>
<tr style="height:2px;">
<td colspan="2"></td>
</tr>
<tr>
<th scope="row" class="navbox-group"><a href="/wiki/Flash_drives" title="Flash drives" class="mw-redirect">Flash drives</a></th>
<td class="navbox-list navbox-odd hlist" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
<div style="padding:0em 0.25em;"><a href="/wiki/ISO_image" title="ISO image">ISO</a></div>
</td>
</tr>
<tr style="height:2px;">
<td colspan="2"></td>
</tr>
<tr>
<th scope="row" class="navbox-group"><a href="/wiki/Compact_Disc_Digital_Audio" title="Compact Disc Digital Audio">CD-DA</a></th>
<td class="navbox-list navbox-even hlist" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
<div style="padding:0em 0.25em;"><a href="/wiki/Disc_Description_Protocol" title="Disc Description Protocol">Disc Description Protocol</a></div>
</td>
</tr>
<tr style="height:2px;">
<td colspan="2"></td>
</tr>
<tr>
<td class="navbox-abovebelow" colspan="2">
<div><a href="/wiki/Comparison_of_disc_image_software" title="Comparison of disc image software">Comparison of disc image software</a></div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<!--
NewPP limit report
Parsed by mw1047
CPU time usage: 0.588 seconds
Real time usage: 0.644 seconds
Preprocessor visited node count: 533/1000000
Preprocessor generated node count: 2957/1500000
Post‐expand include size: 22846/2048000 bytes
Template argument size: 298/2048000 bytes
Highest expansion depth: 8/40
Expensive parser function count: 6/500
Lua time usage: 0.078/10.000 seconds
Lua memory usage: 1.28 MB/50 MB
-->
<!-- Saved in parser cache with key enwiki:pcache:idhash:8453693-0!*!0!!en!4!* and timestamp 20140606211425 and revision id 605505658
-->
<noscript><img src="//en.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=1x1" alt="" title="" width="1" height="1" style="border: none; position: absolute;" /></noscript></div> <div class="printfooter">
Retrieved from "<a dir="ltr" href="http://en.wikipedia.org/w/index.php?title=NRG_(file_format)&oldid=605505658">http://en.wikipedia.org/w/index.php?title=NRG_(file_format)&oldid=605505658</a>" </div>
<div id='catlinks' class='catlinks'><div id="mw-normal-catlinks" class="mw-normal-catlinks"><a href="/wiki/Help:Category" title="Help:Category">Categories</a>: <ul><li><a href="/wiki/Category:Archive_formats" title="Category:Archive formats">Archive formats</a></li><li><a href="/wiki/Category:Disk_images" title="Category:Disk images">Disk images</a></li></ul></div><div id="mw-hidden-catlinks" class="mw-hidden-catlinks mw-hidden-cats-hidden">Hidden categories: <ul><li><a href="/wiki/Category:Articles_lacking_sources_from_November_2011" title="Category:Articles lacking sources from November 2011">Articles lacking sources from November 2011</a></li><li><a href="/wiki/Category:All_articles_lacking_sources" title="Category:All articles lacking sources">All articles lacking sources</a></li><li><a href="/wiki/Category:Articles_that_may_contain_original_research_from_May_2010" title="Category:Articles that may contain original research from May 2010">Articles that may contain original research from May 2010</a></li><li><a href="/wiki/Category:All_articles_that_may_contain_original_research" title="Category:All articles that may contain original research">All articles that may contain original research</a></li></ul></div></div> <div class="visualClear"></div>
</div>
</div>
<div id="mw-navigation">
<h2>Navigation menu</h2>
<div id="mw-head">
<div id="p-personal" role="navigation" class="" aria-labelledby="p-personal-label">
<h3 id="p-personal-label">Personal tools</h3>
<ul>
<li id="pt-createaccount"><a href="/w/index.php?title=Special:UserLogin&returnto=NRG+%28file+format%29&type=signup">Create account</a></li><li id="pt-login"><a href="/w/index.php?title=Special:UserLogin&returnto=NRG+%28file+format%29" title="You're encouraged to log in; however, it's not mandatory. [o]" accesskey="o">Log in</a></li> </ul>
</div>
<div id="left-navigation">
<div id="p-namespaces" role="navigation" class="vectorTabs" aria-labelledby="p-namespaces-label">
<h3 id="p-namespaces-label">Namespaces</h3>
<ul>
<li id="ca-nstab-main" class="selected"><span><a href="/wiki/NRG_(file_format)" title="View the content page [c]" accesskey="c">Article</a></span></li>
<li id="ca-talk"><span><a href="/wiki/Talk:NRG_(file_format)" title="Discussion about the content page [t]" accesskey="t">Talk</a></span></li>
</ul>
</div>
<div id="p-variants" role="navigation" class="vectorMenu emptyPortlet" aria-labelledby="p-variants-label">
<h3 id="mw-vector-current-variant">
</h3>
<h3 id="p-variants-label"><span>Variants</span><a href="#"></a></h3>
<div class="menu">
<ul>
</ul>
</div>
</div>
</div>
<div id="right-navigation">
<div id="p-views" role="navigation" class="vectorTabs" aria-labelledby="p-views-label">
<h3 id="p-views-label">Views</h3>
<ul>
<li id="ca-view" class="selected"><span><a href="/wiki/NRG_(file_format)" >Read</a></span></li>
<li id="ca-edit"><span><a href="/w/index.php?title=NRG_(file_format)&action=edit" title="You can edit this page. Please use the preview button before saving [e]" accesskey="e">Edit</a></span></li>
<li id="ca-history" class="collapsible"><span><a href="/w/index.php?title=NRG_(file_format)&action=history" title="Past versions of this page [h]" accesskey="h">View history</a></span></li>
</ul>
</div>
<div id="p-cactions" role="navigation" class="vectorMenu emptyPortlet" aria-labelledby="p-cactions-label">
<h3 id="p-cactions-label"><span>Actions</span><a href="#"></a></h3>
<div class="menu">
<ul>
</ul>
</div>
</div>
<div id="p-search" role="search">
<h3>
<label for="searchInput">Search</label>
</h3>
<form action="/w/index.php" id="searchform">
<div id="simpleSearch">
<input type="search" name="search" placeholder="Search" title="Search Wikipedia [f]" accesskey="f" id="searchInput" /><input type="hidden" value="Special:Search" name="title" /><input type="submit" name="fulltext" value="Search" title="Search Wikipedia for this text" id="mw-searchButton" class="searchButton mw-fallbackSearchButton" /><input type="submit" name="go" value="Go" title="Go to a page with this exact name if one exists" id="searchButton" class="searchButton" /> </div>
</form>
</div>
</div>