2511회 채점 완료

This commit is contained in:
2025-11-28 17:22:13 +09:00
parent 05f7f6b569
commit f8e5e15740
61 changed files with 10357 additions and 225 deletions

BIN
00_DIC_2511B_TEST.xlsx Normal file

Binary file not shown.

192
00_gmep_file_copier.py Normal file
View File

@@ -0,0 +1,192 @@
import os
import shutil
from pathlib import Path
from typing import List, Tuple
class GMEPFileCopier:
"""답안 폴더 내부에서 .gmep 파일을 찾아 상위 폴더로 복사"""
"""
멀티미디어제작(곰픽)_004995-최정원\dpi_03-004995-최정원\dpi_03-004995-최정원.gmep 경로의 파일을
멀티미디어제작(곰픽)_004995-최정원\dpi_03-004995-최정원.gmep 경로로 복사
채점은 답안 폴더만 진행하므로 하위 폴더에 저장된 .gmep 파일을 상위 폴더로 복사하는 스크립트
"""
def __init__(self, base_path: str):
self.base_path = Path(base_path)
self.copied_files = []
self.errors = []
def find_and_copy_gmep_files(self) -> Tuple[int, int]:
"""
.gmep 파일을 찾아서 상위 폴더로 복사
Returns:
(성공 개수, 실패 개수)
"""
if not self.base_path.exists():
print(f"❌ 경로가 존재하지 않습니다: {self.base_path}")
return 0, 0
print(f"📁 검색 시작: {self.base_path}")
print("=" * 70)
# 각 학생 폴더 순회
for student_folder in self.base_path.iterdir():
if not student_folder.is_dir():
continue
print(f"\n🔍 검색 중: {student_folder.name}")
self._process_student_folder(student_folder)
# 결과 출력
self._print_summary()
return len(self.copied_files), len(self.errors)
def _process_student_folder(self, student_folder: Path):
"""학생 폴더의 하위 1단계 폴더만 검색"""
# 하위 1단계 폴더들만 검색
for subfolder in student_folder.iterdir():
if not subfolder.is_dir():
continue
# 해당 폴더에서 .gmep 파일 찾기
gmep_files = list(subfolder.glob("*.gmep"))
if gmep_files:
print(f" 📂 {subfolder.name}")
for gmep_file in gmep_files:
self._copy_file(gmep_file, student_folder)
def _copy_file(self, source: Path, destination_folder: Path):
"""파일 복사 실행"""
try:
destination = destination_folder / source.name
# 이미 같은 이름의 파일이 있는지 확인
if destination.exists():
# 파일명에 번호 추가
counter = 1
stem = source.stem
suffix = source.suffix
while destination.exists():
new_name = f"{stem}_{counter}{suffix}"
destination = destination_folder / new_name
counter += 1
shutil.copy2(source, destination)
self.copied_files.append({
'source': str(source),
'destination': str(destination),
'size': source.stat().st_size
})
print(f"{source.name}{destination_folder.name}/")
except Exception as e:
error_msg = f"파일 복사 실패: {source.name} - {str(e)}"
self.errors.append(error_msg)
print(f"{error_msg}")
def _print_summary(self):
"""작업 결과 요약 출력"""
print("\n" + "=" * 70)
print("📊 작업 완료 요약")
print("=" * 70)
print(f"✅ 복사 성공: {len(self.copied_files)}")
print(f"❌ 복사 실패: {len(self.errors)}")
if self.copied_files:
total_size = sum(f['size'] for f in self.copied_files)
print(f"📦 총 파일 크기: {self._format_size(total_size)}")
print("\n📝 복사된 파일 목록:")
for i, file_info in enumerate(self.copied_files, 1):
print(f" {i}. {Path(file_info['source']).name}")
print(f"{file_info['destination']}")
if self.errors:
print("\n⚠️ 오류 목록:")
for i, error in enumerate(self.errors, 1):
print(f" {i}. {error}")
@staticmethod
def _format_size(size_bytes: int) -> str:
"""바이트를 읽기 쉬운 형식으로 변환"""
for unit in ['B', 'KB', 'MB', 'GB']:
if size_bytes < 1024.0:
return f"{size_bytes:.2f} {unit}"
size_bytes /= 1024.0
return f"{size_bytes:.2f} TB"
def get_report(self) -> str:
"""작업 리포트를 문자열로 반환"""
report_lines = [
"=" * 70,
"GMEP 파일 복사 작업 리포트",
"=" * 70,
f"검색 경로: {self.base_path}",
f"복사 성공: {len(self.copied_files)}",
f"복사 실패: {len(self.errors)}",
""
]
if self.copied_files:
report_lines.append("복사된 파일:")
for file_info in self.copied_files:
report_lines.append(f" - {Path(file_info['source']).name}")
if self.errors:
report_lines.append("\n오류:")
for error in self.errors:
report_lines.append(f" - {error}")
return "\n".join(report_lines)
def main():
"""메인 실행 함수"""
# 기본 경로 설정
base_path = r"D:\project\GOM\DIC\output\2511\B\DPI"
# 사용자에게 경로 확인
print("🔧 GMEP 파일 복사 프로그램")
print("=" * 70)
print(f"검색 경로: {base_path}")
# 경로 변경 옵션
change_path = input("\n경로를 변경하시겠습니까? (y/n): ").strip().lower()
if change_path == 'y':
base_path = input("새 경로를 입력하세요: ").strip()
# 실행 확인
confirm = input("\n작업을 시작하시겠습니까? (y/n): ").strip().lower()
if confirm != 'y':
print("작업이 취소되었습니다.")
return
print("\n")
# 복사 작업 실행
copier = GMEPFileCopier(base_path)
success_count, error_count = copier.find_and_copy_gmep_files()
# 리포트 저장 옵션
if success_count > 0 or error_count > 0:
save_report = input("\n\n작업 리포트를 파일로 저장하시겠습니까? (y/n): ").strip().lower()
if save_report == 'y':
report_path = Path(base_path) / "gmep_copy_report.txt"
try:
report_path.write_text(copier.get_report(), encoding='utf-8')
print(f"✅ 리포트 저장 완료: {report_path}")
except Exception as e:
print(f"❌ 리포트 저장 실패: {e}")
print("\n프로그램을 종료합니다.")
if __name__ == "__main__":
main()

View File

@@ -73,10 +73,10 @@ def copy_exam_files(exam_round, exam_codes, source_dir):
# 사용 예시 # 사용 예시
if __name__ == "__main__": if __name__ == "__main__":
exam_round = "2510" exam_round = "2511"
exam_codes = ["DIC", "DPI"] exam_codes = ["DIC", "DPI"]
# exam_codes = ["DIC"] # exam_codes = ["DIC"]
source_dir = r"D:\project\GOM\DIC\회차별채점자료\2510" source_dir = r"D:\project\data\2511회 정기"
# source_dir = r"D:\project\data\제2522회 특별\(추가)과목별_답안파일" # source_dir = r"D:\project\data\제2522회 특별\(추가)과목별_답안파일"
copy_exam_files(exam_round, exam_codes, source_dir) copy_exam_files(exam_round, exam_codes, source_dir)

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

740
DIC_2511A.json Normal file
View File

@@ -0,0 +1,740 @@
{
"0": {
"1": {
"ele": "none",
"point": 0
},
"2": {
"ele": "none",
"point": 0
},
"3": {
"ele": "none",
"point": 0
},
"4": {
"ele": "none",
"point": 0
},
"5": {
"ele": "none",
"point": 0
},
"6": {
"ele": "none",
"point": 0
},
"7": {
"ele": "none",
"point": 0
},
"8": {
"ele": "$[?(@.width == 65 && @.height == 45)]",
"type": "size",
"value": {
"width": 65,
"height": 45
},
"point": 4
},
"9": {
"ele": "none",
"point": 0,
"desc": "파일명 확인"
}
},
"1": {
"1": {
"ele": "none",
"point": 0
},
"2": {
"ele": "none",
"point": 0
},
"3": {
"ele": "none",
"point": 0
},
"4": {
"ele": "$.children[?(@.name=='놀이공원')].name",
"value": "놀이공원",
"point": 4
},
"5": {
"ele": "none",
"point": 0
},
"6": {
"ele": "$.children[?(@.name=='Amusement Park')].name",
"value": "Amusement Park",
"point": 4
},
"7": {
"ele": "$.children[?(@.name=='Amusement Park')].text.font.names[0]",
"type": "font",
"value": "Arial",
"point": 2
},
"8": {
"ele": "$.children[?(@.name=='Amusement Park')].text.font.names[0]",
"value": "Arial-BoldItalicMT",
"point": 2
},
"9": {
"ele": "$.children[?(@.name=='Amusement Park')].text.font.sizes[0]",
"value": 48,
"point": 2
},
"10": {
"ele": "$.children[?(@.name=='Amusement Park')].text.font.colors[0]",
"type": "color",
"value": "aaaaaa",
"point": 2
},
"11": {
"ele": "none",
"point": 0
},
"12": {
"ele": "none",
"point": 0
},
"13": {
"ele": "none",
"point": 0
},
"14": {
"ele": "$.children[?(@.name=='놀이공원')].name",
"value": "놀이공원",
"point": 4
},
"15": {
"ele": "$.children[?(@.name=='놀이공원')].text.font.names[0]",
"type": "font",
"value": "DotumChe",
"point": 2,
"desc": {
"돋움체": "DotumChe",
"궁서체": "GungsuhChe",
"굴림체": "GulimChe",
"휴먼옛체": "YetR"
}
},
"16": {
"ele": "$.children[?(@.name=='놀이공원')].text.font.sizes[0]",
"value": 36,
"point": 2
},
"17": {
"ele": "$.children[?(@.name=='놀이공원')].text.font.colors[0]",
"type": "color",
"value": "261795",
"point": 2
},
"18": {
"ele": "none",
"point": 0
},
"19": {
"ele": "none",
"point": 0
},
"20": {
"ele": "none",
"point": 0
},
"21": {
"ele": "none",
"point": 0
},
"22": {
"ele": "$.children[?(@.name=='드롭존')].name",
"value": "드롭존",
"point": 4
},
"23": {
"ele": "none",
"point": 0
},
"24": {
"ele": "none",
"point": 0
},
"25": {
"ele": "none",
"point": 0
},
"26": {
"ele": "$[?(@.width == 65 && @.height == 35)]",
"type": "size",
"value": {
"width": 65,
"height": 35
},
"point": 5
},
"27": {
"ele": "none",
"point": 0,
"desc": "파일명 확인"
}
},
"2": {
"1": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[not(@Length<='5' and @ClipLength='-1')]/@ClipIndex",
"type": "mediaOrder",
"value": ["동영상.mp4", "이미지1.jpg", "이미지3.jpg", "이미지2.jpg"],
"point": 4,
"desc": "비디오1 트랙에 있는 클립의 ClipIndex값을 기준으로 CRClipArr에서 Path값을 가져와서 정답 채점, 클립의 ClipIndex값이 -1인 경우와 길이가 5프레임 이하인 경우는 제외한다."
},
"2": {
"ele": "/CROASTERP/CRTrackArr[1]/CRVideoTrackArr[1]/CRTrackList[1]/CRTrackClip[1]/@Speed",
"type": "oneAnswer",
"value": {
"speed": "150"
},
"point": 2,
"desc": "100당 1배속 / 130 = 1.3배속"
},
"3": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']",
"type": "startEnd",
"media": "동영상.mp4",
"value": {
"start": "0",
"end": "230"
},
"point": 2,
"desc": "시작시간과 재생시간 정답값 입력, 3번문항은 '동영상.mp4' 클립의 길이를 확인하는 문항이므로 media는 수정할 필요가 없다."
},
"4": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "effect",
"media": "동영상.mp4",
"value": {
"ID": "43",
"VID100": "5",
"VID103": "0.89999998"
},
"point": 3,
"desc": "value값의 키값(VID___)은 이펙트의 속성종류에 따라 변경되므로 채점기준표작성시 확인 필요"
},
"5": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr/@Name",
"search": "재미있는 놀이공원",
"type": "video.Text",
"value": "재미있는 놀이공원",
"point": 3
},
"6": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID102",
"search": "재미있는 놀이공원",
"type": "video.Text",
"value": "바탕체",
"point": 2
},
"7": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID101",
"search": "재미있는 놀이공원",
"type": "video.Text",
"value": "130",
"point": 2
},
"8": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='4']/@VID100",
"search": "재미있는 놀이공원",
"type": "video.Text.Color",
"value": "281e99",
"point": 2,
"desc": "컬러값은 RGB로 입력한다, [대소문자, #]허용 (#FFFFFF, ffffff 두 값 모두 허용)"
},
"9": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr/@*[name()='VID600' or name()='VID601']",
"search": "재미있는 놀이공원",
"type": "video.Location",
"value": ["0.29166669", "0.91481483"],
"point": 2,
"desc": [
"정답 파일의 자막 좌표를 기준으로 프로그램 내부적으로 0.1까지 오차를 허용한다",
"CRCUnitArr의 VID600이 X좌표, VID601이 Y좌표"
]
},
"10": {
"ele": "",
"search": "재미있는 놀이공원",
"type": "video.StartTime",
"value": 150,
"point": 2,
"desc": "내부적으로 자막의 시작시간과 길이를 계산"
},
"11": {
"ele": "",
"search": "재미있는 놀이공원",
"type": "video.Length",
"value": 120,
"point": 2,
"desc": "내부적으로 자막의 시작시간과 길이를 계산"
},
"12": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Mute",
"type": "Mute",
"media": "동영상.mp4",
"value": "1",
"point": 2
},
"13": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length",
"type": "imageLength",
"media": "이미지1.jpg",
"value": 150,
"point": 2
},
"14": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "imageOverlay",
"media": "이미지1.jpg",
"value": {
"ID": "102",
"VID101": "3"
},
"point": 2,
"desc": "오버레이 속성 키값(VID10X) 확인하고 변경"
},
"15": {
"ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']",
"type": "clipTransition",
"media": "이미지1.jpg",
"value": {
"ID": "11",
"Range": "320:380",
"Type": "2"
},
"point": 2,
"desc": "오버랩일 경우 Type속성값 16으로 변경"
},
"16": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length",
"type": "imageLength",
"media": "이미지3.jpg",
"value": 180,
"point": 2
},
"17": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "imageOverlay",
"media": "이미지3.jpg",
"value": {
"ID": "103",
"VID102": "4"
},
"point": 2,
"desc": "오버레이 속성 키값(VID10X) 확인하고 변경"
},
"18": {
"ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']",
"type": "clipTransition",
"media": "이미지3.jpg",
"value": {
"ID": "8",
"Range": "620:680",
"Type": "2"
},
"point": 2,
"desc": "오버랩일 경우 Type속성값 16으로 변경"
},
"19": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length",
"type": "imageLength",
"media": "이미지2.jpg",
"value": 180,
"point": 2
},
"20": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "imageOverlay",
"media": "이미지2.jpg",
"value": {
"ID": "67",
"VID102": "15"
},
"point": 2,
"desc": "오버레이 속성 키값(VID10X) 확인하고 변경"
},
"21": {
"ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']",
"type": "clipTransition",
"media": "이미지2.jpg",
"value": {
"ID": "19",
"Range": "710:740",
"Type": "2"
},
"point": 2,
"desc": "오버랩일 경우 Type속성값 16으로 변경"
},
"22": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr/@Name",
"search": "자동차 레이싱 코스 (A Car Racing Course)",
"type": "video.Text",
"value": "자동차 레이싱 코스 (A Car Racing Course)",
"point": 3
},
"23": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID102",
"search": "자동차 레이싱 코스 (A Car Racing Course)",
"type": "video.Text",
"value": "돋움체",
"point": 2
},
"24": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID101",
"search": "자동차 레이싱 코스 (A Car Racing Course)",
"type": "video.Text",
"value": "150",
"point": 2
},
"25": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='4']/@VID100",
"search": "자동차 레이싱 코스 (A Car Racing Course)",
"type": "video.Text.Color",
"value": "d25e85",
"point": 2,
"desc": "컬러값은 RGB로 입력한다, [대소문자, #]허용 (#FFFFFF, ffffff 두 값 모두 허용)"
},
"26": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='2']",
"search": "자동차 레이싱 코스 (A Car Racing Course)",
"type": "video.Text.Outline",
"value": {
"width": "35",
"color": "000000"
},
"point": 2,
"desc": "두께는 XML에서는 소수점으로 표기되지만, 프로그램 내부적으로 변환하여 사용하므로 현재 파일에서는 정수로 작성"
},
"27": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr",
"search": "자동차 레이싱 코스 (A Car Racing Course)",
"type": "opening.Text.FadeInEffect",
"value": {
"VID505": "1",
"VID507": "2"
},
"point": 3,
"desc": "오프닝자막의 나타나기 효과를 확인하는 문항. id속성은 VID505, playtime속성은 VID507으로 XML 내부에 표기되어 있다."
},
"28": {
"ele": "",
"search": "자동차 레이싱 코스 (A Car Racing Course)",
"type": "opening.StartTime",
"value": 0,
"point": 2,
"desc": "오프닝자막의 시작시간 value 속성만 수정"
},
"29": {
"ele": "",
"search": "자동차 레이싱 코스 (A Car Racing Course)",
"type": "opening.Length",
"value": 120,
"point": 2
},
"30": {
"ele": "",
"type": "audio.StartTime",
"media": "음악.mp3",
"value": 0,
"point": 2
},
"31": {
"ele": "//CRTrackList[@Name='오디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']",
"type": "audio.EndTime",
"media": "음악.mp3",
"value": 720,
"point": 2
},
"32": {
"ele": "//CRTrackList[@Name='오디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "audio.Effect",
"media": "음악.mp3",
"value": {
"ID": "1",
"Duration": "90"
},
"point": 2,
"desc": "ID속성-페이드인:0 / 페이드아웃: 1"
},
"33": {
"ele": "none",
"point": 0,
"desc": "파일명 확인"
}
},
"4": {
"1": {
"type": "canvas.Size",
"ele": "//Document/Width/@value | //Document/Height/@value",
"value": ["650", "350"],
"point": 5,
"desc": "캔버스 사이즈 650*350"
},
"2": {
"type": "none",
"ele": "",
"point": 5,
"desc": "자유 변형 문항은 채점 불가"
},
"3": {
"type": "layer.exists",
"ele": "//Layer/Name/@value",
"value": "Flower",
"point": 5,
"desc": "Flower 레이어가 있는지 여부 체크"
},
"4": {
"type": "layer.Effects",
"ele": "//Layer[Name[@value='{search}']]/Effects/Item",
"search": "Flower",
"value": {
"name": "생동감",
"option": {
"생동감": "40"
}
},
"point": 5,
"desc": {
"흑백": "강도",
"밝기/대비": ["밝기", "대비"],
"노출": "노출",
"색조/채도": ["색조", "채도", "명도"],
"감마": ["리프트", "감마", "게인"],
"세피아": ["U", "V"],
"생동감": "생동감"
}
},
"5": {
"type": "none",
"ele": "",
"point": 6,
"desc": "올가미 도구/이미지 문항은 채점 불가"
},
"6": {
"type": "exists",
"ele": "//Layer/Effects/Item/Name/@value",
"value": "세피아",
"point": 6,
"desc": "세피아 효과가 있는지 여부 체크"
},
"7": {
"type": "exists",
"ele": "//Layer/Shapes/Shape/shape_type/@value",
"value": "ELLIPSE",
"point": 3,
"desc": "레이어 쉐이프 타입이 타원인지 체크"
},
"8": {
"type": "shape.size",
"ele": "//Layer//op_points",
"value": {
"width": 120,
"height": 120
},
"point": 3,
"desc": "레이어 쉐이프 X, Y 좌표를 가지고 너비, 높이 계산하여 정답 채점"
},
"9": {
"type": "shape.color",
"ele": "//Layer//Shape[contains(draw_type/@value, 'Interior')]/secondary_color/@value",
"value": "7097BB",
"point": 6,
"desc": ""
},
"10": {
"type": "layer.blend.opacity",
"ele": "//Layer",
"value": {
"BlendOp": "반사",
"Opacity": "80"
},
"point": 6
},
"11": {
"type": "none",
"ele": "",
"point": 0,
"desc": "기본설정"
},
"12": {
"type": "none",
"ele": "",
"point": 0,
"desc": "파일명 확인"
}
},
"5": {
"1": {
"type": "canvas.Size",
"ele": "//Document/Width/@value | //Document/Height/@value",
"value": ["650", "450"],
"point": 5,
"desc": "캔버스 사이즈 650*450"
},
"2": {
"type": "none",
"ele": "",
"point": 5,
"desc": "배경색 문항은 채점 불가"
},
"3": {
"type": "exists",
"ele": "//Layer/MaskOpType/@value",
"value": "Layering",
"point": 6,
"desc": "레이어 마스크 설정 확인"
},
"4": {
"type": "none",
"ele": "",
"point": 6,
"desc": "가로방향 흐릿하게 문항은 채점 불가"
},
"5": {
"type": "exists",
"ele": "//Layer//shape_type/@value",
"value": "ROUNDED_RECTANGLE",
"point": 3
},
"6": {
"type": "shape.size",
"ele": "//Layer//op_points",
"value": {
"width": 400,
"height": 60
},
"point": 3,
"desc": "레이어 쉐이프 X, Y 좌표를 가지고 너비, 높이 계산하여 정답 채점"
},
"7": {
"type": "gradient.color",
"ele": "//Layer/Shapes/Shape",
"startColor": "gradient_start_color/@value",
"endColor": "gradient_end_color/@value",
"value": {
"startColor": "ffe000",
"endColor": "34A159"
},
"point": 6
},
"8": {
"type": "text.exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/lines/Item/@value",
"value": "흰 꽃 사이 노란 꽃",
"point": 5
},
"9": {
"type": "exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/font/Name/@value",
"value": "맑은 고딕",
"point": 3
},
"10": {
"type": "exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/font/{style}/@value",
"style": "Italic",
"value": "True",
"point": 3
},
"11": {
"type": "exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/font/Size/@value",
"value": "30",
"point": 3
},
"12": {
"type": "text.color",
"ele": "//Layer//Shape[shape_type/@value='TEXT'][contains(draw_type/@value, 'Interior')]/secondary_color/@value",
"value": "b46Ef8",
"point": 3
},
"13": {
"type": "exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/outline_peninfo/Width/@value",
"value": "7",
"point": 3
},
"14": {
"type": "text.color",
"ele": "//Layer//Shape[shape_type/@value='TEXT'][contains(draw_type/@value, 'Outline')]/primary_color/@value",
"value": "ffffff",
"point": 3
},
"15": {
"type": "exists",
"ele": "//Layer/MaskOpType/@value",
"value": "Clipping",
"point": 6,
"desc": "클리핑 마스크 항목은 별도 레이어로 추가되고 해당 속성을 추가해놓은 레이어가 있는지 여부 체크 함"
},
"16": {
"type": "exists",
"ele": "//Layer/Shapes/Shape/shape_type/@value",
"value": "RECTANGLE",
"point": 3,
"desc": {
"사각형": "RECTANGLE"
}
},
"17": {
"type": "clipping.size",
"ele": "//Layer//Shape[shape_type/@value='{option}']//op_points",
"option": "RECTANGLE",
"value": {
"width": 150,
"height": 150
},
"point": 3,
"desc": "레이어 쉐이프 X, Y 좌표를 가지고 너비, 높이 계산하여 정답 채점"
},
"18": {
"type": "exists",
"ele": "//Layer//Shape[shape_type/@value='{option}']/outline_peninfo/Width/@value",
"option": "RECTANGLE",
"value": "7",
"point": 3
},
"19": {
"type": "clipping.color",
"ele": "//Layer//Shape[shape_type/@value='{option}' and contains(draw_type/@value, 'Outline')]/primary_color/@value",
"option": "RECTANGLE",
"value": "e8e88e",
"point": 3,
"desc": "채우기:secondary_color, 외곽선:primary_color"
},
"20": {
"type": "shadow",
"ele": "//Layer//Shape[shape_type/@value='{option}']",
"option": "RECTANGLE",
"value": {
"shadow": true,
"width": "3",
"distance": "5",
"blur": "1",
"angle": "320"
},
"point": 5,
"desc": "그림자 속성이 있는 경우 그림자 속성의 너비, 거리, 흐림 정도, 각도를 비교하여 정답 채점"
},
"21": {
"type": "none",
"ele": "",
"point": 0,
"desc": "기본설정"
},
"22": {
"type": "none",
"ele": "",
"point": 0,
"desc": "파일명 확인"
}
}
}

753
DIC_2511B.json Normal file
View File

@@ -0,0 +1,753 @@
{
"0": {
"1": {
"ele": "none",
"point": 0
},
"2": {
"ele": "none",
"point": 0
},
"3": {
"ele": "none",
"point": 0
},
"4": {
"ele": "none",
"point": 0
},
"5": {
"ele": "none",
"point": 0
},
"6": {
"ele": "none",
"point": 0
},
"7": {
"ele": "none",
"point": 0
},
"8": {
"ele": "$[?(@.width == 65 && @.height == 45)]",
"type": "size",
"value": {
"width": 65,
"height": 45
},
"point": 4
},
"9": {
"ele": "none",
"point": 0,
"desc": "파일명 확인"
}
},
"1": {
"1": {
"ele": "none",
"point": 0
},
"2": {
"ele": "none",
"point": 0
},
"3": {
"ele": "none",
"point": 0
},
"4": {
"ele": "none",
"point": 0
},
"5": {
"ele": "$.children[?(@.name=='Lets go! Sokcho')].name",
"value": "Lets go! Sokcho",
"point": 4
},
"6": {
"ele": "$.children[?(@.name=='Lets go! Sokcho')].text.font.names[0]",
"type": "font",
"value": "Arial",
"point": 2
},
"7": {
"ele": "$.children[?(@.name=='Lets go! Sokcho')].text.font.names[0]",
"value": "Arial-BoldItalicMT",
"point": 2
},
"8": {
"ele": "$.children[?(@.name=='Lets go! Sokcho')].text.font.sizes[0]",
"value": 48,
"point": 2
},
"9": {
"ele": "$.children[?(@.name=='Lets go! Sokcho')].text.font.colors[0]",
"type": "color",
"value": "000000",
"point": 2
},
"10": {
"ele": "none",
"point": 0
},
"11": {
"ele": "none",
"point": 0
},
"12": {
"ele": "none",
"point": 0
},
"13": {
"ele": "$.children[?(@.name=='관광의 도시 속초로 오세요!')].name",
"value": "관광의 도시 속초로 오세요!",
"point": 4
},
"14": {
"ele": "$.children[?(@.name=='관광의 도시 속초로 오세요!')].text.font.names[0]",
"type": "font",
"value": "Batang",
"point": 2,
"desc": {
"돋움체": "DotumChe",
"궁서체": "GungsuhChe",
"굴림체": "GulimChe",
"바탕체": "BatangChe",
"휴먼옛체": "YetR"
}
},
"15": {
"ele": "$.children[?(@.name=='관광의 도시 속초로 오세요!')].text.font.sizes[0]",
"value": 36,
"point": 2
},
"16": {
"ele": "$.children[?(@.name=='관광의 도시 속초로 오세요!')].text.font.colors[0]",
"type": "color",
"value": "555fe3",
"point": 2
},
"17": {
"ele": "none",
"point": 0
},
"18": {
"ele": "none",
"point": 0
},
"19": {
"ele": "none",
"point": 0
},
"20": {
"ele": "none",
"point": 0
},
"21": {
"ele": "none",
"point": 0
},
"22": {
"ele": "none",
"point": 0
},
"23": {
"ele": "none",
"point": 0
},
"24": {
"ele": "none",
"point": 0
},
"25": {
"ele": "none",
"point": 0
},
"26": {
"ele": "none",
"point": 0
},
"27": {
"ele": "$[?(@.width == 65 && @.height == 45)]",
"type": "size",
"value": {
"width": 65,
"height": 45
},
"point": 4
},
"28": {
"ele": "none",
"point": 0,
"desc": "파일명 확인"
}
},
"2": {
"1": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[not(@Length<='5' and @ClipLength='-1')]/@ClipIndex",
"type": "mediaOrder",
"value": ["동영상.mp4", "이미지2.jpg", "이미지1.jpg", "이미지3.jpg"],
"point": 4,
"desc": "비디오1 트랙에 있는 클립의 ClipIndex값을 기준으로 CRClipArr에서 Path값을 가져와서 정답 채점, 클립의 ClipIndex값이 -1인 경우와 길이가 5프레임 이하인 경우는 제외한다."
},
"2": {
"ele": "/CROASTERP/CRTrackArr[1]/CRVideoTrackArr[1]/CRTrackList[1]/CRTrackClip[1]/@Speed",
"type": "oneAnswer",
"value": {
"speed": "150"
},
"point": 2,
"desc": "100당 1배속 / 130 = 1.3배속"
},
"3": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']",
"type": "startEnd",
"media": "동영상.mp4",
"value": {
"start": "0",
"end": "360"
},
"point": 2,
"desc": "시작시간과 재생시간 정답값 입력, 3번문항은 '동영상.mp4' 클립의 길이를 확인하는 문항이므로 media는 수정할 필요가 없다."
},
"4": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "effect",
"media": "동영상.mp4",
"value": {
"ID": "44",
"VID100": "10",
"VID103": "0.69999999"
},
"point": 3,
"desc": "value값의 키값(VID___)은 이펙트의 속성종류에 따라 변경되므로 채점기준표작성시 확인 필요"
},
"5": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr/@Name",
"search": "속초로 놀러오세요~",
"type": "video.Text",
"value": "속초로 놀러오세요~",
"point": 3
},
"6": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID102",
"search": "속초로 놀러오세요~",
"type": "video.Text",
"value": "바탕",
"point": 2
},
"7": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID101",
"search": "속초로 놀러오세요~",
"type": "video.Text",
"value": "115",
"point": 2
},
"8": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='4']/@VID100",
"search": "속초로 놀러오세요~",
"type": "video.Text.Color",
"value": "edff09",
"point": 2,
"desc": "컬러값은 RGB로 입력한다, [대소문자, #]허용 (#FFFFFF, ffffff 두 값 모두 허용)"
},
"9": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr/@*[name()='VID600' or name()='VID601']",
"search": "속초로 놀러오세요~",
"type": "video.Location",
"value": ["0.24062499", "0.9222222"],
"point": 2,
"desc": "정답 파일의 자막 좌표를 기준으로 프로그램 내부적으로 0.1까지 오차를 허용한다"
},
"10": {
"ele": "",
"search": "속초로 놀러오세요~",
"type": "video.StartTime",
"value": 150,
"point": 2,
"desc": "내부적으로 자막의 시작시간과 길이를 계산"
},
"11": {
"ele": "",
"search": "속초로 놀러오세요~",
"type": "video.Length",
"value": 150,
"point": 2,
"desc": "내부적으로 자막의 시작시간과 길이를 계산"
},
"12": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Mute",
"type": "Mute",
"media": "동영상.mp4",
"value": "1",
"point": 2
},
"13": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length",
"type": "imageLength",
"media": "이미지2.jpg",
"value": 180,
"point": 2
},
"14": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "imageOverlay",
"media": "이미지2.jpg",
"value": {
"ID": "67",
"VID103": "7"
},
"point": 2,
"desc": "오버레이 속성 키값(VID10X) 확인하고 변경"
},
"15": {
"ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']",
"type": "clipTransition",
"media": "이미지2.jpg",
"value": {
"ID": "0",
"Range": "480:540",
"Type": "2"
},
"point": 2,
"desc": "오버랩일 경우 Type속성값 16으로 변경"
},
"16": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length",
"type": "imageLength",
"media": "이미지1.jpg",
"value": 180,
"point": 2
},
"17": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "imageOverlay",
"media": "이미지1.jpg",
"value": {
"ID": "103",
"VID102": "10"
},
"point": 2,
"desc": "오버레이 속성 키값(VID10X) 확인하고 변경"
},
"18": {
"ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']",
"type": "clipTransition",
"media": "이미지1.jpg",
"value": {
"ID": "21",
"Range": "690:720",
"Type": "2"
},
"point": 2,
"desc": "오버랩일 경우 Type속성값 16으로 변경"
},
"19": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length",
"type": "imageLength",
"media": "이미지3.jpg",
"value": 180,
"point": 2
},
"20": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "imageOverlay",
"media": "이미지3.jpg",
"value": {
"ID": "99",
"VID100": "100"
},
"point": 2,
"desc": "오버레이 속성 키값(VID10X) 확인하고 변경"
},
"21": {
"ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']",
"type": "clipTransition",
"media": "이미지3.jpg",
"value": {
"ID": "19",
"Range": "840:900",
"Type": "2"
},
"point": 2,
"desc": "오버랩일 경우 Type속성값 16으로 변경"
},
"22": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr/@Name",
"search": "관광도시 속초 Sokcho, a tourist city",
"type": "video.Text",
"value": "관광도시 속초 Sokcho, a tourist city",
"point": 3
},
"23": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID102",
"search": "관광도시 속초 Sokcho, a tourist city",
"type": "video.Text",
"value": "궁서체",
"point": 2
},
"24": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID101",
"search": "관광도시 속초 Sokcho, a tourist city",
"type": "video.Text",
"value": "120",
"point": 2
},
"25": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='4']/@VID100",
"search": "관광도시 속초 Sokcho, a tourist city",
"type": "video.Text.Color",
"value": "f60724",
"point": 2,
"desc": "컬러값은 RGB로 입력한다, [대소문자, #]허용 (#FFFFFF, ffffff 두 값 모두 허용)"
},
"26": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='2']",
"search": "관광도시 속초 Sokcho, a tourist city",
"type": "video.Text.Outline",
"value": {
"width": "20",
"color": "ffffff"
},
"point": 2,
"desc": "두께는 XML에서는 소수점으로 표기되지만, 프로그램 내부적으로 변환하여 사용하므로 현재 파일에서는 정수로 작성"
},
"27": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr",
"search": "관광도시 속초 Sokcho, a tourist city",
"type": "opening.Text.FadeInEffect",
"value": {
"VID505": "1",
"VID507": "2"
},
"point": 3,
"desc": "오프닝자막의 나타나기 효과를 확인하는 문항. id속성은 VID505, playtime속성은 VID507으로 XML 내부에 표기되어 있다."
},
"28": {
"ele": "",
"search": "관광도시 속초 Sokcho, a tourist city",
"type": "opening.StartTime",
"value": 0,
"point": 2,
"desc": "오프닝자막의 시작시간 value 속성만 수정"
},
"29": {
"ele": "",
"search": "관광도시 속초 Sokcho, a tourist city",
"type": "opening.Length",
"value": 120,
"point": 2
},
"30": {
"ele": "",
"type": "audio.StartTime",
"media": "음악.mp3",
"value": 0,
"point": 2
},
"31": {
"ele": "//CRTrackList[@Name='오디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']",
"type": "audio.EndTime",
"media": "음악.mp3",
"value": 870,
"point": 2
},
"32": {
"ele": "//CRTrackList[@Name='오디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "audio.Effect",
"media": "음악.mp3",
"value": {
"ID": "1",
"Duration": "90"
},
"point": 2,
"desc": "ID속성-페이드인:0 / 페이드아웃: 1"
},
"33": {
"ele": "none",
"point": 0,
"desc": "파일명 확인"
}
},
"4": {
"1": {
"type": "canvas.Size",
"ele": "//Document/Width/@value | //Document/Height/@value",
"value": ["650", "350"],
"point": 5,
"desc": "캔버스 사이즈 650*350"
},
"2": {
"type": "none",
"ele": "",
"point": 5,
"desc": "자유 변형 문항은 채점 불가"
},
"3": {
"type": "layer.exists",
"ele": "//Layer/Name/@value",
"value": "Valley",
"point": 5,
"desc": "Valley 레이어가 있는지 여부 체크"
},
"4": {
"type": "layer.Effects",
"ele": "//Layer/Effects/Item",
"ele_temp": "//Layer[Name[@value='{search}']]/Effects/Item",
"search": "Valley",
"value": {
"name": "선명하게",
"option": {
"양": "7"
}
},
"point": 5,
"desc": {
"흑백": "강도",
"밝기/대비": ["밝기", "대비"],
"노출": "노출",
"색조/채도": ["색조", "채도", "명도"],
"감마": ["리프트", "감마", "게인"],
"세피아": ["U", "V"],
"생동감": "생동감",
"흐리게": "반경",
"글로우": ["반경", "밝기", "대비"],
"픽셀효과": "셀크기",
"선명하게": "양"
}
},
"5": {
"type": "none",
"ele": "",
"point": 6,
"desc": "올가미 도구/이미지 문항은 채점 불가"
},
"6": {
"type": "exists",
"ele": "//Layer/Effects/Item/Name/@value",
"value": "세피아",
"point": 6,
"desc": "세피아 효과가 있는지 여부 체크"
},
"7": {
"type": "exists",
"ele": "//Layer/Shapes/Shape/shape_type/@value",
"value": "RECTANGLE",
"point": 3,
"desc": {
"모서리가 둥근 사각형": "ROUNDED_RECTANGLE",
"사각형": "RECTANGLE",
"타원": "ELLIPSE"
}
},
"8": {
"type": "shape.size",
"ele": "//Layer//op_points",
"value": {
"width": 335,
"height": 35
},
"point": 3,
"desc": "레이어 쉐이프 X, Y 좌표를 가지고 너비, 높이 계산하여 정답 채점"
},
"9": {
"type": "shape.color",
"ele": "//Layer//Shape[contains(draw_type/@value, 'Interior')]/secondary_color/@value",
"value": "46A64A",
"point": 6,
"desc": ""
},
"10": {
"type": "layer.blend.opacity",
"ele": "//Layer",
"value": {
"BlendOp": "중첩",
"Opacity": "80"
},
"point": 6
},
"11": {
"type": "none",
"ele": "",
"point": 0,
"desc": "기본설정"
},
"12": {
"type": "none",
"ele": "",
"point": 0,
"desc": "파일명 확인"
}
},
"5": {
"1": {
"type": "canvas.Size",
"ele": "//Document/Width/@value | //Document/Height/@value",
"value": ["650", "450"],
"point": 5,
"desc": "캔버스 사이즈 650*450"
},
"2": {
"type": "none",
"ele": "",
"point": 5,
"desc": "배경색 문항은 채점 불가"
},
"3": {
"type": "exists",
"ele": "//Layer/MaskOpType/@value",
"value": "Layering",
"point": 6,
"desc": "레이어 마스크 설정 확인"
},
"4": {
"type": "none",
"ele": "",
"point": 6,
"desc": "가로방향 흐릿하게 문항은 채점 불가"
},
"5": {
"type": "exists",
"ele": "//Layer//shape_type/@value",
"value": "ROUNDED_RECTANGLE",
"point": 3,
"desc": "모서리가 둥근 사각형 : ROUNDED_RECTANGLE / 사각형 : RECTANGLE"
},
"6": {
"type": "shape.size",
"ele": "//Layer//op_points",
"value": {
"width": 400,
"height": 50
},
"point": 3,
"desc": "레이어 쉐이프 X, Y 좌표를 가지고 너비, 높이 계산하여 정답 채점"
},
"7": {
"type": "gradient.color",
"ele": "//Layer/Shapes/Shape",
"startColor": "gradient_start_color/@value",
"endColor": "gradient_end_color/@value",
"value": {
"startColor": "3CB241",
"endColor": "931FAD"
},
"point": 6
},
"8": {
"type": "text.exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/lines/Item/@value",
"value": "도깨비골 스카이밸리",
"point": 5
},
"9": {
"type": "exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/font/Name/@value",
"value": "돋움",
"point": 3
},
"10": {
"type": "exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/font/{style}/@value",
"style": "Italic",
"value": "True",
"point": 3
},
"11": {
"type": "exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/font/Size/@value",
"value": "24",
"point": 3
},
"12": {
"type": "text.color",
"ele": "//Layer//Shape[shape_type/@value='TEXT'][contains(draw_type/@value, 'Interior')]/secondary_color/@value",
"value": "AA2318",
"point": 3
},
"13": {
"type": "exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/outline_peninfo/Width/@value",
"value": "5",
"point": 3
},
"14": {
"type": "text.color",
"ele": "//Layer//Shape[shape_type/@value='TEXT'][contains(draw_type/@value, 'Outline')]/primary_color/@value",
"value": "FFFFFF",
"point": 3
},
"15": {
"type": "exists",
"ele": "//Layer/MaskOpType/@value",
"value": "Clipping",
"point": 6,
"desc": "클리핑 마스크 항목은 별도 레이어로 추가되고 해당 속성을 추가해놓은 레이어가 있는지 여부 체크 함"
},
"16": {
"type": "exists",
"ele": "//Layer/Shapes/Shape/shape_type/@value",
"value": "ELLIPSE",
"point": 3,
"desc": {
"사각형": "RECTANGLE",
"원형/타원형": "ELLIPSE",
"17~20 문항 option값 변경": ""
}
},
"17": {
"type": "clipping.size",
"ele": "//Layer//Shape[shape_type/@value='{option}']//op_points",
"option": "ELLIPSE",
"value": {
"width": 170,
"height": 170
},
"point": 3,
"desc": "레이어 쉐이프 X, Y 좌표를 가지고 너비, 높이 계산하여 정답 채점"
},
"18": {
"type": "exists",
"ele": "//Layer//Shape[shape_type/@value='{option}']/outline_peninfo/Width/@value",
"option": "ELLIPSE",
"value": "3",
"point": 3
},
"19": {
"type": "clipping.color",
"ele": "//Layer//Shape[shape_type/@value='{option}' and contains(draw_type/@value, 'Outline')]/primary_color/@value",
"option": "ELLIPSE",
"value": "4B7E5C",
"point": 3,
"desc": "채우기:secondary_color, 외곽선:primary_color"
},
"20": {
"type": "shadow",
"ele": "//Layer//Shape[shape_type/@value='{option}']",
"option": "ELLIPSE",
"value": {
"shadow": true,
"width": "5",
"distance": "2",
"blur": "1",
"angle": "320"
},
"point": 5,
"desc": "그림자 속성이 있는 경우 그림자 속성의 너비, 거리, 흐림 정도, 각도를 비교하여 정답 채점"
},
"21": {
"type": "none",
"ele": "",
"point": 0,
"desc": "기본설정"
},
"22": {
"type": "none",
"ele": "",
"point": 0,
"desc": "파일명 확인"
}
}
}

740
DIC_2511C.json Normal file
View File

@@ -0,0 +1,740 @@
{
"0": {
"1": {
"ele": "none",
"point": 0
},
"2": {
"ele": "none",
"point": 0
},
"3": {
"ele": "none",
"point": 0
},
"4": {
"ele": "none",
"point": 0
},
"5": {
"ele": "none",
"point": 0
},
"6": {
"ele": "none",
"point": 0
},
"7": {
"ele": "none",
"point": 0
},
"8": {
"ele": "$[?(@.width == 65 && @.height == 45)]",
"type": "size",
"value": {
"width": 65,
"height": 45
},
"point": 4
},
"9": {
"ele": "none",
"point": 0,
"desc": "파일명 확인"
}
},
"1": {
"1": {
"ele": "none",
"point": 0
},
"2": {
"ele": "none",
"point": 0
},
"3": {
"ele": "none",
"point": 0
},
"4": {
"ele": "$.children[?(@.name=='놀이터')].name",
"value": "놀이터",
"point": 4
},
"5": {
"ele": "none",
"point": 0
},
"6": {
"ele": "$.children[?(@.name=='Wooden Playground')].name",
"value": "Wooden Playground",
"point": 4
},
"7": {
"ele": "$.children[?(@.name=='Wooden Playground')].text.font.names[0]",
"type": "font",
"value": "Arial",
"point": 2
},
"8": {
"ele": "$.children[?(@.name=='Wooden Playground')].text.font.names[0]",
"value": "Arial-BoldItalicMT",
"point": 2
},
"9": {
"ele": "$.children[?(@.name=='Wooden Playground')].text.font.sizes[0]",
"value": 48,
"point": 2
},
"10": {
"ele": "$.children[?(@.name=='Wooden Playground')].text.font.colors[0]",
"type": "color",
"value": "801717",
"point": 2
},
"11": {
"ele": "none",
"point": 0
},
"12": {
"ele": "none",
"point": 0
},
"13": {
"ele": "none",
"point": 0
},
"14": {
"ele": "$.children[?(@.name=='나무 놀이터')].name",
"value": "나무 놀이터",
"point": 4
},
"15": {
"ele": "$.children[?(@.name=='나무 놀이터')].text.font.names[0]",
"type": "font",
"value": "GungsuhChe",
"point": 2,
"desc": {
"돋움체": "DotumChe",
"궁서체": "GungsuhChe",
"굴림체": "GulimChe",
"휴먼옛체": "YetR"
}
},
"16": {
"ele": "$.children[?(@.name=='나무 놀이터')].text.font.sizes[0]",
"value": 36,
"point": 2
},
"17": {
"ele": "$.children[?(@.name=='나무 놀이터')].text.font.colors[0]",
"type": "color",
"value": "0e4510",
"point": 2
},
"18": {
"ele": "none",
"point": 0
},
"19": {
"ele": "none",
"point": 0
},
"20": {
"ele": "none",
"point": 0
},
"21": {
"ele": "none",
"point": 0
},
"22": {
"ele": "$.children[?(@.name=='은행잎')].name",
"value": "은행잎",
"point": 4
},
"23": {
"ele": "none",
"point": 0
},
"24": {
"ele": "none",
"point": 0
},
"25": {
"ele": "none",
"point": 0
},
"26": {
"ele": "$[?(@.width == 65 && @.height == 35)]",
"type": "size",
"value": {
"width": 65,
"height": 35
},
"point": 5
},
"27": {
"ele": "none",
"point": 0,
"desc": "파일명 확인"
}
},
"2": {
"1": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[not(@Length<='5' and @ClipLength='-1')]/@ClipIndex",
"type": "mediaOrder",
"value": ["동영상.mp4", "이미지1.jpg", "이미지3.jpg", "이미지2.jpg"],
"point": 4,
"desc": "비디오1 트랙에 있는 클립의 ClipIndex값을 기준으로 CRClipArr에서 Path값을 가져와서 정답 채점, 클립의 ClipIndex값이 -1인 경우와 길이가 5프레임 이하인 경우는 제외한다."
},
"2": {
"ele": "/CROASTERP/CRTrackArr[1]/CRVideoTrackArr[1]/CRTrackList[1]/CRTrackClip[1]/@Speed",
"type": "oneAnswer",
"value": {
"speed": "150"
},
"point": 2,
"desc": "100당 1배속 / 130 = 1.3배속"
},
"3": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']",
"type": "startEnd",
"media": "동영상.mp4",
"value": {
"start": "0",
"end": "380"
},
"point": 2,
"desc": "시작시간과 재생시간 정답값 입력, 3번문항은 '동영상.mp4' 클립의 길이를 확인하는 문항이므로 media는 수정할 필요가 없다."
},
"4": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "effect",
"media": "동영상.mp4",
"value": {
"ID": "52",
"VID100": "30",
"VID103": "0.80000001"
},
"point": 3,
"desc": "value값의 키값(VID___)은 이펙트의 속성종류에 따라 변경되므로 채점기준표작성시 확인 필요"
},
"5": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr/@Name",
"search": "자연 놀이터",
"type": "video.Text",
"value": "자연 놀이터",
"point": 3
},
"6": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID102",
"search": "자연 놀이터",
"type": "video.Text",
"value": "굴림체",
"point": 2
},
"7": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID101",
"search": "자연 놀이터",
"type": "video.Text",
"value": "100",
"point": 2
},
"8": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='4']/@VID100",
"search": "자연 놀이터",
"type": "video.Text.Color",
"value": "8dff00",
"point": 2,
"desc": "컬러값은 RGB로 입력한다, [대소문자, #]허용 (#FFFFFF, ffffff 두 값 모두 허용)"
},
"9": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr/@*[name()='VID600' or name()='VID601']",
"search": "자연 놀이터",
"type": "video.Location",
"value": ["0.39375001", "0.93333334"],
"point": 2,
"desc": [
"정답 파일의 자막 좌표를 기준으로 프로그램 내부적으로 0.1까지 오차를 허용한다",
"CRCUnitArr의 VID600이 X좌표, VID601이 Y좌표"
]
},
"10": {
"ele": "",
"search": "자연 놀이터",
"type": "video.StartTime",
"value": 170,
"point": 2,
"desc": "내부적으로 자막의 시작시간과 길이를 계산"
},
"11": {
"ele": "",
"search": "자연 놀이터",
"type": "video.Length",
"value": 120,
"point": 2,
"desc": "내부적으로 자막의 시작시간과 길이를 계산"
},
"12": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Mute",
"type": "Mute",
"media": "동영상.mp4",
"value": "1",
"point": 2
},
"13": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length",
"type": "imageLength",
"media": "이미지1.jpg",
"value": 150,
"point": 2
},
"14": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "imageOverlay",
"media": "이미지1.jpg",
"value": {
"ID": "125",
"VID100": "40"
},
"point": 2,
"desc": "오버레이 속성 키값(VID10X) 확인하고 변경"
},
"15": {
"ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']",
"type": "clipTransition",
"media": "이미지1.jpg",
"value": {
"ID": "55",
"Range": "470:530",
"Type": "2"
},
"point": 2,
"desc": "오버랩일 경우 Type속성값 16으로 변경"
},
"16": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length",
"type": "imageLength",
"media": "이미지3.jpg",
"value": 180,
"point": 2
},
"17": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "imageOverlay",
"media": "이미지3.jpg",
"value": {
"ID": "128",
"VID100": "10"
},
"point": 2,
"desc": "오버레이 속성 키값(VID10X) 확인하고 변경"
},
"18": {
"ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']",
"type": "clipTransition",
"media": "이미지3.jpg",
"value": {
"ID": "93",
"Range": "680:740",
"Type": "16"
},
"point": 2,
"desc": "오버랩일 경우 Type속성값 16으로 변경"
},
"19": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length",
"type": "imageLength",
"media": "이미지2.jpg",
"value": 180,
"point": 2
},
"20": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "imageOverlay",
"media": "이미지2.jpg",
"value": {
"ID": "104",
"VID102": "8"
},
"point": 2,
"desc": "오버레이 속성 키값(VID10X) 확인하고 변경"
},
"21": {
"ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']",
"type": "clipTransition",
"media": "이미지2.jpg",
"value": {
"ID": "25",
"Range": "860:890",
"Type": "2"
},
"point": 2,
"desc": "오버랩일 경우 Type속성값 16으로 변경"
},
"22": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr/@Name",
"search": "자연 속 놀이터 Nature playground",
"type": "video.Text",
"value": "자연 속 놀이터 Nature playground",
"point": 3
},
"23": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID102",
"search": "자연 속 놀이터 Nature playground",
"type": "video.Text",
"value": "바탕체",
"point": 2
},
"24": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID101",
"search": "자연 속 놀이터 Nature playground",
"type": "video.Text",
"value": "150",
"point": 2
},
"25": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='4']/@VID100",
"search": "자연 속 놀이터 Nature playground",
"type": "video.Text.Color",
"value": "aff32a",
"point": 2,
"desc": "컬러값은 RGB로 입력한다, [대소문자, #]허용 (#FFFFFF, ffffff 두 값 모두 허용)"
},
"26": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='2']",
"search": "자연 속 놀이터 Nature playground",
"type": "video.Text.Outline",
"value": {
"width": "20",
"color": "9e0a71"
},
"point": 2,
"desc": "두께는 XML에서는 소수점으로 표기되지만, 프로그램 내부적으로 변환하여 사용하므로 현재 파일에서는 정수로 작성"
},
"27": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr",
"search": "자연 속 놀이터 Nature playground",
"type": "opening.Text.FadeInEffect",
"value": {
"VID505": "5",
"VID507": "3"
},
"point": 3,
"desc": "오프닝자막의 나타나기 효과를 확인하는 문항. id속성은 VID505, playtime속성은 VID507으로 XML 내부에 표기되어 있다."
},
"28": {
"ele": "",
"search": "기차 여행 Train Travel",
"type": "opening.StartTime",
"value": 0,
"point": 2,
"desc": "오프닝자막의 시작시간 value 속성만 수정"
},
"29": {
"ele": "",
"search": "기차 여행 Train Travel",
"type": "opening.Length",
"value": 120,
"point": 2
},
"30": {
"ele": "",
"type": "audio.StartTime",
"media": "음악.mp3",
"value": 0,
"point": 2
},
"31": {
"ele": "//CRTrackList[@Name='오디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']",
"type": "audio.EndTime",
"media": "음악.mp3",
"value": 750,
"point": 2
},
"32": {
"ele": "//CRTrackList[@Name='오디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "audio.Effect",
"media": "음악.mp3",
"value": {
"ID": "1",
"Duration": "90"
},
"point": 2,
"desc": "ID속성-페이드인:0 / 페이드아웃: 1"
},
"33": {
"ele": "none",
"point": 0,
"desc": "파일명 확인"
}
},
"4": {
"1": {
"type": "canvas.Size",
"ele": "//Document/Width/@value | //Document/Height/@value",
"value": ["650", "350"],
"point": 5,
"desc": "캔버스 사이즈 650*350"
},
"2": {
"type": "none",
"ele": "",
"point": 5,
"desc": "자유 변형 문항은 채점 불가"
},
"3": {
"type": "layer.exists",
"ele": "//Layer/Name/@value",
"value": "Flower",
"point": 5,
"desc": "Flower 레이어가 있는지 여부 체크"
},
"4": {
"type": "layer.Effects",
"ele": "//Layer[Name[@value='{search}']]/Effects/Item",
"search": "Flower",
"value": {
"name": "생동감",
"option": {
"생동감": "40"
}
},
"point": 5,
"desc": {
"흑백": "강도",
"밝기/대비": ["밝기", "대비"],
"노출": "노출",
"색조/채도": ["색조", "채도", "명도"],
"감마": ["리프트", "감마", "게인"],
"세피아": ["U", "V"],
"생동감": "생동감"
}
},
"5": {
"type": "none",
"ele": "",
"point": 6,
"desc": "올가미 도구/이미지 문항은 채점 불가"
},
"6": {
"type": "exists",
"ele": "//Layer/Effects/Item/Name/@value",
"value": "세피아",
"point": 6,
"desc": "세피아 효과가 있는지 여부 체크"
},
"7": {
"type": "exists",
"ele": "//Layer/Shapes/Shape/shape_type/@value",
"value": "ELLIPSE",
"point": 3,
"desc": "레이어 쉐이프 타입이 타원인지 체크"
},
"8": {
"type": "shape.size",
"ele": "//Layer//op_points",
"value": {
"width": 120,
"height": 120
},
"point": 3,
"desc": "레이어 쉐이프 X, Y 좌표를 가지고 너비, 높이 계산하여 정답 채점"
},
"9": {
"type": "shape.color",
"ele": "//Layer//Shape[contains(draw_type/@value, 'Interior')]/secondary_color/@value",
"value": "7097BB",
"point": 6,
"desc": ""
},
"10": {
"type": "layer.blend.opacity",
"ele": "//Layer",
"value": {
"BlendOp": "반사",
"Opacity": "80"
},
"point": 6
},
"11": {
"type": "none",
"ele": "",
"point": 0,
"desc": "기본설정"
},
"12": {
"type": "none",
"ele": "",
"point": 0,
"desc": "파일명 확인"
}
},
"5": {
"1": {
"type": "canvas.Size",
"ele": "//Document/Width/@value | //Document/Height/@value",
"value": ["650", "450"],
"point": 5,
"desc": "캔버스 사이즈 650*450"
},
"2": {
"type": "none",
"ele": "",
"point": 5,
"desc": "배경색 문항은 채점 불가"
},
"3": {
"type": "exists",
"ele": "//Layer/MaskOpType/@value",
"value": "Layering",
"point": 6,
"desc": "레이어 마스크 설정 확인"
},
"4": {
"type": "none",
"ele": "",
"point": 6,
"desc": "가로방향 흐릿하게 문항은 채점 불가"
},
"5": {
"type": "exists",
"ele": "//Layer//shape_type/@value",
"value": "ROUNDED_RECTANGLE",
"point": 3
},
"6": {
"type": "shape.size",
"ele": "//Layer//op_points",
"value": {
"width": 400,
"height": 60
},
"point": 3,
"desc": "레이어 쉐이프 X, Y 좌표를 가지고 너비, 높이 계산하여 정답 채점"
},
"7": {
"type": "gradient.color",
"ele": "//Layer/Shapes/Shape",
"startColor": "gradient_start_color/@value",
"endColor": "gradient_end_color/@value",
"value": {
"startColor": "ffe000",
"endColor": "34A159"
},
"point": 6
},
"8": {
"type": "text.exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/lines/Item/@value",
"value": "흰 꽃 사이 노란 꽃",
"point": 5
},
"9": {
"type": "exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/font/Name/@value",
"value": "맑은 고딕",
"point": 3
},
"10": {
"type": "exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/font/{style}/@value",
"style": "Italic",
"value": "True",
"point": 3
},
"11": {
"type": "exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/font/Size/@value",
"value": "30",
"point": 3
},
"12": {
"type": "text.color",
"ele": "//Layer//Shape[shape_type/@value='TEXT'][contains(draw_type/@value, 'Interior')]/secondary_color/@value",
"value": "b46Ef8",
"point": 3
},
"13": {
"type": "exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/outline_peninfo/Width/@value",
"value": "7",
"point": 3
},
"14": {
"type": "text.color",
"ele": "//Layer//Shape[shape_type/@value='TEXT'][contains(draw_type/@value, 'Outline')]/primary_color/@value",
"value": "ffffff",
"point": 3
},
"15": {
"type": "exists",
"ele": "//Layer/MaskOpType/@value",
"value": "Clipping",
"point": 6,
"desc": "클리핑 마스크 항목은 별도 레이어로 추가되고 해당 속성을 추가해놓은 레이어가 있는지 여부 체크 함"
},
"16": {
"type": "exists",
"ele": "//Layer/Shapes/Shape/shape_type/@value",
"value": "RECTANGLE",
"point": 3,
"desc": {
"사각형": "RECTANGLE"
}
},
"17": {
"type": "clipping.size",
"ele": "//Layer//Shape[shape_type/@value='{option}']//op_points",
"option": "RECTANGLE",
"value": {
"width": 150,
"height": 150
},
"point": 3,
"desc": "레이어 쉐이프 X, Y 좌표를 가지고 너비, 높이 계산하여 정답 채점"
},
"18": {
"type": "exists",
"ele": "//Layer//Shape[shape_type/@value='{option}']/outline_peninfo/Width/@value",
"option": "RECTANGLE",
"value": "7",
"point": 3
},
"19": {
"type": "clipping.color",
"ele": "//Layer//Shape[shape_type/@value='{option}' and contains(draw_type/@value, 'Outline')]/primary_color/@value",
"option": "RECTANGLE",
"value": "e8e88e",
"point": 3,
"desc": "채우기:secondary_color, 외곽선:primary_color"
},
"20": {
"type": "shadow",
"ele": "//Layer//Shape[shape_type/@value='{option}']",
"option": "RECTANGLE",
"value": {
"shadow": true,
"width": "3",
"distance": "5",
"blur": "1",
"angle": "320"
},
"point": 5,
"desc": "그림자 속성이 있는 경우 그림자 속성의 너비, 거리, 흐림 정도, 각도를 비교하여 정답 채점"
},
"21": {
"type": "none",
"ele": "",
"point": 0,
"desc": "기본설정"
},
"22": {
"type": "none",
"ele": "",
"point": 0,
"desc": "파일명 확인"
}
}
}

564
DPI_2511B.json Normal file
View File

@@ -0,0 +1,564 @@
{
"2": {
"1": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[not(@Length<='5' and @ClipLength='-1')]/@ClipIndex",
"type": "mediaOrder",
"value": ["동영상.mp4", "이미지3.jpg", "이미지1.jpg", "이미지2.jpg"],
"point": 4,
"desc": "비디오1 트랙에 있는 클립의 ClipIndex값을 기준으로 CRClipArr에서 Path값을 가져와서 정답 채점, 클립의 ClipIndex값이 -1인 경우와 길이가 5프레임 이하인 경우는 제외한다."
},
"2": {
"ele": "/CROASTERP/CRTrackArr[1]/CRVideoTrackArr[1]/CRTrackList[1]/CRTrackClip[1]/@Speed",
"type": "oneAnswer",
"value": {
"speed": "120"
},
"point": 2,
"desc": "100당 1배속 / 130 = 1.3배속"
},
"3": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']",
"type": "startEnd",
"media": "동영상.mp4",
"value": {
"start": "0",
"end": "350"
},
"point": 2,
"desc": "시작시간과 재생시간 정답값 입력, 3번문항은 '동영상.mp4' 클립의 길이를 확인하는 문항이므로 media는 수정할 필요가 없다."
},
"4": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "effect",
"media": "동영상.mp4",
"value": {
"ID": "43",
"VID100": "10",
"VID103": "1.2"
},
"point": 3,
"desc": "value값의 키값(VID___)은 이펙트의 속성종류에 따라 변경되므로 채점기준표작성시 확인 필요"
},
"5": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr/@Name",
"search": "재미있는 테마공원",
"type": "video.Text",
"value": "재미있는 테마공원",
"point": 3
},
"6": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID102",
"search": "재미있는 테마공원",
"type": "video.Text",
"value": "바탕체",
"point": 2
},
"7": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID101",
"search": "재미있는 테마공원",
"type": "video.Text",
"value": "110",
"point": 2
},
"8": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='4']/@VID100",
"search": "재미있는 테마공원",
"type": "video.Text.Color",
"value": "8c3030",
"point": 2,
"desc": "컬러값은 RGB로 입력한다, [대소문자, #]허용 (#FFFFFF, ffffff 두 값 모두 허용)"
},
"9": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr/@*[name()='VID600' or name()='VID601']",
"search": "재미있는 테마공원",
"type": "video.Location",
"value": ["0.32291669", "0.92962962"],
"point": 2,
"desc": "정답 파일의 자막 좌표를 기준으로 프로그램 내부적으로 0.1까지 오차를 허용한다"
},
"10": {
"ele": "",
"search": "재미있는 테마공원",
"type": "video.StartTime",
"value": 160,
"point": 2,
"desc": "내부적으로 자막의 시작시간과 길이를 계산"
},
"11": {
"ele": "",
"search": "재미있는 테마공원",
"type": "video.Length",
"value": 150,
"point": 2,
"desc": "내부적으로 자막의 시작시간과 길이를 계산"
},
"12": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Mute",
"type": "Mute",
"media": "동영상.mp4",
"value": "1",
"point": 2
},
"13": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length",
"type": "imageLength",
"media": "이미지3.jpg",
"value": 180,
"point": 2
},
"14": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "imageOverlay",
"media": "이미지3.jpg",
"value": {
"ID": "94",
"VID101": "7"
},
"point": 2,
"desc": "오버레이 속성 키값(VID10X) 확인하고 변경"
},
"15": {
"ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']",
"type": "clipTransition",
"media": "이미지3.jpg",
"value": {
"ID": "32",
"Range": "470:530",
"Type": "2"
},
"point": 2,
"desc": "오버랩일 경우 Type속성값 16으로 변경"
},
"16": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length",
"type": "imageLength",
"media": "이미지1.jpg",
"value": 150,
"point": 2
},
"17": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "imageOverlay",
"media": "이미지1.jpg",
"value": {
"ID": "99",
"VID100": "70"
},
"point": 2,
"desc": "오버레이 속성 키값(VID10X) 확인하고 변경"
},
"18": {
"ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']",
"type": "clipTransition",
"media": "이미지1.jpg",
"value": {
"ID": "13",
"Range": "650:680",
"Type": "2"
},
"point": 2,
"desc": "오버랩일 경우 Type속성값 16으로 변경"
},
"19": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length",
"type": "imageLength",
"media": "이미지2.jpg",
"value": 210,
"point": 2
},
"20": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "imageOverlay",
"media": "이미지2.jpg",
"value": {
"ID": "102",
"VID102": "10"
},
"point": 2,
"desc": "오버레이 속성 키값(VID10X) 확인하고 변경"
},
"21": {
"ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']",
"type": "clipTransition",
"media": "이미지2.jpg",
"value": {
"ID": "19",
"Range": "830:890",
"Type": "2"
},
"point": 2,
"desc": "오버랩일 경우 Type속성값 16으로 변경"
},
"22": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr/@Name",
"search": "스카이밸리 도깨비골 (Sky Valley)",
"type": "video.Text",
"value": "스카이밸리 도깨비골 (Sky Valley)",
"point": 3
},
"23": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID102",
"search": "스카이밸리 도깨비골 (Sky Valley)",
"type": "video.Text",
"value": "굴림체",
"point": 2
},
"24": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID101",
"search": "스카이밸리 도깨비골 (Sky Valley)",
"type": "video.Text",
"value": "150",
"point": 2
},
"25": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='4']/@VID100",
"search": "스카이밸리 도깨비골 (Sky Valley)",
"type": "video.Text.Color",
"value": "31b45e",
"point": 2,
"desc": "컬러값은 RGB로 입력한다, [대소문자, #]허용 (#FFFFFF, ffffff 두 값 모두 허용)"
},
"26": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='2']",
"search": "스카이밸리 도깨비골 (Sky Valley)",
"type": "video.Text.Outline",
"value": {
"width": "35",
"color": "ffffff"
},
"point": 2,
"desc": "두께는 XML에서는 소수점으로 표기되지만, 프로그램 내부적으로 변환하여 사용하므로 현재 파일에서는 정수로 작성"
},
"27": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr",
"search": "스카이밸리 도깨비골 (Sky Valley)",
"type": "opening.Text.FadeInEffect",
"value": {
"VID505": "3",
"VID507": "2"
},
"point": 3,
"desc": "오프닝자막의 나타나기 효과를 확인하는 문항. id속성은 VID505, playtime속성은 VID507으로 XML 내부에 표기되어 있다."
},
"28": {
"ele": "",
"search": "스카이밸리 도깨비골 (Sky Valley)",
"type": "opening.StartTime",
"value": 0,
"point": 2,
"desc": "오프닝자막의 시작시간 value 속성만 수정"
},
"29": {
"ele": "",
"search": "스카이밸리 도깨비골 (Sky Valley)",
"type": "opening.Length",
"value": 120,
"point": 2
},
"30": {
"ele": "",
"type": "audio.StartTime",
"media": "음악.mp3",
"value": 0,
"point": 2
},
"31": {
"ele": "//CRTrackList[@Name='오디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']",
"type": "audio.EndTime",
"media": "음악.mp3",
"value": 870,
"point": 2
},
"32": {
"ele": "//CRTrackList[@Name='오디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "audio.Effect",
"media": "음악.mp3",
"value": {
"ID": "1",
"Duration": "90"
},
"point": 2,
"desc": "ID속성-페이드인:0 / 페이드아웃: 1"
},
"33": {
"ele": "none",
"point": 0,
"desc": "파일명 확인"
}
},
"4": {
"1": {
"type": "canvas.Size",
"ele": "//Document/Width/@value | //Document/Height/@value",
"value": ["650", "350"],
"point": 5,
"desc": "캔버스 사이즈 650*350"
},
"2": {
"type": "none",
"ele": "",
"point": 5,
"desc": "자유 변형 문항은 채점 불가"
},
"3": {
"type": "layer.exists",
"ele": "//Layer/Name/@value",
"value": "Valley",
"point": 5,
"desc": "Valley 레이어가 있는지 여부 체크"
},
"4": {
"type": "layer.Effects",
"ele": "//Layer[Name[@value='{search}']]/Effects/Item",
"search": "Valley",
"value": {
"name": "선명하게",
"option": {
"양": "7"
}
},
"point": 5,
"desc": {
"흑백": "강도",
"밝기/대비": ["밝기", "대비"],
"노출": "노출",
"색조/채도": ["색조", "채도", "명도"],
"감마": ["어두운 영역", "미드톤", "밝은 영역"],
"세피아": ["U", "V"],
"생동감": "생동감"
}
},
"5": {
"type": "none",
"ele": "",
"point": 6,
"desc": "올가미 도구/이미지 문항은 채점 불가"
},
"6": {
"type": "exists",
"ele": "//Layer/Effects/Item/Name/@value",
"value": "세피아",
"point": 6,
"desc": "세피아 효과가 있는지 여부 체크"
},
"7": {
"type": "exists",
"ele": "//Layer/Shapes/Shape/shape_type/@value",
"value": "RECTANGLE",
"point": 3,
"desc": "레이어 쉐이프 타입이 사각형 체크"
},
"8": {
"type": "shape.size",
"ele": "//Layer//op_points",
"value": {
"width": 335,
"height": 35
},
"point": 3,
"desc": "레이어 쉐이프 X, Y 좌표를 가지고 너비, 높이 계산하여 정답 채점"
},
"9": {
"type": "shape.color",
"ele": "//Layer//Shape[contains(draw_type/@value, 'Interior')]/secondary_color/@value",
"value": "46A64A",
"point": 6,
"desc": ""
},
"10": {
"type": "layer.blend.opacity",
"ele": "//Layer",
"value": {
"BlendOp": "중첩",
"Opacity": "80"
},
"point": 6
},
"11": {
"type": "none",
"ele": "",
"point": 0,
"desc": "기본설정"
},
"12": {
"type": "none",
"ele": "",
"point": 0,
"desc": "파일명 확인"
}
},
"5": {
"1": {
"type": "canvas.Size",
"ele": "//Document/Width/@value | //Document/Height/@value",
"value": ["650", "450"],
"point": 5,
"desc": "캔버스 사이즈 650*450"
},
"2": {
"type": "none",
"ele": "",
"point": 5,
"desc": "배경색 문항은 채점 불가"
},
"3": {
"type": "exists",
"ele": "//Layer/MaskOpType/@value",
"value": "Layering",
"point": 6,
"desc": "레이어 마스크 설정 확인"
},
"4": {
"type": "none",
"ele": "",
"point": 6,
"desc": "가로방향 흐릿하게 문항은 채점 불가"
},
"5": {
"type": "exists",
"ele": "//Layer//shape_type/@value",
"value": "ROUNDED_RECTANGLE",
"point": 3,
"desc": {
"사각형": "RECTANGLE",
"모서리가 둥근 사각형": "ROUNDED_RECTANGLE",
"원형/타원형": "ELLIPSE"
}
},
"6": {
"type": "shape.size",
"ele": "//Layer//op_points",
"value": {
"width": 400,
"height": 50
},
"point": 3,
"desc": "레이어 쉐이프 X, Y 좌표를 가지고 너비, 높이 계산하여 정답 채점"
},
"7": {
"type": "gradient.color",
"ele": "//Layer/Shapes/Shape",
"startColor": "gradient_start_color/@value",
"endColor": "gradient_end_color/@value",
"value": {
"startColor": "3CB241",
"endColor": "931FAD"
},
"point": 6
},
"8": {
"type": "text.exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/lines/Item/@value",
"value": "도깨비골 스카이밸리",
"point": 5
},
"9": {
"type": "exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/font/Name/@value",
"value": "돋움",
"point": 3
},
"10": {
"type": "exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/font/{style}/@value",
"style": "Italic",
"value": "True",
"point": 3
},
"11": {
"type": "exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/font/Size/@value",
"value": "24",
"point": 3
},
"12": {
"type": "text.color",
"ele": "//Layer//Shape[shape_type/@value='TEXT'][contains(draw_type/@value, 'Interior')]/secondary_color/@value",
"value": "AA2318",
"point": 3
},
"13": {
"type": "exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/outline_peninfo/Width/@value",
"value": "5",
"point": 3
},
"14": {
"type": "text.color",
"ele": "//Layer//Shape[shape_type/@value='TEXT'][contains(draw_type/@value, 'Outline')]/primary_color/@value",
"value": "FFFFFF",
"point": 3
},
"15": {
"type": "clippingMask.exists",
"ele": "//Layer/MaskOpType/@value",
"value": "Clipping",
"point": 6,
"desc": "클리핑 마스크 항목은 별도 레이어로 추가되고 해당 속성을 추가해놓은 레이어가 있는지 여부 체크 함"
},
"16": {
"type": "exists",
"ele": "//Layer/Shapes/Shape/shape_type/@value",
"value": "ELLIPSE",
"point": 3,
"desc": {
"사각형": "RECTANGLE",
"모서리가 둥근 사각형": "ROUNDED_RECTANGLE",
"원형/타원형": "ELLIPSE"
},
"desc2": "16번 문항의 value값을 17~20번 문항의 option값으로 사용"
},
"17": {
"type": "clipping.size",
"ele": "//Layer//Shape[shape_type/@value='{option}']//op_points",
"option": "ELLIPSE",
"value": {
"width": 170,
"height": 170
},
"point": 3,
"desc": "레이어 쉐이프 X, Y 좌표를 가지고 너비, 높이 계산하여 정답 채점"
},
"18": {
"type": "exists",
"ele": "//Layer//Shape[shape_type/@value='{option}']/outline_peninfo/Width/@value",
"option": "ELLIPSE",
"value": "3",
"point": 3
},
"19": {
"type": "clipping.color",
"ele": "//Layer//Shape[shape_type/@value='{option}' and contains(draw_type/@value, 'Outline')]/primary_color/@value",
"option": "ELLIPSE",
"value": "4B7E5C",
"point": 3,
"desc": "채우기:secondary_color, 외곽선:primary_color"
},
"20": {
"type": "shadow",
"ele": "//Layer//Shape[shape_type/@value='{option}']",
"option": "ELLIPSE",
"value": {
"shadow": true,
"width": "5",
"distance": "2",
"blur": "1",
"angle": "320"
},
"point": 5,
"desc": "그림자 속성이 있는 경우 그림자 속성의 너비, 거리, 흐림 정도, 각도를 비교하여 정답 채점"
},
"21": {
"type": "none",
"ele": "",
"point": 0,
"desc": "기본설정"
},
"22": {
"type": "none",
"ele": "",
"point": 0,
"desc": "파일명 확인"
}
}
}

View File

@@ -11,17 +11,17 @@ const getGpdpScore = require('./gpdpScoring.js');
const getToday = require('./getToday.js'); const getToday = require('./getToday.js');
const todayDate = getToday(); const todayDate = getToday();
const examRound = '2510'; const examRound = '2511';
const codeTypes = [ const codeTypes = [
// 'DIC', 'DIC',
'DPI', 'DPI',
]; ];
const examTypes = [ const examTypes = [
// 'A', 'A',
// 'B', 'B',
'C', // 'C',
// 'D' // 'D'
]; ];
@@ -33,7 +33,7 @@ const outputExcelFiles = [];
codeTypes.forEach(codeType => { codeTypes.forEach(codeType => {
examTypes.forEach(type => { examTypes.forEach(type => {
const jsonPath = `./${codeType}_${examRound}${type}.json` const jsonPath = `./${codeType}_${examRound}${type}.json`
if (!fs.existsSync(jsonPath)) return; if (!fs.existsSync(jsonPath)) return
const scoringJson = require(jsonPath); const scoringJson = require(jsonPath);
const answerFilesDir = `./output/${examRound}/${type}/${testMode ? 'TEST' : codeType}`; const answerFilesDir = `./output/${examRound}/${type}/${testMode ? 'TEST' : codeType}`;
let outputExcelFile = `./${todayDate}_${codeType}_${examRound}${type}_채점결과.xlsx`; let outputExcelFile = `./${todayDate}_${codeType}_${examRound}${type}_채점결과.xlsx`;

Binary file not shown.

After

Width:  |  Height:  |  Size: 345 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 KiB

View File

@@ -0,0 +1,124 @@
<?xml version="1.0" encoding="UTF-8"?>
<CROASTERP Version="1, 0, 0, 4" BM="1" RatioX="0.45287639" RatioY="0.5243665" Fps="30" Resolution="960:540" ForDIAT="1" Relative="1">
<CRClipArr Count="5">
<CRClip Type="3" Path="동영상.mp4"/>
<CRClip Type="4" Sample="0" Path="음악.mp3"/>
<CRClip Type="2" Path="이미지1.jpg" ClipLength="120"/>
<CRClip Type="2" Path="이미지2.jpg" ClipLength="120"/>
<CRClip Type="2" Path="이미지3.jpg" ClipLength="120"/>
</CRClipArr>
<CROwneUnitArr Count="2">
<CROwneUnit Type="12">
<CRCUnitArr Name="재미있는 놀이공원" ClipLength="120" KindID="1" Type="7" VID505="0" VID506="1" VID508="1" VID507="1" VID509="0" VID510="1" VID512="1" VID511="1" VID502="0" VID503="100" VID600="0.29166669" VID601="0.91481483">
<GPObjectArr Count="1">
<GPObject Type="1">
<GPObjectAtt Type="1" VID100="1">
<GPUnitAttArr Count="4">
<GCUnitPool Type="4" Count="1">
<GCUnit Type="4" VID0="1" SubType="1" VID100="-6742488"/>
</GCUnitPool>
<GCUnitPool Type="1" Count="1">
<GCUnit Type="1" VID0="1" VID100="2" VID101="130" VID102="바탕체"/>
</GCUnitPool>
<GCUnitPool Type="2" Count="1">
<GCUnit Type="2" VID0="0" SubType="1" VID100="0.30000001" VID101="-16777216"/>
</GCUnitPool>
<GCUnitPool Type="5" Count="1">
<GCUnit Type="5" VID0="0" VID100="0.30000001" VID101="-16777216" VID102="9"/>
</GCUnitPool>
</GPUnitAttArr>
<GCUnitArr Count="1">
<GCUnit GPCUType="5" Type="4" VID0="0" SubType="1" VID100="-16777216"/>
</GCUnitArr>
</GPObjectAtt>
<GPStrLineArr Count="1">
<GPStrLine Count="1">
<GPString VID7="재미있는 놀이공원" VID1="0" VID2="0" VID4="0" VID6="0"/>
</GPStrLine>
</GPStrLineArr>
</GPObject>
</GPObjectArr>
</CRCUnitArr>
</CROwneUnit>
<CROwneUnit Type="12">
<CRCUnitArr Name="자동차 레이싱 코스 (A Car Racing Course)" ClipLength="120" KindID="1" Type="7" VID505="1" VID506="1" VID508="1" VID507="2" VID509="0" VID510="1" VID512="1" VID511="1" VID502="0" VID503="100" VID600="0.19791666" VID601="0.77777779">
<GPObjectArr Count="1">
<GPObject Type="1">
<GPObjectAtt Type="1" VID100="1">
<GPUnitAttArr Count="4">
<GCUnitPool Type="4" Count="1">
<GCUnit Type="4" VID0="1" SubType="1" VID100="-8036654"/>
</GCUnitPool>
<GCUnitPool Type="1" Count="1">
<GCUnit Type="1" VID0="1" VID100="2" VID101="150" VID102="돋움체"/>
</GCUnitPool>
<GCUnitPool Type="2" Count="1">
<GCUnit Type="2" VID0="1" SubType="1" VID100="0.34999999" VID101="-16777216"/>
</GCUnitPool>
<GCUnitPool Type="5" Count="1">
<GCUnit Type="5" VID0="0" VID100="0.30000001" VID101="-16777216" VID102="9"/>
</GCUnitPool>
</GPUnitAttArr>
<GCUnitArr Count="1">
<GCUnit GPCUType="5" Type="4" VID0="0" SubType="1" VID100="-16777216"/>
</GCUnitArr>
</GPObjectAtt>
<GPStrLineArr Count="2">
<GPStrLine Count="1">
<GPString VID7="자동차 레이싱 코스" VID1="0" VID2="0" VID4="0" VID6="0"/>
</GPStrLine>
<GPStrLine Count="1">
<GPString VID7="(A Car Racing Course)" VID1="0" VID2="0" VID4="0" VID6="0"/>
</GPStrLine>
</GPStrLineArr>
</GPObject>
</GPObjectArr>
</CRCUnitArr>
</CROwneUnit>
</CROwneUnitArr>
<CRTrackArr Snap="1" Zoom="25" Length="9000">
<CRVideoTrackArr Count="2">
<CRTrackList Name="비디오1" State="40" Count="4">
<CRTrackClip Type="1" ClipIndex="0" Pos="0" Length="230" ClipLength="-1" Speed="150" Level="0" Mute="1">
<CRFilterArr Count="1">
<CRFilter Type="1" ID="43" VID100="5" VID101="3" VID102="2" VID103="0.89999998"/>
</CRFilterArr>
</CRTrackClip>
<CRTrackClip Type="2" ClipIndex="2" Pos="0" Length="150" ClipLength="150" Speed="-1" Level="0" Mute="0">
<CRFilterArr Count="1">
<CRFilter Type="1" ID="102" VID100="2" VID101="3" VID102="5" VID103="5" VID104="5" VID105="5"/>
</CRFilterArr>
</CRTrackClip>
<CRTrackClip Type="2" ClipIndex="4" Pos="0" Length="180" ClipLength="180" Speed="-1" Level="0" Mute="0">
<CRFilterArr Count="1">
<CRFilter Type="1" ID="103" VID100="100" VID101="10" VID102="4" VID103="10" VID104="16777215"/>
</CRFilterArr>
</CRTrackClip>
<CRTrackClip Type="2" ClipIndex="3" Pos="0" Length="180" ClipLength="180" Speed="-1" Level="0" Mute="0">
<CRFilterArr Count="1">
<CRFilter Type="1" ID="67" VID100="4" VID101="4" VID102="15" VID103="5" VID104="2" VID105="8" VID106="30"/>
</CRFilterArr>
</CRTrackClip>
</CRTrackList>
<CRTrackTransEFList Count="3">
<CRTransFilter ID="11" Range="320:380" ClipIndex="1" Type="2"/>
<CRTransFilter ID="8" Range="500:560" ClipIndex="2" Type="2"/>
<CRTransFilter ID="19" Range="710:740" ClipIndex="3" Type="2"/>
</CRTrackTransEFList>
<CRTrackList Name="텍스트" State="32" Count="3">
<CRTrackClip Type="3" ClipIndex="1" Pos="0" Length="120" ClipLength="120" Speed="-1" Level="0" Mute="0"/>
<CRTrackClip Type="0" ClipIndex="-1" Pos="120" Length="30" ClipLength="-1" Speed="-1" Level="0" Mute="0"/>
<CRTrackClip Type="3" ClipIndex="0" Pos="0" Length="120" ClipLength="120" Speed="-1" Level="0" Mute="0"/>
</CRTrackList>
</CRVideoTrackArr>
<CRAudioTrackArr Count="1">
<CRTrackList Name="오디오1" State="45" Count="1">
<CRTrackClip Type="0" ClipIndex="1" Pos="0" Length="720" ClipLength="-1" Speed="-1" Level="0" Mute="0">
<CRFilterArr Count="1">
<CRFilter Type="2" ID="1" VID8="90"/>
</CRFilterArr>
</CRTrackClip>
</CRTrackList>
</CRAudioTrackArr>
</CRTrackArr>
</CROASTERP>

Binary file not shown.

After

Width:  |  Height:  |  Size: 249 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 170 KiB

View File

@@ -0,0 +1,124 @@
<?xml version="1.0" encoding="UTF-8"?>
<CROASTERP Version="1, 0, 0, 4" BM="1" RatioX="0.45287639" RatioY="0.5" Fps="30" Resolution="960:540" ForDIAT="1" Relative="1">
<CRClipArr Count="5">
<CRClip Type="3" Path="동영상.mp4"/>
<CRClip Type="4" Sample="0" Path="음악.mp3"/>
<CRClip Type="2" Path="이미지1.jpg" ClipLength="120"/>
<CRClip Type="2" Path="이미지2.jpg" ClipLength="120"/>
<CRClip Type="2" Path="이미지3.jpg" ClipLength="120"/>
</CRClipArr>
<CROwneUnitArr Count="2">
<CROwneUnit Type="12">
<CRCUnitArr Name="속초로 놀러오세요~" ClipLength="150" KindID="1" Type="7" VID505="0" VID506="1" VID508="1" VID507="1" VID509="0" VID510="1" VID512="1" VID511="1" VID502="0" VID503="100" VID600="0.30208331" VID601="0.92592591">
<GPObjectArr Count="1">
<GPObject Type="1">
<GPObjectAtt Type="1" VID100="1">
<GPUnitAttArr Count="4">
<GCUnitPool Type="4" Count="1">
<GCUnit Type="4" VID0="1" SubType="1" VID100="-16121875"/>
</GCUnitPool>
<GCUnitPool Type="1" Count="1">
<GCUnit Type="1" VID0="1" VID100="2" VID101="115" VID102="바탕"/>
</GCUnitPool>
<GCUnitPool Type="2" Count="1">
<GCUnit Type="2" VID0="0" SubType="1" VID100="0.30000001" VID101="-16777216"/>
</GCUnitPool>
<GCUnitPool Type="5" Count="1">
<GCUnit Type="5" VID0="0" VID100="0.30000001" VID101="-16777216" VID102="9"/>
</GCUnitPool>
</GPUnitAttArr>
<GCUnitArr Count="1">
<GCUnit GPCUType="5" Type="4" VID0="0" SubType="1" VID100="-16777216"/>
</GCUnitArr>
</GPObjectAtt>
<GPStrLineArr Count="1">
<GPStrLine Count="1">
<GPString VID7="속초로 놀러오세요~" VID1="0" VID2="0" VID4="0" VID6="0"/>
</GPStrLine>
</GPStrLineArr>
</GPObject>
</GPObjectArr>
</CRCUnitArr>
</CROwneUnit>
<CROwneUnit Type="12">
<CRCUnitArr Name="관광도시 속초 Sokcho, a tourist city" ClipLength="120" KindID="1" Type="7" VID505="1" VID506="1" VID508="1" VID507="2" VID509="0" VID510="1" VID512="1" VID511="1" VID502="0" VID503="100" VID600="0.24583334" VID601="0.79814816">
<GPObjectArr Count="1">
<GPObject Type="1">
<GPObjectAtt Type="1" VID100="1">
<GPUnitAttArr Count="4">
<GCUnitPool Type="4" Count="1">
<GCUnit Type="4" VID0="1" SubType="1" VID100="-14415882"/>
</GCUnitPool>
<GCUnitPool Type="1" Count="1">
<GCUnit Type="1" VID0="1" VID100="2" VID101="120" VID102="궁서체"/>
</GCUnitPool>
<GCUnitPool Type="2" Count="1">
<GCUnit Type="2" VID0="1" SubType="1" VID100="0.2" VID101="-1"/>
</GCUnitPool>
<GCUnitPool Type="5" Count="1">
<GCUnit Type="5" VID0="0" VID100="0.30000001" VID101="-16777216" VID102="9"/>
</GCUnitPool>
</GPUnitAttArr>
<GCUnitArr Count="1">
<GCUnit GPCUType="5" Type="4" VID0="0" SubType="1" VID100="-16777216"/>
</GCUnitArr>
</GPObjectAtt>
<GPStrLineArr Count="2">
<GPStrLine Count="1">
<GPString VID7="관광도시 속초" VID1="0" VID2="0" VID4="0" VID6="0"/>
</GPStrLine>
<GPStrLine Count="1">
<GPString VID7="Sokcho, a tourist city" VID1="0" VID2="0" VID4="0" VID6="0"/>
</GPStrLine>
</GPStrLineArr>
</GPObject>
</GPObjectArr>
</CRCUnitArr>
</CROwneUnit>
</CROwneUnitArr>
<CRTrackArr Snap="1" Zoom="20" Length="9000">
<CRVideoTrackArr Count="2">
<CRTrackList Name="비디오1" State="40" Count="4">
<CRTrackClip Type="1" ClipIndex="0" Pos="0" Length="360" ClipLength="-1" Speed="150" Level="0" Mute="1">
<CRFilterArr Count="1">
<CRFilter Type="1" ID="44" VID100="10" VID101="4" VID102="1" VID103="0.69999999"/>
</CRFilterArr>
</CRTrackClip>
<CRTrackClip Type="2" ClipIndex="3" Pos="0" Length="180" ClipLength="180" Speed="-1" Level="0" Mute="0">
<CRFilterArr Count="1">
<CRFilter Type="1" ID="67" VID100="4" VID101="4" VID102="20" VID103="7" VID104="2" VID105="8" VID106="30"/>
</CRFilterArr>
</CRTrackClip>
<CRTrackClip Type="2" ClipIndex="2" Pos="0" Length="180" ClipLength="180" Speed="-1" Level="0" Mute="0">
<CRFilterArr Count="1">
<CRFilter Type="1" ID="103" VID100="100" VID101="10" VID102="10" VID103="10" VID104="16777215"/>
</CRFilterArr>
</CRTrackClip>
<CRTrackClip Type="2" ClipIndex="4" Pos="0" Length="180" ClipLength="180" Speed="-1" Level="0" Mute="0">
<CRFilterArr Count="1">
<CRFilter Type="1" ID="99" VID100="100" VID101="75" VID102="500" VID103="500" VID104="1" VID105="0" VID106="3682854"/>
</CRFilterArr>
</CRTrackClip>
</CRTrackList>
<CRTrackTransEFList Count="3">
<CRTransFilter ID="0" Range="480:540" ClipIndex="1" Type="2"/>
<CRTransFilter ID="21" Range="690:720" ClipIndex="2" Type="2"/>
<CRTransFilter ID="19" Range="840:900" ClipIndex="3" Type="2"/>
</CRTrackTransEFList>
<CRTrackList Name="텍스트" State="32" Count="3">
<CRTrackClip Type="3" ClipIndex="1" Pos="0" Length="120" ClipLength="120" Speed="-1" Level="0" Mute="0"/>
<CRTrackClip Type="0" ClipIndex="-1" Pos="0" Length="30" ClipLength="-1" Speed="-1" Level="0" Mute="0"/>
<CRTrackClip Type="3" ClipIndex="0" Pos="0" Length="150" ClipLength="150" Speed="-1" Level="0" Mute="0"/>
</CRTrackList>
</CRVideoTrackArr>
<CRAudioTrackArr Count="1">
<CRTrackList Name="오디오1" State="45" Count="1">
<CRTrackClip Type="0" ClipIndex="1" Pos="0" Length="870" ClipLength="-1" Speed="-1" Level="-10" Mute="0">
<CRFilterArr Count="1">
<CRFilter Type="2" ID="1" VID8="90"/>
</CRFilterArr>
</CRTrackClip>
</CRTrackList>
</CRAudioTrackArr>
</CRTrackArr>
</CROASTERP>

Binary file not shown.

After

Width:  |  Height:  |  Size: 215 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 KiB

View File

@@ -0,0 +1,124 @@
<?xml version="1.0" encoding="UTF-8"?>
<CROASTERP Version="1, 0, 0, 4" BM="1" RatioX="0.45287639" RatioY="0.50097466" Fps="30" Resolution="960:540" ForDIAT="1" Relative="1">
<CRClipArr Count="5">
<CRClip Type="3" Path="동영상.mp4"/>
<CRClip Type="4" Sample="0" Path="음악.mp3"/>
<CRClip Type="2" Path="이미지1.jpg" ClipLength="120"/>
<CRClip Type="2" Path="이미지2.jpg" ClipLength="120"/>
<CRClip Type="2" Path="이미지3.jpg" ClipLength="120"/>
</CRClipArr>
<CROwneUnitArr Count="2">
<CROwneUnit Type="12">
<CRCUnitArr Name="자연 놀이터" ClipLength="120" KindID="1" Type="7" VID505="0" VID506="1" VID508="1" VID507="1" VID509="0" VID510="1" VID512="1" VID511="1" VID502="0" VID503="100" VID600="0.39375001" VID601="0.93333334">
<GPObjectArr Count="1">
<GPObject Type="1">
<GPObjectAtt Type="1" VID100="1">
<GPUnitAttArr Count="4">
<GCUnitPool Type="4" Count="1">
<GCUnit Type="4" VID0="1" SubType="1" VID100="-16711795"/>
</GCUnitPool>
<GCUnitPool Type="1" Count="1">
<GCUnit Type="1" VID0="1" VID100="2" VID101="100" VID102="굴림체"/>
</GCUnitPool>
<GCUnitPool Type="2" Count="1">
<GCUnit Type="2" VID0="0" SubType="1" VID100="0.30000001" VID101="-16777216"/>
</GCUnitPool>
<GCUnitPool Type="5" Count="1">
<GCUnit Type="5" VID0="0" VID100="0.30000001" VID101="-16777216" VID102="9"/>
</GCUnitPool>
</GPUnitAttArr>
<GCUnitArr Count="1">
<GCUnit GPCUType="5" Type="4" VID0="0" SubType="1" VID100="-16777216"/>
</GCUnitArr>
</GPObjectAtt>
<GPStrLineArr Count="1">
<GPStrLine Count="1">
<GPString VID7="자연 놀이터" VID1="0" VID2="0" VID4="0" VID6="0"/>
</GPStrLine>
</GPStrLineArr>
</GPObject>
</GPObjectArr>
</CRCUnitArr>
</CROwneUnit>
<CROwneUnit Type="12">
<CRCUnitArr Name="자연 속 놀이터 Nature playground" ClipLength="120" KindID="1" Type="7" VID505="5" VID506="1" VID508="1" VID507="3" VID509="0" VID510="1" VID512="1" VID511="1" VID502="0" VID503="100" VID600="0.25416666" VID601="0.77777779">
<GPObjectArr Count="1">
<GPObject Type="1">
<GPObjectAtt Type="1" VID100="1">
<GPUnitAttArr Count="4">
<GCUnitPool Type="4" Count="1">
<GCUnit Type="4" VID0="1" SubType="1" VID100="-13962321"/>
</GCUnitPool>
<GCUnitPool Type="1" Count="1">
<GCUnit Type="1" VID0="1" VID100="2" VID101="150" VID102="바탕체"/>
</GCUnitPool>
<GCUnitPool Type="2" Count="1">
<GCUnit Type="2" VID0="1" SubType="1" VID100="0.2" VID101="-9368930"/>
</GCUnitPool>
<GCUnitPool Type="5" Count="1">
<GCUnit Type="5" VID0="0" VID100="0.30000001" VID101="-16777216" VID102="9"/>
</GCUnitPool>
</GPUnitAttArr>
<GCUnitArr Count="1">
<GCUnit GPCUType="5" Type="4" VID0="0" SubType="1" VID100="-16777216"/>
</GCUnitArr>
</GPObjectAtt>
<GPStrLineArr Count="2">
<GPStrLine Count="1">
<GPString VID7="자연 속 놀이터" VID1="0" VID2="0" VID4="0" VID6="0"/>
</GPStrLine>
<GPStrLine Count="1">
<GPString VID7="Nature playground" VID1="0" VID2="0" VID4="0" VID6="0"/>
</GPStrLine>
</GPStrLineArr>
</GPObject>
</GPObjectArr>
</CRCUnitArr>
</CROwneUnit>
</CROwneUnitArr>
<CRTrackArr Snap="1" Zoom="24" Length="9000">
<CRVideoTrackArr Count="2">
<CRTrackList Name="비디오1" State="40" Count="4">
<CRTrackClip Type="1" ClipIndex="0" Pos="0" Length="380" ClipLength="-1" Speed="150" Level="0" Mute="1">
<CRFilterArr Count="1">
<CRFilter Type="1" ID="52" VID100="30" VID101="12" VID102="5" VID103="0.80000001"/>
</CRFilterArr>
</CRTrackClip>
<CRTrackClip Type="2" ClipIndex="2" Pos="0" Length="150" ClipLength="150" Speed="-1" Level="0" Mute="0">
<CRFilterArr Count="1">
<CRFilter Type="1" ID="125" VID100="40" VID101="5" VID102="3927039" VID103="16711680" VID104="4462591"/>
</CRFilterArr>
</CRTrackClip>
<CRTrackClip Type="2" ClipIndex="4" Pos="0" Length="180" ClipLength="180" Speed="-1" Level="0" Mute="0">
<CRFilterArr Count="1">
<CRFilter Type="1" ID="128" VID100="10" VID101="5" VID102="16777215"/>
</CRFilterArr>
</CRTrackClip>
<CRTrackClip Type="2" ClipIndex="3" Pos="0" Length="180" ClipLength="180" Speed="-1" Level="0" Mute="0">
<CRFilterArr Count="1">
<CRFilter Type="1" ID="104" VID100="10" VID101="5" VID102="8" VID103="0"/>
</CRFilterArr>
</CRTrackClip>
</CRTrackList>
<CRTrackTransEFList Count="3">
<CRTransFilter ID="55" Range="470:530" ClipIndex="1" Type="2"/>
<CRTransFilter ID="93" Range="680:740" ClipIndex="3" Type="16"/>
<CRTransFilter ID="25" Range="860:890" ClipIndex="3" Type="2"/>
</CRTrackTransEFList>
<CRTrackList Name="텍스트" State="32" Count="3">
<CRTrackClip Type="3" ClipIndex="1" Pos="0" Length="120" ClipLength="120" Speed="-1" Level="0" Mute="0"/>
<CRTrackClip Type="0" ClipIndex="-1" Pos="120" Length="50" ClipLength="-1" Speed="-1" Level="0" Mute="0"/>
<CRTrackClip Type="3" ClipIndex="0" Pos="0" Length="120" ClipLength="120" Speed="-1" Level="0" Mute="0"/>
</CRTrackList>
</CRVideoTrackArr>
<CRAudioTrackArr Count="1">
<CRTrackList Name="오디오1" State="45" Count="1">
<CRTrackClip Type="0" ClipIndex="1" Pos="0" Length="750" ClipLength="-1" Speed="-1" Level="0" Mute="0">
<CRFilterArr Count="1">
<CRFilter Type="2" ID="1" VID8="90"/>
</CRFilterArr>
</CRTrackClip>
</CRTrackList>
</CRAudioTrackArr>
</CRTrackArr>
</CROASTERP>

View File

@@ -0,0 +1,740 @@
{
"0": {
"1": {
"ele": "none",
"point": 0
},
"2": {
"ele": "none",
"point": 0
},
"3": {
"ele": "none",
"point": 0
},
"4": {
"ele": "none",
"point": 0
},
"5": {
"ele": "none",
"point": 0
},
"6": {
"ele": "none",
"point": 0
},
"7": {
"ele": "none",
"point": 0
},
"8": {
"ele": "$[?(@.width == 65 && @.height == 45)]",
"type": "size",
"value": {
"width": 65,
"height": 45
},
"point": 4
},
"9": {
"ele": "none",
"point": 0,
"desc": "파일명 확인"
}
},
"1": {
"1": {
"ele": "none",
"point": 0
},
"2": {
"ele": "none",
"point": 0
},
"3": {
"ele": "none",
"point": 0
},
"4": {
"ele": "$.children[?(@.name=='놀이공원')].name",
"value": "놀이공원",
"point": 4
},
"5": {
"ele": "none",
"point": 0
},
"6": {
"ele": "$.children[?(@.name=='Amusement Park')].name",
"value": "Amusement Park",
"point": 4
},
"7": {
"ele": "$.children[?(@.name=='Amusement Park')].text.font.names[0]",
"type": "font",
"value": "Arial",
"point": 2
},
"8": {
"ele": "$.children[?(@.name=='Amusement Park')].text.font.names[0]",
"value": "Arial-BoldItalicMT",
"point": 2
},
"9": {
"ele": "$.children[?(@.name=='Amusement Park')].text.font.sizes[0]",
"value": 48,
"point": 2
},
"10": {
"ele": "$.children[?(@.name=='Amusement Park')].text.font.colors[0]",
"type": "color",
"value": "aaaaaa",
"point": 2
},
"11": {
"ele": "none",
"point": 0
},
"12": {
"ele": "none",
"point": 0
},
"13": {
"ele": "none",
"point": 0
},
"14": {
"ele": "$.children[?(@.name=='놀이공원')].name",
"value": "놀이공원",
"point": 4
},
"15": {
"ele": "$.children[?(@.name=='놀이공원')].text.font.names[0]",
"type": "font",
"value": "DotumChe",
"point": 2,
"desc": {
"돋움체": "DotumChe",
"궁서체": "GungsuhChe",
"굴림체": "GulimChe",
"휴먼옛체": "YetR"
}
},
"16": {
"ele": "$.children[?(@.name=='놀이공원')].text.font.sizes[0]",
"value": 36,
"point": 2
},
"17": {
"ele": "$.children[?(@.name=='놀이공원')].text.font.colors[0]",
"type": "color",
"value": "261795",
"point": 2
},
"18": {
"ele": "none",
"point": 0
},
"19": {
"ele": "none",
"point": 0
},
"20": {
"ele": "none",
"point": 0
},
"21": {
"ele": "none",
"point": 0
},
"22": {
"ele": "$.children[?(@.name=='드롭존')].name",
"value": "드롭존",
"point": 4
},
"23": {
"ele": "none",
"point": 0
},
"24": {
"ele": "none",
"point": 0
},
"25": {
"ele": "none",
"point": 0
},
"26": {
"ele": "$[?(@.width == 65 && @.height == 35)]",
"type": "size",
"value": {
"width": 65,
"height": 35
},
"point": 5
},
"27": {
"ele": "none",
"point": 0,
"desc": "파일명 확인"
}
},
"2": {
"1": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[not(@Length<='5' and @ClipLength='-1')]/@ClipIndex",
"type": "mediaOrder",
"value": ["동영상.mp4", "이미지1.jpg", "이미지3.jpg", "이미지2.jpg"],
"point": 4,
"desc": "비디오1 트랙에 있는 클립의 ClipIndex값을 기준으로 CRClipArr에서 Path값을 가져와서 정답 채점, 클립의 ClipIndex값이 -1인 경우와 길이가 5프레임 이하인 경우는 제외한다."
},
"2": {
"ele": "/CROASTERP/CRTrackArr[1]/CRVideoTrackArr[1]/CRTrackList[1]/CRTrackClip[1]/@Speed",
"type": "oneAnswer",
"value": {
"speed": "150"
},
"point": 2,
"desc": "100당 1배속 / 130 = 1.3배속"
},
"3": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']",
"type": "startEnd",
"media": "동영상.mp4",
"value": {
"start": "0",
"end": "230"
},
"point": 2,
"desc": "시작시간과 재생시간 정답값 입력, 3번문항은 '동영상.mp4' 클립의 길이를 확인하는 문항이므로 media는 수정할 필요가 없다."
},
"4": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "effect",
"media": "동영상.mp4",
"value": {
"ID": "43",
"VID100": "5",
"VID103": "0.89999998"
},
"point": 3,
"desc": "value값의 키값(VID___)은 이펙트의 속성종류에 따라 변경되므로 채점기준표작성시 확인 필요"
},
"5": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr/@Name",
"search": "재미있는 놀이공원",
"type": "video.Text",
"value": "재미있는 놀이공원",
"point": 3
},
"6": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID102",
"search": "재미있는 놀이공원",
"type": "video.Text",
"value": "바탕체",
"point": 2
},
"7": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID101",
"search": "재미있는 놀이공원",
"type": "video.Text",
"value": "130",
"point": 2
},
"8": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='4']/@VID100",
"search": "재미있는 놀이공원",
"type": "video.Text.Color",
"value": "281e99",
"point": 2,
"desc": "컬러값은 RGB로 입력한다, [대소문자, #]허용 (#FFFFFF, ffffff 두 값 모두 허용)"
},
"9": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr/@*[name()='VID600' or name()='VID601']",
"search": "재미있는 놀이공원",
"type": "video.Location",
"value": ["0.29166669", "0.91481483"],
"point": 2,
"desc": [
"정답 파일의 자막 좌표를 기준으로 프로그램 내부적으로 0.1까지 오차를 허용한다",
"CRCUnitArr의 VID600이 X좌표, VID601이 Y좌표"
]
},
"10": {
"ele": "",
"search": "재미있는 놀이공원",
"type": "video.StartTime",
"value": 150,
"point": 2,
"desc": "내부적으로 자막의 시작시간과 길이를 계산"
},
"11": {
"ele": "",
"search": "재미있는 놀이공원",
"type": "video.Length",
"value": 120,
"point": 2,
"desc": "내부적으로 자막의 시작시간과 길이를 계산"
},
"12": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Mute",
"type": "Mute",
"media": "동영상.mp4",
"value": "1",
"point": 2
},
"13": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length",
"type": "imageLength",
"media": "이미지1.jpg",
"value": 150,
"point": 2
},
"14": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "imageOverlay",
"media": "이미지1.jpg",
"value": {
"ID": "102",
"VID101": "3"
},
"point": 2,
"desc": "오버레이 속성 키값(VID10X) 확인하고 변경"
},
"15": {
"ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']",
"type": "clipTransition",
"media": "이미지1.jpg",
"value": {
"ID": "11",
"Range": "320:380",
"Type": "2"
},
"point": 2,
"desc": "오버랩일 경우 Type속성값 16으로 변경"
},
"16": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length",
"type": "imageLength",
"media": "이미지3.jpg",
"value": 180,
"point": 2
},
"17": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "imageOverlay",
"media": "이미지3.jpg",
"value": {
"ID": "103",
"VID102": "4"
},
"point": 2,
"desc": "오버레이 속성 키값(VID10X) 확인하고 변경"
},
"18": {
"ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']",
"type": "clipTransition",
"media": "이미지3.jpg",
"value": {
"ID": "8",
"Range": "620:680",
"Type": "2"
},
"point": 2,
"desc": "오버랩일 경우 Type속성값 16으로 변경"
},
"19": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length",
"type": "imageLength",
"media": "이미지2.jpg",
"value": 180,
"point": 2
},
"20": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "imageOverlay",
"media": "이미지2.jpg",
"value": {
"ID": "67",
"VID102": "15"
},
"point": 2,
"desc": "오버레이 속성 키값(VID10X) 확인하고 변경"
},
"21": {
"ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']",
"type": "clipTransition",
"media": "이미지2.jpg",
"value": {
"ID": "19",
"Range": "710:740",
"Type": "2"
},
"point": 2,
"desc": "오버랩일 경우 Type속성값 16으로 변경"
},
"22": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr/@Name",
"search": "자동차 레이싱 코스 (A Car Racing Course)",
"type": "video.Text",
"value": "자동차 레이싱 코스 (A Car Racing Course)",
"point": 3
},
"23": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID102",
"search": "자동차 레이싱 코스 (A Car Racing Course)",
"type": "video.Text",
"value": "돋움체",
"point": 2
},
"24": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID101",
"search": "자동차 레이싱 코스 (A Car Racing Course)",
"type": "video.Text",
"value": "150",
"point": 2
},
"25": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='4']/@VID100",
"search": "자동차 레이싱 코스 (A Car Racing Course)",
"type": "video.Text.Color",
"value": "d25e85",
"point": 2,
"desc": "컬러값은 RGB로 입력한다, [대소문자, #]허용 (#FFFFFF, ffffff 두 값 모두 허용)"
},
"26": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='2']",
"search": "자동차 레이싱 코스 (A Car Racing Course)",
"type": "video.Text.Outline",
"value": {
"width": "35",
"color": "000000"
},
"point": 2,
"desc": "두께는 XML에서는 소수점으로 표기되지만, 프로그램 내부적으로 변환하여 사용하므로 현재 파일에서는 정수로 작성"
},
"27": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr",
"search": "자동차 레이싱 코스 (A Car Racing Course)",
"type": "opening.Text.FadeInEffect",
"value": {
"VID505": "1",
"VID507": "2"
},
"point": 3,
"desc": "오프닝자막의 나타나기 효과를 확인하는 문항. id속성은 VID505, playtime속성은 VID507으로 XML 내부에 표기되어 있다."
},
"28": {
"ele": "",
"search": "자동차 레이싱 코스 (A Car Racing Course)",
"type": "opening.StartTime",
"value": 0,
"point": 2,
"desc": "오프닝자막의 시작시간 value 속성만 수정"
},
"29": {
"ele": "",
"search": "자동차 레이싱 코스 (A Car Racing Course)",
"type": "opening.Length",
"value": 160,
"point": 2
},
"30": {
"ele": "",
"type": "audio.StartTime",
"media": "음악.mp3",
"value": 0,
"point": 2
},
"31": {
"ele": "//CRTrackList[@Name='오디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']",
"type": "audio.EndTime",
"media": "음악.mp3",
"value": 720,
"point": 2
},
"32": {
"ele": "//CRTrackList[@Name='오디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "audio.Effect",
"media": "음악.mp3",
"value": {
"ID": "1",
"Duration": "90"
},
"point": 2,
"desc": "ID속성-페이드인:0 / 페이드아웃: 1"
},
"33": {
"ele": "none",
"point": 0,
"desc": "파일명 확인"
}
},
"4": {
"1": {
"type": "canvas.Size",
"ele": "//Document/Width/@value | //Document/Height/@value",
"value": ["650", "350"],
"point": 5,
"desc": "캔버스 사이즈 650*350"
},
"2": {
"type": "none",
"ele": "",
"point": 5,
"desc": "자유 변형 문항은 채점 불가"
},
"3": {
"type": "layer.exists",
"ele": "//Layer/Name/@value",
"value": "Flower",
"point": 5,
"desc": "Flower 레이어가 있는지 여부 체크"
},
"4": {
"type": "layer.Effects",
"ele": "//Layer[Name[@value='{search}']]/Effects/Item",
"search": "Flower",
"value": {
"name": "생동감",
"option": {
"생동감": "40"
}
},
"point": 5,
"desc": {
"흑백": "강도",
"밝기/대비": ["밝기", "대비"],
"노출": "노출",
"색조/채도": ["색조", "채도", "명도"],
"감마": ["리프트", "감마", "게인"],
"세피아": ["U", "V"],
"생동감": "생동감"
}
},
"5": {
"type": "none",
"ele": "",
"point": 6,
"desc": "올가미 도구/이미지 문항은 채점 불가"
},
"6": {
"type": "exists",
"ele": "//Layer/Effects/Item/Name/@value",
"value": "세피아",
"point": 6,
"desc": "세피아 효과가 있는지 여부 체크"
},
"7": {
"type": "exists",
"ele": "//Layer/Shapes/Shape/shape_type/@value",
"value": "ELLIPSE",
"point": 3,
"desc": "레이어 쉐이프 타입이 타원인지 체크"
},
"8": {
"type": "shape.size",
"ele": "//Layer//op_points",
"value": {
"width": 120,
"height": 120
},
"point": 3,
"desc": "레이어 쉐이프 X, Y 좌표를 가지고 너비, 높이 계산하여 정답 채점"
},
"9": {
"type": "shape.color",
"ele": "//Layer//Shape[contains(draw_type/@value, 'Interior')]/secondary_color/@value",
"value": "7097BB",
"point": 6,
"desc": ""
},
"10": {
"type": "layer.blend.opacity",
"ele": "//Layer",
"value": {
"BlendOp": "반사",
"Opacity": "80"
},
"point": 6
},
"11": {
"type": "none",
"ele": "",
"point": 0,
"desc": "기본설정"
},
"12": {
"type": "none",
"ele": "",
"point": 0,
"desc": "파일명 확인"
}
},
"5": {
"1": {
"type": "canvas.Size",
"ele": "//Document/Width/@value | //Document/Height/@value",
"value": ["650", "450"],
"point": 5,
"desc": "캔버스 사이즈 650*450"
},
"2": {
"type": "none",
"ele": "",
"point": 5,
"desc": "배경색 문항은 채점 불가"
},
"3": {
"type": "exists",
"ele": "//Layer/MaskOpType/@value",
"value": "Layering",
"point": 6,
"desc": "레이어 마스크 설정 확인"
},
"4": {
"type": "none",
"ele": "",
"point": 6,
"desc": "가로방향 흐릿하게 문항은 채점 불가"
},
"5": {
"type": "exists",
"ele": "//Layer//shape_type/@value",
"value": "ROUNDED_RECTANGLE",
"point": 3
},
"6": {
"type": "shape.size",
"ele": "//Layer//op_points",
"value": {
"width": 400,
"height": 60
},
"point": 3,
"desc": "레이어 쉐이프 X, Y 좌표를 가지고 너비, 높이 계산하여 정답 채점"
},
"7": {
"type": "gradient.color",
"ele": "//Layer/Shapes/Shape",
"startColor": "gradient_start_color/@value",
"endColor": "gradient_end_color/@value",
"value": {
"startColor": "ffe000",
"endColor": "34A159"
},
"point": 6
},
"8": {
"type": "text.exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/lines/Item/@value",
"value": "흰 꽃 사이 노란 꽃",
"point": 5
},
"9": {
"type": "exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/font/Name/@value",
"value": "맑은 고딕",
"point": 3
},
"10": {
"type": "exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/font/{style}/@value",
"style": "Italic",
"value": "True",
"point": 3
},
"11": {
"type": "exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/font/Size/@value",
"value": "30",
"point": 3
},
"12": {
"type": "text.color",
"ele": "//Layer//Shape[shape_type/@value='TEXT'][contains(draw_type/@value, 'Interior')]/secondary_color/@value",
"value": "b46Ef8",
"point": 3
},
"13": {
"type": "exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/outline_peninfo/Width/@value",
"value": "7",
"point": 3
},
"14": {
"type": "text.color",
"ele": "//Layer//Shape[shape_type/@value='TEXT'][contains(draw_type/@value, 'Outline')]/primary_color/@value",
"value": "ffffff",
"point": 3
},
"15": {
"type": "exists",
"ele": "//Layer/MaskOpType/@value",
"value": "Clipping",
"point": 6,
"desc": "클리핑 마스크 항목은 별도 레이어로 추가되고 해당 속성을 추가해놓은 레이어가 있는지 여부 체크 함"
},
"16": {
"type": "exists",
"ele": "//Layer/Shapes/Shape/shape_type/@value",
"value": "RECTANGLE",
"point": 3,
"desc": {
"사각형": "RECTANGLE"
}
},
"17": {
"type": "clipping.size",
"ele": "//Layer//Shape[shape_type/@value='{option}']//op_points",
"option": "RECTANGLE",
"value": {
"width": 150,
"height": 150
},
"point": 3,
"desc": "레이어 쉐이프 X, Y 좌표를 가지고 너비, 높이 계산하여 정답 채점"
},
"18": {
"type": "exists",
"ele": "//Layer//Shape[shape_type/@value='{option}']/outline_peninfo/Width/@value",
"option": "RECTANGLE",
"value": "7",
"point": 3
},
"19": {
"type": "clipping.color",
"ele": "//Layer//Shape[shape_type/@value='{option}' and contains(draw_type/@value, 'Outline')]/primary_color/@value",
"option": "RECTANGLE",
"value": "e8e88e",
"point": 3,
"desc": "채우기:secondary_color, 외곽선:primary_color"
},
"20": {
"type": "shadow",
"ele": "//Layer//Shape[shape_type/@value='{option}']",
"option": "RECTANGLE",
"value": {
"shadow": true,
"width": "3",
"distance": "5",
"blur": "1",
"angle": "320"
},
"point": 5,
"desc": "그림자 속성이 있는 경우 그림자 속성의 너비, 거리, 흐림 정도, 각도를 비교하여 정답 채점"
},
"21": {
"type": "none",
"ele": "",
"point": 0,
"desc": "기본설정"
},
"22": {
"type": "none",
"ele": "",
"point": 0,
"desc": "파일명 확인"
}
}
}

Binary file not shown.

View File

@@ -61,30 +61,30 @@
"point": 0 "point": 0
}, },
"5": { "5": {
"ele": "$.children[?(@.name=='Winter Park')].name", "ele": "$.children[?(@.name==\"Let's go! Sokcho\")].name",
"value": "Winter Park", "value": "Let's go! Sokcho",
"point": 4 "point": 4
}, },
"6": { "6": {
"ele": "$.children[?(@.name=='Winter Park')].text.font.names[0]", "ele": "$.children[?(@.name==\"Let's go! Sokcho\")].text.font.names[0]",
"type": "font", "type": "font",
"value": "Arial", "value": "Arial",
"point": 2 "point": 2
}, },
"7": { "7": {
"ele": "$.children[?(@.name=='Winter Park')].text.font.names[0]", "ele": "$.children[?(@.name==\"Let's go! Sokcho\")].text.font.names[0]",
"value": "Arial-BoldItalicMT", "value": "Arial-BoldItalicMT",
"point": 2 "point": 2
}, },
"8": { "8": {
"ele": "$.children[?(@.name=='Winter Park')].text.font.sizes[0]", "ele": "$.children[?(@.name==\"Let's go! Sokcho\")].text.font.sizes[0]",
"value": 48, "value": 48,
"point": 2 "point": 2
}, },
"9": { "9": {
"ele": "$.children[?(@.name=='Winter Park')].text.font.colors[0]", "ele": "$.children[?(@.name==\"Let's go! Sokcho\")].text.font.colors[0]",
"type": "color", "type": "color",
"value": "3b36ff", "value": "000000",
"point": 2 "point": 2
}, },
"10": { "10": {
@@ -100,14 +100,14 @@
"point": 0 "point": 0
}, },
"13": { "13": {
"ele": "$.children[?(@.name=='겨울 공원 나들이')].name", "ele": "$.children[?(@.name=='관광의 도시 속초로 오세요!')].name",
"value": "겨울 공원 나들이", "value": "관광의 도시 속초로 오세요!",
"point": 4 "point": 4
}, },
"14": { "14": {
"ele": "$.children[?(@.name=='겨울 공원 나들이')].text.font.names[0]", "ele": "$.children[?(@.name=='관광의 도시 속초로 오세요!')].text.font.names[0]",
"type": "font", "type": "font",
"value": "BatangChe", "value": "Batang",
"point": 2, "point": 2,
"desc": { "desc": {
"돋움체": "DotumChe", "돋움체": "DotumChe",
@@ -118,14 +118,14 @@
} }
}, },
"15": { "15": {
"ele": "$.children[?(@.name=='겨울 공원 나들이')].text.font.sizes[0]", "ele": "$.children[?(@.name=='관광의 도시 속초로 오세요!')].text.font.sizes[0]",
"value": 24, "value": 36,
"point": 2 "point": 2
}, },
"16": { "16": {
"ele": "$.children[?(@.name=='겨울 공원 나들이')].text.font.colors[0]", "ele": "$.children[?(@.name=='관광의 도시 속초로 오세요!')].text.font.colors[0]",
"type": "color", "type": "color",
"value": "ffb636", "value": "555fe3",
"point": 2 "point": 2
}, },
"17": { "17": {
@@ -187,7 +187,7 @@
"1": { "1": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[not(@Length<='5' and @ClipLength='-1')]/@ClipIndex", "ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[not(@Length<='5' and @ClipLength='-1')]/@ClipIndex",
"type": "mediaOrder", "type": "mediaOrder",
"value": ["동영상.mp4", "이미지3.jpg", "이미지2.jpg", "이미지1.jpg"], "value": ["동영상.mp4", "이미지2.jpg", "이미지1.jpg", "이미지3.jpg"],
"point": 4, "point": 4,
"desc": "비디오1 트랙에 있는 클립의 ClipIndex값을 기준으로 CRClipArr에서 Path값을 가져와서 정답 채점, 클립의 ClipIndex값이 -1인 경우와 길이가 5프레임 이하인 경우는 제외한다." "desc": "비디오1 트랙에 있는 클립의 ClipIndex값을 기준으로 CRClipArr에서 Path값을 가져와서 정답 채점, 클립의 ClipIndex값이 -1인 경우와 길이가 5프레임 이하인 경우는 제외한다."
}, },
@@ -195,7 +195,7 @@
"ele": "/CROASTERP/CRTrackArr[1]/CRVideoTrackArr[1]/CRTrackList[1]/CRTrackClip[1]/@Speed", "ele": "/CROASTERP/CRTrackArr[1]/CRVideoTrackArr[1]/CRTrackList[1]/CRTrackClip[1]/@Speed",
"type": "oneAnswer", "type": "oneAnswer",
"value": { "value": {
"speed": "130" "speed": "150"
}, },
"point": 2, "point": 2,
"desc": "100당 1배속 / 130 = 1.3배속" "desc": "100당 1배속 / 130 = 1.3배속"
@@ -206,7 +206,7 @@
"media": "동영상.mp4", "media": "동영상.mp4",
"value": { "value": {
"start": "0", "start": "0",
"end": "350" "end": "360"
}, },
"point": 2, "point": 2,
"desc": "시작시간과 재생시간 정답값 입력, 3번문항은 '동영상.mp4' 클립의 길이를 확인하는 문항이므로 media는 수정할 필요가 없다." "desc": "시작시간과 재생시간 정답값 입력, 3번문항은 '동영상.mp4' 클립의 길이를 확인하는 문항이므로 media는 수정할 필요가 없다."
@@ -216,45 +216,45 @@
"type": "effect", "type": "effect",
"media": "동영상.mp4", "media": "동영상.mp4",
"value": { "value": {
"ID": "43", "ID": "44",
"VID100": "10", "VID100": "10",
"VID103": "0.80000001" "VID103": "0.69999999"
}, },
"point": 3, "point": 3,
"desc": "value값의 키값(VID___)은 이펙트의 속성종류에 따라 변경되므로 채점기준표작성시 확인 필요" "desc": "value값의 키값(VID___)은 이펙트의 속성종류에 따라 변경되므로 채점기준표작성시 확인 필요"
}, },
"5": { "5": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr/@Name", "ele": "//CROwneUnit[{index}]/CRCUnitArr/@Name",
"search": "겨울의 암석 공원 산책길", "search": "속초로 놀러오세요~",
"type": "video.Text", "type": "video.Text",
"value": "겨울의 암석 공원 산책길", "value": "속초로 놀러오세요~",
"point": 3 "point": 3
}, },
"6": { "6": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID102", "ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID102",
"search": "겨울의 암석 공원 산책길", "search": "속초로 놀러오세요~",
"type": "video.Text", "type": "video.Text",
"value": "궁서체", "value": "바탕",
"point": 2 "point": 2
}, },
"7": { "7": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID101", "ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID101",
"search": "겨울의 암석 공원 산책길", "search": "속초로 놀러오세요~",
"type": "video.Text", "type": "video.Text",
"value": "120", "value": "115",
"point": 2 "point": 2
}, },
"8": { "8": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='4']/@VID100", "ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='4']/@VID100",
"search": "겨울의 암석 공원 산책길", "search": "속초로 놀러오세요~",
"type": "video.Text.Color", "type": "video.Text.Color",
"value": "039bc0", "value": "edff09",
"point": 2, "point": 2,
"desc": "컬러값은 RGB로 입력한다, [대소문자, #]허용 (#FFFFFF, ffffff 두 값 모두 허용)" "desc": "컬러값은 RGB로 입력한다, [대소문자, #]허용 (#FFFFFF, ffffff 두 값 모두 허용)"
}, },
"9": { "9": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr/@*[name()='VID600' or name()='VID601']", "ele": "//CROwneUnit[{index}]/CRCUnitArr/@*[name()='VID600' or name()='VID601']",
"search": "겨울의 암석 공원 산책길", "search": "속초로 놀러오세요~",
"type": "video.Location", "type": "video.Location",
"value": ["0.24062499", "0.9222222"], "value": ["0.24062499", "0.9222222"],
"point": 2, "point": 2,
@@ -262,15 +262,15 @@
}, },
"10": { "10": {
"ele": "", "ele": "",
"search": "겨울의 암석 공원 산책길", "search": "속초로 놀러오세요~",
"type": "video.StartTime", "type": "video.StartTime",
"value": 170, "value": 150,
"point": 2, "point": 2,
"desc": "내부적으로 자막의 시작시간과 길이를 계산" "desc": "내부적으로 자막의 시작시간과 길이를 계산"
}, },
"11": { "11": {
"ele": "", "ele": "",
"search": "겨울의 암석 공원 산책길", "search": "속초로 놀러오세요~",
"type": "video.Length", "type": "video.Length",
"value": 150, "value": 150,
"point": 2, "point": 2,
@@ -286,17 +286,17 @@
"13": { "13": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length", "ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length",
"type": "imageLength", "type": "imageLength",
"media": "이미지3.jpg", "media": "이미지2.jpg",
"value": 180, "value": 180,
"point": 2 "point": 2
}, },
"14": { "14": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter", "ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "imageOverlay", "type": "imageOverlay",
"media": "이미지3.jpg", "media": "이미지2.jpg",
"value": { "value": {
"ID": "184", "ID": "67",
"VID100": "30" "VID103": "7"
}, },
"point": 2, "point": 2,
"desc": "오버레이 속성 키값(VID10X) 확인하고 변경" "desc": "오버레이 속성 키값(VID10X) 확인하고 변경"
@@ -304,10 +304,10 @@
"15": { "15": {
"ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']", "ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']",
"type": "clipTransition", "type": "clipTransition",
"media": "이미지3.jpg", "media": "이미지2.jpg",
"value": { "value": {
"ID": "12", "ID": "0",
"Range": "470:530", "Range": "480:540",
"Type": "2" "Type": "2"
}, },
"point": 2, "point": 2,
@@ -316,17 +316,17 @@
"16": { "16": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length", "ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length",
"type": "imageLength", "type": "imageLength",
"media": "이미지2.jpg", "media": "이미지1.jpg",
"value": 150, "value": 180,
"point": 2 "point": 2
}, },
"17": { "17": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter", "ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "imageOverlay", "type": "imageOverlay",
"media": "이미지2.jpg", "media": "이미지1.jpg",
"value": { "value": {
"ID": "99", "ID": "103",
"VID100": "85" "VID102": "10"
}, },
"point": 2, "point": 2,
"desc": "오버레이 속성 키값(VID10X) 확인하고 변경" "desc": "오버레이 속성 키값(VID10X) 확인하고 변경"
@@ -334,10 +334,10 @@
"18": { "18": {
"ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']", "ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']",
"type": "clipTransition", "type": "clipTransition",
"media": "이미지2.jpg", "media": "이미지1.jpg",
"value": { "value": {
"ID": "14", "ID": "21",
"Range": "620:680", "Range": "690:720",
"Type": "2" "Type": "2"
}, },
"point": 2, "point": 2,
@@ -346,17 +346,17 @@
"19": { "19": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length", "ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length",
"type": "imageLength", "type": "imageLength",
"media": "이미지1.jpg", "media": "이미지3.jpg",
"value": 150, "value": 180,
"point": 2 "point": 2
}, },
"20": { "20": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter", "ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "imageOverlay", "type": "imageOverlay",
"media": "이미지1.jpg", "media": "이미지3.jpg",
"value": { "value": {
"ID": "128", "ID": "99",
"VID100": "10" "VID100": "100"
}, },
"point": 2, "point": 2,
"desc": "오버레이 속성 키값(VID10X) 확인하고 변경" "desc": "오버레이 속성 키값(VID10X) 확인하고 변경"
@@ -364,10 +364,10 @@
"21": { "21": {
"ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']", "ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']",
"type": "clipTransition", "type": "clipTransition",
"media": "이미지1.jpg", "media": "이미지3.jpg",
"value": { "value": {
"ID": "19", "ID": "19",
"Range": "800:830", "Range": "840:900",
"Type": "2" "Type": "2"
}, },
"point": 2, "point": 2,
@@ -375,50 +375,50 @@
}, },
"22": { "22": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr/@Name", "ele": "//CROwneUnit[{index}]/CRCUnitArr/@Name",
"search": "암석 공원 (Rock Park)", "search": "관광도시 속초 Sokcho, a tourist city",
"type": "video.Text", "type": "video.Text",
"value": "암석 공원 (Rock Park)", "value": "관광도시 속초 Sokcho, a tourist city",
"point": 3 "point": 3
}, },
"23": { "23": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID102", "ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID102",
"search": "암석 공원 (Rock Park)", "search": "관광도시 속초 Sokcho, a tourist city",
"type": "video.Text", "type": "video.Text",
"value": "돋움체", "value": "궁서체",
"point": 2 "point": 2
}, },
"24": { "24": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID101", "ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID101",
"search": "암석 공원 (Rock Park)", "search": "관광도시 속초 Sokcho, a tourist city",
"type": "video.Text", "type": "video.Text",
"value": "150", "value": "120",
"point": 2 "point": 2
}, },
"25": { "25": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='4']/@VID100", "ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='4']/@VID100",
"search": "암석 공원 (Rock Park)", "search": "관광도시 속초 Sokcho, a tourist city",
"type": "video.Text.Color", "type": "video.Text.Color",
"value": "ff0505", "value": "f60724",
"point": 2, "point": 2,
"desc": "컬러값은 RGB로 입력한다, [대소문자, #]허용 (#FFFFFF, ffffff 두 값 모두 허용)" "desc": "컬러값은 RGB로 입력한다, [대소문자, #]허용 (#FFFFFF, ffffff 두 값 모두 허용)"
}, },
"26": { "26": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='2']", "ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='2']",
"search": "암석 공원 (Rock Park)", "search": "관광도시 속초 Sokcho, a tourist city",
"type": "video.Text.Outline", "type": "video.Text.Outline",
"value": { "value": {
"width": "20", "width": "20",
"color": "fff900" "color": "ffffff"
}, },
"point": 2, "point": 2,
"desc": "두께는 XML에서는 소수점으로 표기되지만, 프로그램 내부적으로 변환하여 사용하므로 현재 파일에서는 정수로 작성" "desc": "두께는 XML에서는 소수점으로 표기되지만, 프로그램 내부적으로 변환하여 사용하므로 현재 파일에서는 정수로 작성"
}, },
"27": { "27": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr", "ele": "//CROwneUnit[{index}]/CRCUnitArr",
"search": "암석 공원 (Rock Park)", "search": "관광도시 속초 Sokcho, a tourist city",
"type": "opening.Text.FadeInEffect", "type": "opening.Text.FadeInEffect",
"value": { "value": {
"VID505": "16", "VID505": "1",
"VID507": "2" "VID507": "2"
}, },
"point": 3, "point": 3,
@@ -426,7 +426,7 @@
}, },
"28": { "28": {
"ele": "", "ele": "",
"search": "암석 공원 (Rock Park)", "search": "관광도시 속초 Sokcho, a tourist city",
"type": "opening.StartTime", "type": "opening.StartTime",
"value": 0, "value": 0,
"point": 2, "point": 2,
@@ -434,9 +434,9 @@
}, },
"29": { "29": {
"ele": "", "ele": "",
"search": "암석 공원 (Rock Park)", "search": "관광도시 속초 Sokcho, a tourist city",
"type": "opening.Length", "type": "opening.Length",
"value": 150, "value": 160,
"point": 2 "point": 2
}, },
"30": { "30": {
@@ -450,7 +450,7 @@
"ele": "//CRTrackList[@Name='오디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']", "ele": "//CRTrackList[@Name='오디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']",
"type": "audio.EndTime", "type": "audio.EndTime",
"media": "음악.mp3", "media": "음악.mp3",
"value": 820, "value": 870,
"point": 2 "point": 2
}, },
"32": { "32": {
@@ -459,7 +459,7 @@
"media": "음악.mp3", "media": "음악.mp3",
"value": { "value": {
"ID": "1", "ID": "1",
"Duration": "30" "Duration": "90"
}, },
"point": 2, "point": 2,
"desc": "ID속성-페이드인:0 / 페이드아웃: 1" "desc": "ID속성-페이드인:0 / 페이드아웃: 1"

View File

@@ -57,8 +57,8 @@
"point": 0 "point": 0
}, },
"4": { "4": {
"ele": "$.children[?(@.name=='꽃밭')].name", "ele": "$.children[?(@.name=='놀이터')].name",
"value": "꽃밭", "value": "놀이터",
"point": 4 "point": 4
}, },
"5": { "5": {
@@ -66,30 +66,30 @@
"point": 0 "point": 0
}, },
"6": { "6": {
"ele": "$.children[?(@.name=='Beautiful Garden')].name", "ele": "$.children[?(@.name=='Wooden Playground')].name",
"value": "Beautiful Garden", "value": "Wooden Playground",
"point": 4 "point": 4
}, },
"7": { "7": {
"ele": "$.children[?(@.name=='Beautiful Garden')].text.font.names[0]", "ele": "$.children[?(@.name=='Wooden Playground')].text.font.names[0]",
"type": "font", "type": "font",
"value": "Arial", "value": "Arial",
"point": 2 "point": 2
}, },
"8": { "8": {
"ele": "$.children[?(@.name=='Beautiful Garden')].text.font.names[0]", "ele": "$.children[?(@.name=='Wooden Playground')].text.font.names[0]",
"value": "Arial-BoldItalicMT", "value": "Arial-BoldItalicMT",
"point": 2 "point": 2
}, },
"9": { "9": {
"ele": "$.children[?(@.name=='Beautiful Garden')].text.font.sizes[0]", "ele": "$.children[?(@.name=='Wooden Playground')].text.font.sizes[0]",
"value": 48, "value": 48,
"point": 2 "point": 2
}, },
"10": { "10": {
"ele": "$.children[?(@.name=='Beautiful Garden')].text.font.colors[0]", "ele": "$.children[?(@.name=='Wooden Playground')].text.font.colors[0]",
"type": "color", "type": "color",
"value": "3f09dc", "value": "801717",
"point": 2 "point": 2
}, },
"11": { "11": {
@@ -105,12 +105,12 @@
"point": 0 "point": 0
}, },
"14": { "14": {
"ele": "$.children[?(@.name=='아름다운 정원')].name", "ele": "$.children[?(@.name=='나무 놀이터')].name",
"value": "아름다운 정원", "value": "나무 놀이터",
"point": 4 "point": 4
}, },
"15": { "15": {
"ele": "$.children[?(@.name=='아름다운 정원')].text.font.names[0]", "ele": "$.children[?(@.name=='나무 놀이터')].text.font.names[0]",
"type": "font", "type": "font",
"value": "GungsuhChe", "value": "GungsuhChe",
"point": 2, "point": 2,
@@ -122,14 +122,14 @@
} }
}, },
"16": { "16": {
"ele": "$.children[?(@.name=='아름다운 정원')].text.font.sizes[0]", "ele": "$.children[?(@.name=='나무 놀이터')].text.font.sizes[0]",
"value": 36, "value": 36,
"point": 2 "point": 2
}, },
"17": { "17": {
"ele": "$.children[?(@.name=='아름다운 정원')].text.font.colors[0]", "ele": "$.children[?(@.name=='나무 놀이터')].text.font.colors[0]",
"type": "color", "type": "color",
"value": "035952", "value": "0e4510",
"point": 2 "point": 2
}, },
"18": { "18": {
@@ -149,8 +149,8 @@
"point": 0 "point": 0
}, },
"22": { "22": {
"ele": "$.children[?(@.name=='아네모네꽃')].name", "ele": "$.children[?(@.name=='은행잎')].name",
"value": "아네모네꽃", "value": "은행잎",
"point": 4 "point": 4
}, },
"23": { "23": {
@@ -184,7 +184,7 @@
"1": { "1": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[not(@Length<='5' and @ClipLength='-1')]/@ClipIndex", "ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[not(@Length<='5' and @ClipLength='-1')]/@ClipIndex",
"type": "mediaOrder", "type": "mediaOrder",
"value": ["동영상.mp4", "이미지2.jpg", "이미지1.jpg", "이미지3.jpg"], "value": ["동영상.mp4", "이미지1.jpg", "이미지3.jpg", "이미지2.jpg"],
"point": 4, "point": 4,
"desc": "비디오1 트랙에 있는 클립의 ClipIndex값을 기준으로 CRClipArr에서 Path값을 가져와서 정답 채점, 클립의 ClipIndex값이 -1인 경우와 길이가 5프레임 이하인 경우는 제외한다." "desc": "비디오1 트랙에 있는 클립의 ClipIndex값을 기준으로 CRClipArr에서 Path값을 가져와서 정답 채점, 클립의 ClipIndex값이 -1인 경우와 길이가 5프레임 이하인 경우는 제외한다."
}, },
@@ -203,7 +203,7 @@
"media": "동영상.mp4", "media": "동영상.mp4",
"value": { "value": {
"start": "0", "start": "0",
"end": "350" "end": "380"
}, },
"point": 2, "point": 2,
"desc": "시작시간과 재생시간 정답값 입력, 3번문항은 '동영상.mp4' 클립의 길이를 확인하는 문항이므로 media는 수정할 필요가 없다." "desc": "시작시간과 재생시간 정답값 입력, 3번문항은 '동영상.mp4' 클립의 길이를 확인하는 문항이므로 media는 수정할 필요가 없다."
@@ -213,8 +213,8 @@
"type": "effect", "type": "effect",
"media": "동영상.mp4", "media": "동영상.mp4",
"value": { "value": {
"ID": "40", "ID": "52",
"VID100": "15", "VID100": "30",
"VID103": "0.80000001" "VID103": "0.80000001"
}, },
"point": 3, "point": 3,
@@ -222,38 +222,38 @@
}, },
"5": { "5": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr/@Name", "ele": "//CROwneUnit[{index}]/CRCUnitArr/@Name",
"search": "튤립 꽃밭", "search": "자연 놀이터",
"type": "video.Text", "type": "video.Text",
"value": "튤립 꽃밭", "value": "자연 놀이터",
"point": 3 "point": 3
}, },
"6": { "6": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID102", "ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID102",
"search": "튤립 꽃밭", "search": "자연 놀이터",
"type": "video.Text", "type": "video.Text",
"value": "굴림체", "value": "굴림체",
"point": 2 "point": 2
}, },
"7": { "7": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID101", "ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID101",
"search": "튤립 꽃밭", "search": "자연 놀이터",
"type": "video.Text", "type": "video.Text",
"value": "120", "value": "100",
"point": 2 "point": 2
}, },
"8": { "8": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='4']/@VID100", "ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='4']/@VID100",
"search": "튤립 꽃밭", "search": "자연 놀이터",
"type": "video.Text.Color", "type": "video.Text.Color",
"value": "fff176", "value": "8dff00",
"point": 2, "point": 2,
"desc": "컬러값은 RGB로 입력한다, [대소문자, #]허용 (#FFFFFF, ffffff 두 값 모두 허용)" "desc": "컬러값은 RGB로 입력한다, [대소문자, #]허용 (#FFFFFF, ffffff 두 값 모두 허용)"
}, },
"9": { "9": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr/@*[name()='VID600' or name()='VID601']", "ele": "//CROwneUnit[{index}]/CRCUnitArr/@*[name()='VID600' or name()='VID601']",
"search": "튤립 꽃밭", "search": "자연 놀이터",
"type": "video.Location", "type": "video.Location",
"value": ["0.39583334", "0.9222222"], "value": ["0.39375001", "0.93333334"],
"point": 2, "point": 2,
"desc": [ "desc": [
"정답 파일의 자막 좌표를 기준으로 프로그램 내부적으로 0.1까지 오차를 허용한다", "정답 파일의 자막 좌표를 기준으로 프로그램 내부적으로 0.1까지 오차를 허용한다",
@@ -262,7 +262,7 @@
}, },
"10": { "10": {
"ele": "", "ele": "",
"search": "튤립 꽃밭", "search": "자연 놀이터",
"type": "video.StartTime", "type": "video.StartTime",
"value": 170, "value": 170,
"point": 2, "point": 2,
@@ -270,9 +270,9 @@
}, },
"11": { "11": {
"ele": "", "ele": "",
"search": "튤립 꽃밭", "search": "자연 놀이터",
"type": "video.Length", "type": "video.Length",
"value": 180, "value": 160,
"point": 2, "point": 2,
"desc": "내부적으로 자막의 시작시간과 길이를 계산" "desc": "내부적으로 자막의 시작시간과 길이를 계산"
}, },
@@ -286,17 +286,17 @@
"13": { "13": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length", "ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length",
"type": "imageLength", "type": "imageLength",
"media": "이미지2.jpg", "media": "이미지1.jpg",
"value": 150, "value": 150,
"point": 2 "point": 2
}, },
"14": { "14": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter", "ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "imageOverlay", "type": "imageOverlay",
"media": "이미지2.jpg", "media": "이미지1.jpg",
"value": { "value": {
"ID": "99", "ID": "125",
"VID101": "90" "VID100": "40"
}, },
"point": 2, "point": 2,
"desc": "오버레이 속성 키값(VID10X) 확인하고 변경" "desc": "오버레이 속성 키값(VID10X) 확인하고 변경"
@@ -304,10 +304,10 @@
"15": { "15": {
"ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']", "ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']",
"type": "clipTransition", "type": "clipTransition",
"media": "이미지2.jpg", "media": "이미지1.jpg",
"value": { "value": {
"ID": "21", "ID": "55",
"Range": "470:500", "Range": "470:530",
"Type": "2" "Type": "2"
}, },
"point": 2, "point": 2,
@@ -316,17 +316,17 @@
"16": { "16": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length", "ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length",
"type": "imageLength", "type": "imageLength",
"media": "이미지1.jpg", "media": "이미지3.jpg",
"value": 180, "value": 180,
"point": 2 "point": 2
}, },
"17": { "17": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter", "ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "imageOverlay", "type": "imageOverlay",
"media": "이미지1.jpg", "media": "이미지3.jpg",
"value": { "value": {
"ID": "67", "ID": "128",
"VID103": "10" "VID100": "10"
}, },
"point": 2, "point": 2,
"desc": "오버레이 속성 키값(VID10X) 확인하고 변경" "desc": "오버레이 속성 키값(VID10X) 확인하고 변경"
@@ -334,10 +334,10 @@
"18": { "18": {
"ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']", "ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']",
"type": "clipTransition", "type": "clipTransition",
"media": "이미지1.jpg", "media": "이미지3.jpg",
"value": { "value": {
"ID": "8", "ID": "93",
"Range": "620:680", "Range": "680:740",
"Type": "2" "Type": "2"
}, },
"point": 2, "point": 2,
@@ -346,17 +346,17 @@
"19": { "19": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length", "ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length",
"type": "imageLength", "type": "imageLength",
"media": "이미지3.jpg", "media": "이미지2.jpg",
"value": 180, "value": 180,
"point": 2 "point": 2
}, },
"20": { "20": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter", "ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']//CRFilter",
"type": "imageOverlay", "type": "imageOverlay",
"media": "이미지3.jpg", "media": "이미지2.jpg",
"value": { "value": {
"ID": "173", "ID": "104",
"VID101": "320" "VID102": "8"
}, },
"point": 2, "point": 2,
"desc": "오버레이 속성 키값(VID10X) 확인하고 변경" "desc": "오버레이 속성 키값(VID10X) 확인하고 변경"
@@ -364,10 +364,10 @@
"21": { "21": {
"ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']", "ele": "//CRTransFilter[@ClipIndex='{CRTrackClipIndex}']",
"type": "clipTransition", "type": "clipTransition",
"media": "이미지3.jpg", "media": "이미지2.jpg",
"value": { "value": {
"ID": "19", "ID": "25",
"Range": "800:860", "Range": "860:890",
"Type": "2" "Type": "2"
}, },
"point": 2, "point": 2,
@@ -375,51 +375,51 @@
}, },
"22": { "22": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr/@Name", "ele": "//CROwneUnit[{index}]/CRCUnitArr/@Name",
"search": "알록달록 꽃 (Colorful Flowers)", "search": "자연 속 놀이터 Nature playground",
"type": "video.Text", "type": "video.Text",
"value": "알록달록 꽃 (Colorful Flowers)", "value": "자연 속 놀이터 Nature playground",
"point": 3 "point": 3
}, },
"23": { "23": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID102", "ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID102",
"search": "알록달록 꽃 (Colorful Flowers)", "search": "자연 속 놀이터 Nature playground",
"type": "video.Text", "type": "video.Text",
"value": "바탕체", "value": "바탕체",
"point": 2 "point": 2
}, },
"24": { "24": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID101", "ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID101",
"search": "알록달록 꽃 (Colorful Flowers)", "search": "자연 속 놀이터 Nature playground",
"type": "video.Text", "type": "video.Text",
"value": "130", "value": "150",
"point": 2 "point": 2
}, },
"25": { "25": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='4']/@VID100", "ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='4']/@VID100",
"search": "알록달록 꽃 (Colorful Flowers)", "search": "자연 속 놀이터 Nature playground",
"type": "video.Text.Color", "type": "video.Text.Color",
"value": "9c27b0", "value": "aff32a",
"point": 2, "point": 2,
"desc": "컬러값은 RGB로 입력한다, [대소문자, #]허용 (#FFFFFF, ffffff 두 값 모두 허용)" "desc": "컬러값은 RGB로 입력한다, [대소문자, #]허용 (#FFFFFF, ffffff 두 값 모두 허용)"
}, },
"26": { "26": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='2']", "ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='2']",
"search": "알록달록 꽃 (Colorful Flowers)", "search": "자연 속 놀이터 Nature playground",
"type": "video.Text.Outline", "type": "video.Text.Outline",
"value": { "value": {
"width": "25", "width": "20",
"color": "f2f2f2" "color": "9e0a71"
}, },
"point": 2, "point": 2,
"desc": "두께는 XML에서는 소수점으로 표기되지만, 프로그램 내부적으로 변환하여 사용하므로 현재 파일에서는 정수로 작성" "desc": "두께는 XML에서는 소수점으로 표기되지만, 프로그램 내부적으로 변환하여 사용하므로 현재 파일에서는 정수로 작성"
}, },
"27": { "27": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr", "ele": "//CROwneUnit[{index}]/CRCUnitArr",
"search": "알록달록 꽃 (Colorful Flowers)", "search": "자연 속 놀이터 Nature playground",
"type": "opening.Text.FadeInEffect", "type": "opening.Text.FadeInEffect",
"value": { "value": {
"VID505": "24", "VID505": "5",
"VID507": "2" "VID507": "3"
}, },
"point": 3, "point": 3,
"desc": "오프닝자막의 나타나기 효과를 확인하는 문항. id속성은 VID505, playtime속성은 VID507으로 XML 내부에 표기되어 있다." "desc": "오프닝자막의 나타나기 효과를 확인하는 문항. id속성은 VID505, playtime속성은 VID507으로 XML 내부에 표기되어 있다."
@@ -436,7 +436,7 @@
"ele": "", "ele": "",
"search": "기차 여행 Train Travel", "search": "기차 여행 Train Travel",
"type": "opening.Length", "type": "opening.Length",
"value": 120, "value": 160,
"point": 2 "point": 2
}, },
"30": { "30": {
@@ -450,7 +450,7 @@
"ele": "//CRTrackList[@Name='오디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']", "ele": "//CRTrackList[@Name='오디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']",
"type": "audio.EndTime", "type": "audio.EndTime",
"media": "음악.mp3", "media": "음악.mp3",
"value": 840, "value": 750,
"point": 2 "point": 2
}, },
"32": { "32": {
@@ -459,7 +459,7 @@
"media": "음악.mp3", "media": "음악.mp3",
"value": { "value": {
"ID": "1", "ID": "1",
"Duration": "60" "Duration": "90"
}, },
"point": 2, "point": 2,
"desc": "ID속성-페이드인:0 / 페이드아웃: 1" "desc": "ID속성-페이드인:0 / 페이드아웃: 1"

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 KiB

View File

@@ -0,0 +1,91 @@
<?xml version="1.0" encoding="utf-8"?>
<Document>
<Layers>
<Layer>
<BlendOp value="표준" />
<MaskOpType value="None" />
<MaskLayer value="null" />
<LayerMaskedSurface value="null" />
<Opacity value="100" />
<Name value="Background" />
<Visible value="True" />
<Effects />
<Shapes />
</Layer>
<Layer>
<BlendOp value="표준" />
<MaskOpType value="None" />
<MaskLayer value="null" />
<LayerMaskedSurface value="null" />
<Opacity value="100" />
<Name value="Valley" />
<Visible value="True" />
<Effects>
<Item>
<EffectData>
<amount value="7" />
</EffectData>
<Category value="Effect" />
<Name value="선명하게" />
</Item>
<Item>
<EffectData>
<U value="68" />
<V value="255" />
</EffectData>
<Category value="Adjustment" />
<Name value="세피아" />
</Item>
</Effects>
<Shapes />
</Layer>
<Layer>
<BlendOp value="중첩" />
<MaskOpType value="None" />
<MaskLayer value="null" />
<LayerMaskedSurface value="null" />
<Opacity value="80" />
<Name value="Layer 3" />
<Visible value="True" />
<Effects />
<Shapes>
<Shape>
<scaling_enabled value="False" />
<gradient_start_color value="B: 49, G: 49, R: 206, A: 255" />
<gradient_end_color value="B: 135, G: 65, R: 89, A: 255" />
<gradient_type value="LinearClamped" />
<gradient_angle value="0" />
<rectangle_radius value="30" />
<op_points>
<Item>
<IsEmpty value="False" />
<X value="-1.0000038" />
<Y value="89" />
</Item>
<Item>
<IsEmpty value="False" />
<X value="333.99997" />
<Y value="124" />
</Item>
</op_points>
<angle value="0" />
<primary_color value="B: 17, G: 17, R: 247, A: 255" />
<secondary_color value="B: 74, G: 166, R: 70, A: 255" />
<shadow_color value="B: 0, G: 0, R: 0, A: 178" />
<shadow_distance value="5" />
<shadow_width value="7" />
<shadow_blur value="1" />
<shadow_angle value="320" />
<outline_peninfo>
<Width value="3" />
</outline_peninfo>
<shape_type value="RECTANGLE" />
<draw_type value="Interior" />
<interior_type value="Fill" />
</Shape>
</Shapes>
</Layer>
</Layers>
<Width value="650" />
<Height value="350" />
</Document>

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 KiB

View File

@@ -0,0 +1,195 @@
<?xml version="1.0" encoding="utf-8"?>
<Document>
<Layers>
<Layer>
<BlendOp value="표준" />
<MaskOpType value="None" />
<MaskLayer value="null" />
<LayerMaskedSurface value="null" />
<Opacity value="100" />
<Name value="Background" />
<Visible value="True" />
<Effects />
<Shapes />
</Layer>
<Layer>
<BlendOp value="표준" />
<MaskOpType value="Layering" />
<MaskLayer>
<MaskOpType value="Layered" />
<LayerMaskedSurface value="null" />
<Visible value="True" />
</MaskLayer>
<LayerMaskedSurface value="null" />
<Opacity value="100" />
<Name value="Layer 2" />
<Visible value="True" />
<Effects />
<Shapes />
</Layer>
<Layer>
<BlendOp value="표준" />
<MaskOpType value="None" />
<MaskLayer value="null" />
<LayerMaskedSurface value="null" />
<Opacity value="100" />
<Name value="Layer 3" />
<Visible value="True" />
<Effects />
<Shapes>
<Shape>
<scaling_enabled value="False" />
<gradient_start_color value="B: 65, G: 178, R: 60, A: 255" />
<gradient_end_color value="B: 173, G: 31, R: 147, A: 255" />
<gradient_type value="LinearClamped" />
<gradient_angle value="0" />
<rectangle_radius value="30" />
<op_points>
<Item>
<IsEmpty value="False" />
<X value="44.99997" />
<Y value="31.999992" />
</Item>
<Item>
<IsEmpty value="False" />
<X value="444.99997" />
<Y value="81.999985" />
</Item>
</op_points>
<angle value="0" />
<primary_color value="B: 17, G: 17, R: 247, A: 255" />
<secondary_color value="B: 74, G: 166, R: 70, A: 255" />
<shadow_color value="B: 0, G: 0, R: 0, A: 178" />
<shadow_distance value="5" />
<shadow_width value="7" />
<shadow_blur value="1" />
<shadow_angle value="320" />
<outline_peninfo>
<Width value="3" />
</outline_peninfo>
<shape_type value="ROUNDED_RECTANGLE" />
<draw_type value="Interior" />
<interior_type value="Gradient" />
</Shape>
</Shapes>
</Layer>
<Layer>
<BlendOp value="표준" />
<MaskOpType value="None" />
<MaskLayer value="null" />
<LayerMaskedSurface value="null" />
<Opacity value="100" />
<Name value="도깨비골 스카이밸리" />
<Visible value="True" />
<Effects />
<Shapes>
<Shape>
<lines>
<Item value="도깨비골 스카이밸리" />
</lines>
<font>
<Size value="24" />
<Style value="Italic" />
<Bold value="False" />
<Italic value="True" />
<Strikeout value="False" />
<Underline value="False" />
<Name value="돋움" />
</font>
<alignment value="Left" />
<scaling_enabled value="False" />
<gradient_start_color value="B: 0, G: 0, R: 0, A: 255" />
<gradient_end_color value="B: 255, G: 255, R: 255, A: 255" />
<gradient_type value="LinearClamped" />
<gradient_angle value="0" />
<rectangle_radius value="30" />
<op_points>
<Item>
<IsEmpty value="False" />
<X value="69" />
<Y value="22" />
</Item>
<Item>
<IsEmpty value="False" />
<X value="530" />
<Y value="108" />
</Item>
</op_points>
<angle value="0" />
<primary_color value="B: 255, G: 255, R: 255, A: 255" />
<secondary_color value="B: 24, G: 35, R: 170, A: 255" />
<shadow_color value="B: 0, G: 0, R: 0, A: 178" />
<shadow_distance value="15" />
<shadow_width value="5" />
<shadow_blur value="2" />
<shadow_angle value="315" />
<outline_peninfo>
<Width value="5" />
</outline_peninfo>
<shape_type value="TEXT" />
<draw_type value="Interior, Outline" />
<interior_type value="Fill" />
</Shape>
</Shapes>
</Layer>
<Layer>
<BlendOp value="표준" />
<MaskOpType value="None" />
<MaskLayer value="null" />
<LayerMaskedSurface value="null" />
<Opacity value="100" />
<Name value="Layer 5" />
<Visible value="True" />
<Effects />
<Shapes>
<Shape>
<scaling_enabled value="False" />
<gradient_start_color value="B: 65, G: 178, R: 60, A: 255" />
<gradient_end_color value="B: 173, G: 31, R: 147, A: 255" />
<gradient_type value="LinearClamped" />
<gradient_angle value="0" />
<rectangle_radius value="30" />
<op_points>
<Item>
<IsEmpty value="False" />
<X value="455.99997" />
<Y value="91.999985" />
</Item>
<Item>
<IsEmpty value="False" />
<X value="625.99994" />
<Y value="261.99997" />
</Item>
</op_points>
<angle value="0" />
<primary_color value="B: 92, G: 126, R: 75, A: 255" />
<secondary_color value="B: 255, G: 255, R: 255, A: 255" />
<shadow_color value="B: 0, G: 0, R: 0, A: 178" />
<shadow_distance value="2" />
<shadow_width value="5" />
<shadow_blur value="1" />
<shadow_angle value="320" />
<outline_peninfo>
<Width value="3" />
</outline_peninfo>
<shape_type value="ELLIPSE" />
<draw_type value="Interior, Outline, Shadow" />
<interior_type value="Fill" />
</Shape>
</Shapes>
</Layer>
<Layer>
<BlendOp value="표준" />
<MaskOpType value="Clipping" />
<MaskLayer value="null" />
<LayerMaskedSurface value="null" />
<Opacity value="100" />
<Name value="Layer 6" />
<Visible value="True" />
<Effects />
<Shapes />
</Layer>
</Layers>
<Width value="650" />
<Height value="450" />
</Document>

View File

@@ -0,0 +1,124 @@
<?xml version="1.0" encoding="UTF-8"?>
<CROASTERP Version="1, 0, 0, 4" BM="1" RatioX="0.45287639" RatioY="0.50097466" Fps="30" Resolution="960:540" ForDIAT="1" Relative="1">
<CRClipArr Count="5">
<CRClip Type="3" Path="동영상.mp4"/>
<CRClip Type="4" Sample="0" Path="음악.mp3"/>
<CRClip Type="2" Path="이미지1.jpg" ClipLength="120"/>
<CRClip Type="2" Path="이미지2.jpg" ClipLength="120"/>
<CRClip Type="2" Path="이미지3.jpg" ClipLength="120"/>
</CRClipArr>
<CROwneUnitArr Count="2">
<CROwneUnit Type="12">
<CRCUnitArr Name="재미있는 테마공원" ClipLength="150" KindID="1" Type="7" VID505="0" VID506="1" VID508="1" VID507="1" VID509="0" VID510="1" VID512="1" VID511="1" VID502="0" VID503="100" VID600="0.32291669" VID601="0.92962962">
<GPObjectArr Count="1">
<GPObject Type="1">
<GPObjectAtt Type="1" VID100="1">
<GPUnitAttArr Count="4">
<GCUnitPool Type="4" Count="1">
<GCUnit Type="4" VID0="1" SubType="1" VID100="-13619060"/>
</GCUnitPool>
<GCUnitPool Type="1" Count="1">
<GCUnit Type="1" VID0="1" VID100="2" VID101="110" VID102="바탕체"/>
</GCUnitPool>
<GCUnitPool Type="2" Count="1">
<GCUnit Type="2" VID0="0" SubType="1" VID100="0.30000001" VID101="-16777216"/>
</GCUnitPool>
<GCUnitPool Type="5" Count="1">
<GCUnit Type="5" VID0="0" VID100="0.30000001" VID101="-16777216" VID102="9"/>
</GCUnitPool>
</GPUnitAttArr>
<GCUnitArr Count="1">
<GCUnit GPCUType="5" Type="4" VID0="0" SubType="1" VID100="-16777216"/>
</GCUnitArr>
</GPObjectAtt>
<GPStrLineArr Count="1">
<GPStrLine Count="1">
<GPString VID7="재미있는 테마공원" VID1="0" VID2="0" VID4="0" VID6="0"/>
</GPStrLine>
</GPStrLineArr>
</GPObject>
</GPObjectArr>
</CRCUnitArr>
</CROwneUnit>
<CROwneUnit Type="12">
<CRCUnitArr Name="스카이밸리 도깨비골 (Sky Valley)" ClipLength="120" KindID="1" Type="7" VID505="3" VID506="1" VID508="1" VID507="2" VID509="0" VID510="1" VID512="1" VID511="1" VID502="0" VID503="100" VID600="0.23229167" VID601="0.77777779">
<GPObjectArr Count="1">
<GPObject Type="1">
<GPObjectAtt Type="1" VID100="1">
<GPUnitAttArr Count="4">
<GCUnitPool Type="4" Count="1">
<GCUnit Type="4" VID0="1" SubType="1" VID100="-10570703"/>
</GCUnitPool>
<GCUnitPool Type="1" Count="1">
<GCUnit Type="1" VID0="1" VID100="2" VID101="150" VID102="굴림체"/>
</GCUnitPool>
<GCUnitPool Type="2" Count="1">
<GCUnit Type="2" VID0="1" SubType="1" VID100="0.34999999" VID101="-1"/>
</GCUnitPool>
<GCUnitPool Type="5" Count="1">
<GCUnit Type="5" VID0="0" VID100="0.30000001" VID101="-16777216" VID102="9"/>
</GCUnitPool>
</GPUnitAttArr>
<GCUnitArr Count="1">
<GCUnit GPCUType="5" Type="4" VID0="0" SubType="1" VID100="-16777216"/>
</GCUnitArr>
</GPObjectAtt>
<GPStrLineArr Count="2">
<GPStrLine Count="1">
<GPString VID7="스카이밸리 도깨비골" VID1="0" VID2="0" VID4="0" VID6="0"/>
</GPStrLine>
<GPStrLine Count="1">
<GPString VID7="(Sky Valley)" VID1="0" VID2="0" VID4="0" VID6="0"/>
</GPStrLine>
</GPStrLineArr>
</GPObject>
</GPObjectArr>
</CRCUnitArr>
</CROwneUnit>
</CROwneUnitArr>
<CRTrackArr Snap="1" Zoom="22" Length="9000">
<CRVideoTrackArr Count="2">
<CRTrackList Name="비디오1" State="40" Count="4">
<CRTrackClip Type="1" ClipIndex="0" Pos="0" Length="350" ClipLength="-1" Speed="120" Level="0" Mute="1">
<CRFilterArr Count="1">
<CRFilter Type="1" ID="43" VID100="10" VID101="3" VID102="0" VID103="1.2"/>
</CRFilterArr>
</CRTrackClip>
<CRTrackClip Type="2" ClipIndex="4" Pos="0" Length="180" ClipLength="180" Speed="-1" Level="0" Mute="0">
<CRFilterArr Count="1">
<CRFilter Type="1" ID="94" VID100="50" VID101="7" VID102="5" VID103="8266522" VID104="1540085" VID105="100"/>
</CRFilterArr>
</CRTrackClip>
<CRTrackClip Type="2" ClipIndex="2" Pos="0" Length="150" ClipLength="150" Speed="-1" Level="0" Mute="0">
<CRFilterArr Count="1">
<CRFilter Type="1" ID="99" VID100="70" VID101="75" VID102="500" VID103="500" VID104="1" VID105="0" VID106="3682854"/>
</CRFilterArr>
</CRTrackClip>
<CRTrackClip Type="2" ClipIndex="3" Pos="0" Length="210" ClipLength="210" Speed="-1" Level="0" Mute="0">
<CRFilterArr Count="1">
<CRFilter Type="1" ID="102" VID100="2" VID101="5" VID102="10" VID103="5" VID104="5" VID105="5"/>
</CRFilterArr>
</CRTrackClip>
</CRTrackList>
<CRTrackTransEFList Count="3">
<CRTransFilter ID="32" Range="470:530" ClipIndex="1" Type="2"/>
<CRTransFilter ID="13" Range="650:680" ClipIndex="2" Type="2"/>
<CRTransFilter ID="19" Range="830:890" ClipIndex="3" Type="2"/>
</CRTrackTransEFList>
<CRTrackList Name="텍스트" State="32" Count="3">
<CRTrackClip Type="3" ClipIndex="1" Pos="0" Length="120" ClipLength="120" Speed="-1" Level="0" Mute="0"/>
<CRTrackClip Type="0" ClipIndex="-1" Pos="120" Length="40" ClipLength="-1" Speed="-1" Level="0" Mute="0"/>
<CRTrackClip Type="3" ClipIndex="0" Pos="0" Length="150" ClipLength="150" Speed="-1" Level="0" Mute="0"/>
</CRTrackList>
</CRVideoTrackArr>
<CRAudioTrackArr Count="1">
<CRTrackList Name="오디오1" State="45" Count="1">
<CRTrackClip Type="0" ClipIndex="1" Pos="0" Length="870" ClipLength="-1" Speed="-1" Level="0" Mute="0">
<CRFilterArr Count="1">
<CRFilter Type="2" ID="1" VID8="90"/>
</CRFilterArr>
</CRTrackClip>
</CRTrackList>
</CRAudioTrackArr>
</CRTrackArr>
</CROASTERP>

View File

@@ -3,7 +3,7 @@
"1": { "1": {
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[not(@Length<='5' and @ClipLength='-1')]/@ClipIndex", "ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[not(@Length<='5' and @ClipLength='-1')]/@ClipIndex",
"type": "mediaOrder", "type": "mediaOrder",
"value": ["동영상.mp4", "이미지2.jpg", "이미지1.jpg", "이미지3.jpg"], "value": ["동영상.mp4", "이미지3.jpg", "이미지1.jpg", "이미지2.jpg"],
"point": 4, "point": 4,
"desc": "비디오1 트랙에 있는 클립의 ClipIndex값을 기준으로 CRClipArr에서 Path값을 가져와서 정답 채점, 클립의 ClipIndex값이 -1인 경우와 길이가 5프레임 이하인 경우는 제외한다." "desc": "비디오1 트랙에 있는 클립의 ClipIndex값을 기준으로 CRClipArr에서 Path값을 가져와서 정답 채점, 클립의 ClipIndex값이 -1인 경우와 길이가 5프레임 이하인 경우는 제외한다."
}, },
@@ -11,7 +11,7 @@
"ele": "/CROASTERP/CRTrackArr[1]/CRVideoTrackArr[1]/CRTrackList[1]/CRTrackClip[1]/@Speed", "ele": "/CROASTERP/CRTrackArr[1]/CRVideoTrackArr[1]/CRTrackList[1]/CRTrackClip[1]/@Speed",
"type": "oneAnswer", "type": "oneAnswer",
"value": { "value": {
"speed": "150" "speed": "120"
}, },
"point": 2, "point": 2,
"desc": "100당 1배속 / 130 = 1.3배속" "desc": "100당 1배속 / 130 = 1.3배속"
@@ -22,7 +22,7 @@
"media": "동영상.mp4", "media": "동영상.mp4",
"value": { "value": {
"start": "0", "start": "0",
"end": "380" "end": "350"
}, },
"point": 2, "point": 2,
"desc": "시작시간과 재생시간 정답값 입력, 3번문항은 '동영상.mp4' 클립의 길이를 확인하는 문항이므로 media는 수정할 필요가 없다." "desc": "시작시간과 재생시간 정답값 입력, 3번문항은 '동영상.mp4' 클립의 길이를 확인하는 문항이므로 media는 수정할 필요가 없다."
@@ -41,44 +41,44 @@
}, },
"5": { "5": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr/@Name", "ele": "//CROwneUnit[{index}]/CRCUnitArr/@Name",
"search": "우리나라 활 전시", "search": "재미있는 테마공원",
"type": "video.Text", "type": "video.Text",
"value": "우리나라 활 전시", "value": "재미있는 테마공원",
"point": 3 "point": 3
}, },
"6": { "6": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID102", "ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID102",
"search": "우리나라 활 전시", "search": "재미있는 테마공원",
"type": "video.Text", "type": "video.Text",
"value": "궁서체", "value": "바탕체",
"point": 2 "point": 2
}, },
"7": { "7": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID101", "ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID101",
"search": "우리나라 활 전시", "search": "재미있는 테마공원",
"type": "video.Text", "type": "video.Text",
"value": "110", "value": "110",
"point": 2 "point": 2
}, },
"8": { "8": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='4']/@VID100", "ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='4']/@VID100",
"search": "우리나라 활 전시", "search": "재미있는 테마공원",
"type": "video.Text.Color", "type": "video.Text.Color",
"value": "ff6010", "value": "8c3030",
"point": 2, "point": 2,
"desc": "컬러값은 RGB로 입력한다, [대소문자, #]허용 (#FFFFFF, ffffff 두 값 모두 허용)" "desc": "컬러값은 RGB로 입력한다, [대소문자, #]허용 (#FFFFFF, ffffff 두 값 모두 허용)"
}, },
"9": { "9": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr/@*[name()='VID600' or name()='VID601']", "ele": "//CROwneUnit[{index}]/CRCUnitArr/@*[name()='VID600' or name()='VID601']",
"search": "우리나라 활 전시", "search": "재미있는 테마공원",
"type": "video.Location", "type": "video.Location",
"value": ["0.33229166", "0.92962962"], "value": ["0.32291669", "0.92962962"],
"point": 2, "point": 2,
"desc": "정답 파일의 자막 좌표를 기준으로 프로그램 내부적으로 0.1까지 오차를 허용한다" "desc": "정답 파일의 자막 좌표를 기준으로 프로그램 내부적으로 0.1까지 오차를 허용한다"
}, },
"10": { "10": {
"ele": "", "ele": "",
"search": "우리나라 활 전시", "search": "재미있는 테마공원",
"type": "video.StartTime", "type": "video.StartTime",
"value": 160, "value": 160,
"point": 2, "point": 2,
@@ -86,7 +86,7 @@
}, },
"11": { "11": {
"ele": "", "ele": "",
"search": "우리나라 활 전시", "search": "재미있는 테마공원",
"type": "video.Length", "type": "video.Length",
"value": 150, "value": 150,
"point": 2, "point": 2,
@@ -111,8 +111,8 @@
"type": "imageOverlay", "type": "imageOverlay",
"media": "이미지2.jpg", "media": "이미지2.jpg",
"value": { "value": {
"ID": "184", "ID": "94",
"VID100": "20" "VID101": "7"
}, },
"point": 2, "point": 2,
"desc": "오버레이 속성 키값(VID10X) 확인하고 변경" "desc": "오버레이 속성 키값(VID10X) 확인하고 변경"
@@ -122,8 +122,8 @@
"type": "clipTransition", "type": "clipTransition",
"media": "이미지2.jpg", "media": "이미지2.jpg",
"value": { "value": {
"ID": "14", "ID": "32",
"Range": "500:560", "Range": "470:530",
"Type": "2" "Type": "2"
}, },
"point": 2, "point": 2,
@@ -141,8 +141,8 @@
"type": "imageOverlay", "type": "imageOverlay",
"media": "이미지1.jpg", "media": "이미지1.jpg",
"value": { "value": {
"ID": "128", "ID": "99",
"VID100": "10" "VID100": "70"
}, },
"point": 2, "point": 2,
"desc": "오버레이 속성 키값(VID10X) 확인하고 변경" "desc": "오버레이 속성 키값(VID10X) 확인하고 변경"
@@ -152,8 +152,8 @@
"type": "clipTransition", "type": "clipTransition",
"media": "이미지1.jpg", "media": "이미지1.jpg",
"value": { "value": {
"ID": "12", "ID": "13",
"Range": "680:710", "Range": "650:680",
"Type": "2" "Type": "2"
}, },
"point": 2, "point": 2,
@@ -163,7 +163,7 @@
"ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length", "ele": "//CRTrackList[@Name='비디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']/@Length",
"type": "imageLength", "type": "imageLength",
"media": "이미지3.jpg", "media": "이미지3.jpg",
"value": 150, "value": 210,
"point": 2 "point": 2
}, },
"20": { "20": {
@@ -171,8 +171,8 @@
"type": "imageOverlay", "type": "imageOverlay",
"media": "이미지3.jpg", "media": "이미지3.jpg",
"value": { "value": {
"ID": "99", "ID": "102",
"VID100": "80" "VID102": "10"
}, },
"point": 2, "point": 2,
"desc": "오버레이 속성 키값(VID10X) 확인하고 변경" "desc": "오버레이 속성 키값(VID10X) 확인하고 변경"
@@ -183,7 +183,7 @@
"media": "이미지3.jpg", "media": "이미지3.jpg",
"value": { "value": {
"ID": "19", "ID": "19",
"Range": "830:860", "Range": "830:890",
"Type": "2" "Type": "2"
}, },
"point": 2, "point": 2,
@@ -191,50 +191,50 @@
}, },
"22": { "22": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr/@Name", "ele": "//CROwneUnit[{index}]/CRCUnitArr/@Name",
"search": "활의 역사 (History of the bow)", "search": "스카이밸리 도깨비골 (Sky Valley)",
"type": "video.Text", "type": "video.Text",
"value": "활의 역사 (History of the bow)", "value": "스카이밸리 도깨비골 (Sky Valley)",
"point": 3 "point": 3
}, },
"23": { "23": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID102", "ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID102",
"search": "활의 역사 (History of the bow)", "search": "스카이밸리 도깨비골 (Sky Valley)",
"type": "video.Text", "type": "video.Text",
"value": "바탕체", "value": "굴림체",
"point": 2 "point": 2
}, },
"24": { "24": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID101", "ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool[@Type='1']/GCUnit/@VID101",
"search": "활의 역사 (History of the bow)", "search": "스카이밸리 도깨비골 (Sky Valley)",
"type": "video.Text", "type": "video.Text",
"value": "160", "value": "150",
"point": 2 "point": 2
}, },
"25": { "25": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='4']/@VID100", "ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='4']/@VID100",
"search": "활의 역사 (History of the bow)", "search": "스카이밸리 도깨비골 (Sky Valley)",
"type": "video.Text.Color", "type": "video.Text.Color",
"value": "0bdb00", "value": "31b45e",
"point": 2, "point": 2,
"desc": "컬러값은 RGB로 입력한다, [대소문자, #]허용 (#FFFFFF, ffffff 두 값 모두 허용)" "desc": "컬러값은 RGB로 입력한다, [대소문자, #]허용 (#FFFFFF, ffffff 두 값 모두 허용)"
}, },
"26": { "26": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='2']", "ele": "//CROwneUnit[{index}]/CRCUnitArr//GCUnitPool/GCUnit[@Type='2']",
"search": "활의 역사 (History of the bow)", "search": "스카이밸리 도깨비골 (Sky Valley)",
"type": "video.Text.Outline", "type": "video.Text.Outline",
"value": { "value": {
"width": "20", "width": "35",
"color": "001624" "color": "ffffff"
}, },
"point": 2, "point": 2,
"desc": "두께는 XML에서는 소수점으로 표기되지만, 프로그램 내부적으로 변환하여 사용하므로 현재 파일에서는 정수로 작성" "desc": "두께는 XML에서는 소수점으로 표기되지만, 프로그램 내부적으로 변환하여 사용하므로 현재 파일에서는 정수로 작성"
}, },
"27": { "27": {
"ele": "//CROwneUnit[{index}]/CRCUnitArr", "ele": "//CROwneUnit[{index}]/CRCUnitArr",
"search": "활의 역사 (History of the bow)", "search": "스카이밸리 도깨비골 (Sky Valley)",
"type": "opening.Text.FadeInEffect", "type": "opening.Text.FadeInEffect",
"value": { "value": {
"VID505": "16", "VID505": "3",
"VID507": "2" "VID507": "2"
}, },
"point": 3, "point": 3,
@@ -242,7 +242,7 @@
}, },
"28": { "28": {
"ele": "", "ele": "",
"search": "활의 역사 (History of the bow)", "search": "스카이밸리 도깨비골 (Sky Valley)",
"type": "opening.StartTime", "type": "opening.StartTime",
"value": 0, "value": 0,
"point": 2, "point": 2,
@@ -250,9 +250,9 @@
}, },
"29": { "29": {
"ele": "", "ele": "",
"search": "활의 역사 (History of the bow)", "search": "스카이밸리 도깨비골 (Sky Valley)",
"type": "opening.Length", "type": "opening.Length",
"value": 150, "value": 160,
"point": 2 "point": 2
}, },
"30": { "30": {
@@ -266,7 +266,7 @@
"ele": "//CRTrackList[@Name='오디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']", "ele": "//CRTrackList[@Name='오디오1']/CRTrackClip[@ClipIndex='{CRClipIndex}']",
"type": "audio.EndTime", "type": "audio.EndTime",
"media": "음악.mp3", "media": "음악.mp3",
"value": 850, "value": 870,
"point": 2 "point": 2
}, },
"32": { "32": {
@@ -275,7 +275,7 @@
"media": "음악.mp3", "media": "음악.mp3",
"value": { "value": {
"ID": "1", "ID": "1",
"Duration": "30" "Duration": "90"
}, },
"point": 2, "point": 2,
"desc": "ID속성-페이드인:0 / 페이드아웃: 1" "desc": "ID속성-페이드인:0 / 페이드아웃: 1"
@@ -303,18 +303,18 @@
"3": { "3": {
"type": "layer.exists", "type": "layer.exists",
"ele": "//Layer/Name/@value", "ele": "//Layer/Name/@value",
"value": "Bow", "value": "Valley",
"point": 5, "point": 5,
"desc": "Bow 레이어가 있는지 여부 체크" "desc": "Valley 레이어가 있는지 여부 체크"
}, },
"4": { "4": {
"type": "layer.Effects", "type": "layer.Effects",
"ele": "//Layer[Name[@value='{search}']]/Effects/Item", "ele": "//Layer[Name[@value='{search}']]/Effects/Item",
"search": "Bow", "search": "Valley",
"value": { "value": {
"name": "감마", "name": "선명하게",
"option": { "option": {
"어두운 영역": "0.6" "": "7"
} }
}, },
"point": 5, "point": 5,
@@ -337,9 +337,9 @@
"6": { "6": {
"type": "exists", "type": "exists",
"ele": "//Layer/Effects/Item/Name/@value", "ele": "//Layer/Effects/Item/Name/@value",
"value": "색조/채도", "value": "세피아",
"point": 6, "point": 6,
"desc": "색조/채도 효과가 있는지 여부 체크" "desc": "세피아 효과가 있는지 여부 체크"
}, },
"7": { "7": {
"type": "exists", "type": "exists",
@@ -352,8 +352,8 @@
"type": "shape.size", "type": "shape.size",
"ele": "//Layer//op_points", "ele": "//Layer//op_points",
"value": { "value": {
"width": 110, "width": 335,
"height": 50 "height": 35
}, },
"point": 3, "point": 3,
"desc": "레이어 쉐이프 X, Y 좌표를 가지고 너비, 높이 계산하여 정답 채점" "desc": "레이어 쉐이프 X, Y 좌표를 가지고 너비, 높이 계산하여 정답 채점"
@@ -361,7 +361,7 @@
"9": { "9": {
"type": "shape.color", "type": "shape.color",
"ele": "//Layer//Shape[contains(draw_type/@value, 'Interior')]/secondary_color/@value", "ele": "//Layer//Shape[contains(draw_type/@value, 'Interior')]/secondary_color/@value",
"value": "9BF50A", "value": "46A64A",
"point": 6, "point": 6,
"desc": "" "desc": ""
}, },
@@ -417,7 +417,7 @@
"5": { "5": {
"type": "exists", "type": "exists",
"ele": "//Layer//shape_type/@value", "ele": "//Layer//shape_type/@value",
"value": "ELLIPSE", "value": "ROUNDED_RECTANGLE",
"point": 3, "point": 3,
"desc": { "desc": {
"사각형": "RECTANGLE", "사각형": "RECTANGLE",
@@ -429,8 +429,8 @@
"type": "shape.size", "type": "shape.size",
"ele": "//Layer//op_points", "ele": "//Layer//op_points",
"value": { "value": {
"width": 260, "width": 400,
"height": 80 "height": 50
}, },
"point": 3, "point": 3,
"desc": "레이어 쉐이프 X, Y 좌표를 가지고 너비, 높이 계산하여 정답 채점" "desc": "레이어 쉐이프 X, Y 좌표를 가지고 너비, 높이 계산하여 정답 채점"
@@ -441,21 +441,21 @@
"startColor": "gradient_start_color/@value", "startColor": "gradient_start_color/@value",
"endColor": "gradient_end_color/@value", "endColor": "gradient_end_color/@value",
"value": { "value": {
"startColor": "28B257", "startColor": "3CB241",
"endColor": "FFFF5C" "endColor": "931FAD"
}, },
"point": 6 "point": 6
}, },
"8": { "8": {
"type": "text.exists", "type": "text.exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/lines/Item/@value", "ele": "//Layer//Shape[shape_type/@value='TEXT']/lines/Item/@value",
"value": "활의 민족", "value": "도깨비골 스카이밸리",
"point": 5 "point": 5
}, },
"9": { "9": {
"type": "exists", "type": "exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/font/Name/@value", "ele": "//Layer//Shape[shape_type/@value='TEXT']/font/Name/@value",
"value": "궁서", "value": "돋움",
"point": 3 "point": 3
}, },
"10": { "10": {
@@ -474,19 +474,19 @@
"12": { "12": {
"type": "text.color", "type": "text.color",
"ele": "//Layer//Shape[shape_type/@value='TEXT'][contains(draw_type/@value, 'Interior')]/secondary_color/@value", "ele": "//Layer//Shape[shape_type/@value='TEXT'][contains(draw_type/@value, 'Interior')]/secondary_color/@value",
"value": "DC0000", "value": "AA2318",
"point": 3 "point": 3
}, },
"13": { "13": {
"type": "exists", "type": "exists",
"ele": "//Layer//Shape[shape_type/@value='TEXT']/outline_peninfo/Width/@value", "ele": "//Layer//Shape[shape_type/@value='TEXT']/outline_peninfo/Width/@value",
"value": "3", "value": "5",
"point": 3 "point": 3
}, },
"14": { "14": {
"type": "text.color", "type": "text.color",
"ele": "//Layer//Shape[shape_type/@value='TEXT'][contains(draw_type/@value, 'Outline')]/primary_color/@value", "ele": "//Layer//Shape[shape_type/@value='TEXT'][contains(draw_type/@value, 'Outline')]/primary_color/@value",
"value": "FFF4A6", "value": "FFFFFF",
"point": 3 "point": 3
}, },
"15": { "15": {
@@ -499,21 +499,22 @@
"16": { "16": {
"type": "exists", "type": "exists",
"ele": "//Layer/Shapes/Shape/shape_type/@value", "ele": "//Layer/Shapes/Shape/shape_type/@value",
"value": "ROUNDED_RECTANGLE", "value": "ELLIPSE",
"point": 3, "point": 3,
"desc": { "desc": {
"사각형": "RECTANGLE", "사각형": "RECTANGLE",
"모서리가 둥근 사각형": "ROUNDED_RECTANGLE", "모서리가 둥근 사각형": "ROUNDED_RECTANGLE",
"원형/타원형": "ELLIPSE" "원형/타원형": "ELLIPSE"
} },
"desc2": "16번 문항의 value값을 17~20번 문항의 option값으로 사용"
}, },
"17": { "17": {
"type": "clipping.size", "type": "clipping.size",
"ele": "//Layer//Shape[shape_type/@value='{option}']//op_points", "ele": "//Layer//Shape[shape_type/@value='{option}']//op_points",
"option": "ROUNDED_RECTANGLE", "option": "ELLIPSE",
"value": { "value": {
"width": 150, "width": 170,
"height": 150 "height": 170
}, },
"point": 3, "point": 3,
"desc": "레이어 쉐이프 X, Y 좌표를 가지고 너비, 높이 계산하여 정답 채점" "desc": "레이어 쉐이프 X, Y 좌표를 가지고 너비, 높이 계산하여 정답 채점"
@@ -521,27 +522,27 @@
"18": { "18": {
"type": "exists", "type": "exists",
"ele": "//Layer//Shape[shape_type/@value='{option}']/outline_peninfo/Width/@value", "ele": "//Layer//Shape[shape_type/@value='{option}']/outline_peninfo/Width/@value",
"option": "ROUNDED_RECTANGLE", "option": "ELLIPSE",
"value": "6", "value": "3",
"point": 3 "point": 3
}, },
"19": { "19": {
"type": "clipping.color", "type": "clipping.color",
"ele": "//Layer//Shape[shape_type/@value='{option}' and contains(draw_type/@value, 'Outline')]/primary_color/@value", "ele": "//Layer//Shape[shape_type/@value='{option}' and contains(draw_type/@value, 'Outline')]/primary_color/@value",
"option": "ROUNDED_RECTANGLE", "option": "ELLIPSE",
"value": "FF43A2", "value": "4B7E5C",
"point": 3, "point": 3,
"desc": "채우기:secondary_color, 외곽선:primary_color" "desc": "채우기:secondary_color, 외곽선:primary_color"
}, },
"20": { "20": {
"type": "shadow", "type": "shadow",
"ele": "//Layer//Shape[shape_type/@value='{option}']", "ele": "//Layer//Shape[shape_type/@value='{option}']",
"option": "ROUNDED_RECTANGLE", "option": "ELLIPSE",
"value": { "value": {
"shadow": true, "shadow": true,
"width": "5", "width": "5",
"distance": "2", "distance": "2",
"blur": "2", "blur": "1",
"angle": "320" "angle": "320"
}, },
"point": 5, "point": 5,

Binary file not shown.