Beyond Galactic Science Episode 1 - Getting the Tardis Key
This video is the first episode of Beyond Galactic Science starting the last quest getting the Tardis key, this was quite tough.
We also have a quick look at the weapons and tools.
The FTB Pack Code is THX2MYM
The avisynth scripts used are:
D:\dxtory\galacticscience\galacticscience-episode01.avs:
# Getting the Tardis Key
Import("D:\dxtory\galacticscience\common.avs")
Import("D:\dxtory\galacticscience\galacticscience-0001.avi.avs")
video1=last
Import("D:\dxtory\galacticscience\galacticscience-0002.avi.avs")
video2=last
Import("D:\dxtory\galacticscience\galacticscience-0003.avi.avs")
video3=last
Import("D:\dxtory\galacticscience\galacticscience-0004.avi.avs")
video4=last
TransMarbles(video1++video2++video3, video4, 60, 12, drop=false)
MakeVideo("Episode 1: Getting the Tardis Key")
D:\dxtory\galacticscience\common.avs:
global s2 = "Until next time..."
global pngfile = "D:\dxtory\galacticscience\GalacticScienceAndBeyondA.png"
function MakeVideo(clip c, string title, int "trim_in", int "trim_out")
{
sx = 460
sy = 574
font="Copasetic NF"
font_size=28
text_color = $d6d6c8 #light gray
halo_color = $ecb03c #light orange
halo_color = $df8519 #dark orange
fadein_frames = 30
fadeout_frames = 90
align = 5
title_frames = 150
trim_in = Default(trim_in, 0)
trim_out = Default(trim_out, c.FrameCount())
base = c.Trim(trim_in, trim_out)
pngclip = ImageSource(pngfile, pixel_type="RGB32", 0, 239)
intro = Subtitle(pngclip, title, sx, sy, font=font, size=font_size, text_color=text_color, halo_color=halo_color, lsp=60)
Overlay(base, pngclip, mask=pngclip.ShowAlpha().FadeOut(fadein_frames), mode="blend", opacity=0.9)
Overlay(last, intro, mask=intro.ShowAlpha().FadeIO(fadein_frames), 0, 0)
FadeOut(fadeout_frames)
Subtitle(s2, first_frame=FrameCount-title_frames-1, last_frame=FrameCount-1, size=font_size, align=align, text_color=text_color, halo_color=halo_color, lsp=60)
ConvertToYV12(interlaced=false)
tweak(bright=10)
return last
}
BlankClip(width=1280, height=720)
D:\dxtory\galacticscience\galacticscience-0001.avi.avs:
source = "D:\dxtory\galacticscience\galacticscience-0001.avi"
LoadPlugin("C:\Program Files (x86)\MeGUI\tools\ffms\ffms2.dll")
V = FFVideoSource(source, fpsnum=30, fpsden=1, threads=1).Lanczos4Resize(1280, 720)
A1 = FFAudioSource(source, track=1).Normalize(volume=1.0, show=false)
A2 = FFAudioSource(source, track=2).Normalize(volume=1.0, show=false)
commentary = MonoToStereo(A1, A1).AmplifyDB(1.5)
audio = MixAudio(commentary, A2, 0.9, 0.1)
AudioDub(V, audio)
return last
Other Videos By Duncan Webb
Other Statistics
Minecraft Statistics For Duncan Webb
Duncan Webb currently has 659,110 views spread across 662 videos for Minecraft. The game makes up over 14 days of published video on his channel, or 80.27% of the total watchable video for Minecraft on Duncan Webb's YouTube channel.