WCCChallenge - Origami

WCCChallenge - Origami

Video Collaging Origami

For this week's challenge : Origami, I decided to take some creative imagination of the theme and decided to use LivecodingYoutube (livecodingyoutube.github.io), this week. Due to its performative approach and video collage, I am able to take other video ( chose creative common video and credits are below) and turn them into a reimaging.

Final code of Performance is located on the last Code Box

Credits of Video for Creative use : Anh Dao - Origami Tutorials

To mention the zooming in/out is done by pressing ctrl & + / ctrl & -

Video

Website LivecodingYoutube

Code


// press shift+enter to run selected code (or each line if not selected)
// press alt+enter to go to the documentation.
// here is some example code, run line by line and see what happens.
// See the performance video here: https://youtu.be/abvZVOEq67I

//Video Credits to Anh Dao - Origami Tutorials - https://www.youtube.com/c/PaperWorldOrigamiTutorials

//youtube ids of the 3 origami videos 
Turtle = "pM7lzOEC82g" 
Koala = "lZo6mTrvFTE"
Dragonfly = "ieZ4OF551RM"

create(1,1,Dragonfly) // youtube id is pasted when you click a thumbnail
add(1,1,Turtle)
add(1,1, Koala)

//youtube ids of the 3 origami videos 
Turtle = "pM7lzOEC82g" 
Koala = "lZo6mTrvFTE"
Dragonfly = "ieZ4OF551RM"

create(1,1,Dragonfly) // youtube id is pasted when you click a thumbnail
add(1,1,Turtle)
add(3,3, Koala)

speed([0,1,4],10)
speed([3,6,8],0.5)
speed([2,7],-2.8)



jump([0,4,7],14,20)
jump([1,2,3],5,10)


play(0)
play(all)
pause()
play([0,3])
pause(all)
seek(all,0)
play(">0")
loopAt(1,43,72) // loop video 1 from 3 second for 2 seconds
loopAt([2,8],190,14)
loop([1,2,3,5,6],1,4) // loop video 2 and video 1 from 1 second ago for 4 seconds

play([0,3])
phase([0,3],0.25)
play()
fadeOut(all)

// full code

// press shift+enter to run selected code (or each line if not selected)
// press alt+enter to go to the documentation.
// here is some example code, run line by line and see what happens.
// See the performance video here: https://youtu.be/abvZVOEq67I

//Video Credits to Anh Dao - Origami Tutorials - https://www.youtube.com/c/PaperWorldOrigamiTutorials

//youtube ids of the 3 origami videos 
Turtle = "pM7lzOEC82g" 
Koala = "lZo6mTrvFTE"
Dragonfly = "ieZ4OF551RM"

create(1,1,Dragonfly) // youtube id is pasted when you click a thumbnail
add(1,1,Turtle)
add(3,3, Koala)
cue([19,22,29],Dragonfly)
jump([19,22,29],10,30)
cue([10,17,24],Turtle)
play(all)
speed([0,1,4],10)
speed([3,6,8],0.5)
speed([2,7],-2.8)

speed([10,20,30],0.000000000001)
speed([25,32,7,19],-0.005)



jump([0,4,7],14,20)
jump([1,2,3],5,10)



play(0)
play(all)
pause()
play([0,3])
pause(all)
seek(all,0)
play(">0")
loopAt(1,43,72) // loop video 1 from 3 second for 2 seconds
loopAt([2,8],190,14)
loop([1,2,3,5,6],1,4) // loop video 2 and video 1 from 1 second ago for 4 seconds

play([0,3])
phase([0,3,16],0.25)
play()
fadeOut(all)