Video Creation

From wikiluntti

Introduction

Some ideas to create better videos.

ETH Zurich: https://ethz.ch/en/the-eth-zurich/education/innovation/video-in-teaching.html. Eight different uses of videos

  1. Personalising and cooperation
  2. Access to people and special locations
  3. Manipulate time and space
  4. Story-telling
  5. Historical film material
  6. Demonstrations
  7. Counteracting of misconceptions
  8. Explanatory videos: Content and animations

More detailed instructions about videos are available at the link.

Ubuntu 20.04: Key-Mon need a repositoru Ubuntu: Screenkey (apt-get install screenkey installs an old version).


Dramatic structure:

  • Exposition
  • Rising action
  • Climax
  • Falling action
  • Denoemenement

Attenborough Style of presentation: Get into this mindset: your main job is to be an entertainer, not a scientist

  • Tell a story; don’t simply talk about your methods and results.
  • A solid scientific narrative is critical for easy comprehension, and easy comprehension is critical for the D.A. style!
  • Practice your transitions between slides and subjects.
  • Kill clutter. Remove text. Complete sentences are to be banished from your talk.
    • Exception: A single sentence (or sentence fragment) at the top of each slide that capture’s that slide’s main point is a good idea.
  • Only show as much of the slide as people need to understand the point you are making at that precise moment. I
  • Be excited.
  • Be engaged
  • Jokes are tricky, you probably have more to lose than to gain
  • Try not to use a laser pointer

HOW TO STRUCTURE YOUR TALK

  • Phase 1. Setting up the talk.

**Big picture context **Key questions you are investigating (zoom in from the big picture). **Don’t bury the lede. Get quickly to your main result in broad brush strokes, and then move on.

  • Phase 2. Methods and Results

**Keep methods brief. **Answer the questions you raised earlier.

  • Phase 3. Concluding the talk.

**Briefly recap the answers to the questions laid out in the intro. **Provide context for why your results are important in the big picture. See the symmetry? We start with the big picture, and end with the big picture and how your results affect the way we think about the big picture.

  • Some final tips for crafting your talk:

**Know your audience **Anticipate questions and put the answers after your acknowledgements **Don’t bury your conclusions in acknowledgements

Ted talk https://www.fastcompany.com/3022070/the-7-steps-to-delivering-a-mind-blowing-ted-talk # Clear Can listeners repeat your big idea word for word? # Compelling. predictable is boring. "Hmmm. That’s interesting. Tell me more.” # Current # Congruent run it by your gut. Your point of view, not someone else’s. # Commercially Viable # Consistent # Competitive Edge

Theory

Audio: Audacity

  • Record Volume: 0.97 for my setup.
  • Effect -> Noise removal
  • Effect -> Bass boost/ Discant boost
  • Effect -> Truncate Silence 0.2 s + 0.2 s
  • Normalize
  • Normalize
  • Compress

https://www.instructables.com/How-to-Improve-Vocal-Quality-in-Audacity

OBS tips

https://www.youtube.com/c/YoramSolomon/videos

Manim package

See manim at

Short introduction to Manim.

Remove similar frames: FFMPEG

Remove similar frames

ffmpeg -i input.mp4 -vf mpdecimate,setpts=N/FRAME_RATE/TB out.mp4

see more info at https://stackoverflow.com/questions/37088517/remove-sequentially-duplicate-frames-when-using-ffmpeg

Background image

Add a background image using mogrify as a batch job:

mogrify -path ../gyro0_bg/ -format png -draw 'image Dst_Over 0,0 0,0 "../bg.png"' *.png

Video to GIF

Convert video to frames

ffmpeg -i input.mkv -f image2 image-%07d.png

Frames to video

ffmpeg -i image-%07d.png -vf fps=20,scale=720:-1 logo.gif

The smaller palette reduces the size remarkably. Create a palette with 16 colors: ffmpeg -i image-0001111.png -vf palettegen=16 palette.png

and use that to generate with an animated gif 5 fps:

ffmpeg -i image-%07d.png -i palette.png -filter_complex "fps=5,scale=720:-1:flags=lanczos[x];[x][1:v]paletteuse" logo5_palette.gif

Light Board

See lightboard.info for great examples, ideas and tutorials.

Reduce flickering

ffmpeg -fflags +genpts -i flickering.mp4 -fflags +genpts -i flickering.mp4 -filter_complex "[0:v]setpts=PTS-STARTPTS[top]; [1:v]setpts=PTS-STARTPTS+.033/TB, format=yuva420p, colorchannelmixer=aa=0.5[bottom]; [top][bottom]overlay=shortest=1" -c:v libx264 -crf 26 -an NOFLICKER.mp4

Mouse Effects: Linux

Ubuntu: Screenkey (apt-get install screenkey). https://www.thregr.org/~wavexx/software/screenkey/#installation-and-basic-usage

./screenkey -M -p fixed -g 20%x10%+45%-10% -t 0.5

Mouse Effects

Windows: Keypose, F9, shows keys and mouse.

clickII.ahk by Traycerb shows mouse:

ClickII.ahk

Ubuntu: Screenkey (apt-get install screenkey). https://www.thregr.org/~wavexx/software/screenkey/#installation-and-basic-usage

For beginners

High End

Theory