-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.js
More file actions
96 lines (90 loc) · 3.65 KB
/
constants.js
File metadata and controls
96 lines (90 loc) · 3.65 KB
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
require('dotenv').config()
const path = require('path');
const fs = require('fs');
const ResourcesPath = './Resources/';;
const InputPath = path.join(ResourcesPath, './SampleFiles/Input/');
const OutputPath = path.join(ResourcesPath, './SampleFiles/Output/');
module.exports = {
resourcesPath: ResourcesPath,
LicensePath: '',
inputPath : InputPath,
outputPath : OutputPath,
InputDocx : InputPath + 'input.docx',
InputPptx : InputPath + 'input.pptx',
InputXlsx : InputPath + 'input.xlsx',
InputVsdx : InputPath + 'input.vsdx',
InputVdx : InputPath + 'input.vdx',
InputPdf : InputPath + 'input.pdf',
InputOne : InputPath + 'input.one',
InputDoc : InputPath + 'input.doc',
InputPpt : InputPath + 'input.ppt',
InputXls : InputPath + 'input.xls',
InputJpeg : InputPath + 'input.jpg',
InputPng : InputPath + 'input.png',
InputGif : InputPath + 'input.gif',
InputMpp : InputPath + 'input.mpp',
InputBmp : InputPath + 'input.bmp',
InputJpeg2000 : InputPath + 'input.jp2',
InputDicom : InputPath + 'input.dicom',
InputAsf : InputPath + 'input.asf',
InputAvi : InputPath + 'input.avi',
InputFlv : InputPath + 'input.flv',
InputMkv : InputPath + 'input.mkv',
InputMov : InputPath + 'input.mov',
InputWav : InputPath + 'input.wav',
InputZip : InputPath + 'input.zip',
InputVcf : InputPath + 'input.vcf',
InputDxf : InputPath + 'input.dxf',
InputEpub : InputPath + 'input.epub',
InputEml : InputPath + 'input.eml',
InputMsg : InputPath + 'input.msg',
InputTtf : InputPath + 'input.ttf',
InputTorrent : InputPath + 'input.torrent',
PngWithXmp : InputPath + 'xmp.png',
GifWithXmp : InputPath + 'xmp.gif',
JpegWithXmp : InputPath + 'xmp.jpg',
TiffWithExif : InputPath + 'exif.tiff',
TiffWithIptc : InputPath + 'iptc.tiff',
JpegWithExif : InputPath + 'exif.jpg',
JpegWithIptc : InputPath + 'iptc.jpg',
PsdWithIptc : InputPath + 'iptc.psd',
PsdWithExif : InputPath + 'exif.psd',
JpegWithIrb : InputPath + 'irb.jpg',
JpegWithBarcodes : InputPath + 'barcode.jpg',
PsdWithIrb : InputPath + 'irb.psd',
ProtectedDocx : InputPath + 'protected.docx',
SignedPdf : InputPath + 'signed.pdf',
MkvWithSubtitles : InputPath + 'subtitles.mkv',
MP3WithID3V1 : InputPath + 'id3v1.mp3',
MP3WithID3V2 : InputPath + 'id3v2.mp3',
MP3WithLyrics : InputPath + 'lyrics.mp3',
MP3WithApe : InputPath + 'ape.mp3',
CanonJpeg : InputPath + 'canon_raw.jpg',
NikonJpeg : InputPath + 'nikon_raw.jpg',
PanasonicJpeg : InputPath + 'panasonic_raw.jpg',
SonyJpeg : InputPath + 'sony_raw.jpg',
OutputDocx : OutputPath + 'output.docx',
OutputPptx : OutputPath + 'output.pptx',
OutputXlsx : OutputPath + 'output.xlsx',
OutputVsdx : OutputPath + 'output.vsdx',
OutputVdx : OutputPath + 'output.vdx',
OutputPdf : OutputPath + 'output.pdf',
OutputOne : OutputPath + 'output.one',
OutputDoc : OutputPath + 'output.doc',
OutputPpt : OutputPath + 'output.ppt',
OutputXls : OutputPath + 'output.xls',
OutputMpp : OutputPath + 'output.mpp',
OutputJpeg : OutputPath + 'output.jpg',
OutputPng : OutputPath + 'output.png',
OutputGif : OutputPath + 'output.gif',
OutputTiff : OutputPath + 'output.tiff',
OutputPsd : OutputPath + 'output.psd',
OutputBmp : OutputPath + 'output.bmp',
OutputMp3 : OutputPath + 'output.mp3',
OutputZip : OutputPath + 'output.zip',
OutputEml : OutputPath + 'output.eml',
OutputTorrent : OutputPath + 'output.torrent',
OutputCsv : OutputPath + 'output.csv',
OutputEpub : OutputPath + 'output.epub',
OutputDxf : OutputPath + 'output.dxf',
}