13.Invention, Intellectual property, and income

This week assigment

individual assignment:
- develop a plan for dissemination of your final project prepare drafts of your summary slide (presentation.png, 1920x1080) and video clip (presentation.mp4, 1080p HTML5, < ~minute, < ~10 MB) and put them in your root directory

License

Attribution - Noncommercial - No modification allowed

A CC license that displays the credits (name, title, etc.) of the original author, is a non-profit purpose, and can be freely redistributed under the main condition that the original work is not modified.

What is Creative Commons License(Japanese)

Lotus window presentation

Lotus window video

※ The windows in the video open and close at quadruple speed. x4


ffmpeg

I used an app called ffmpeg to compress the video size. You can easily change the video size and extension by simply entering a command from the terminal.

$ ffmpeg -i lotus_window.mp4 -vcodec libx264 -b:v 750k -vf scale=-2:1080 -acodec mp2 -b:a 256k -ar 48000 -ac 2 presentation.mp4

But the problem is… There is no sound!

I got some advice from the instructor. (Less than) What about -acodec mp2 -> -acodec aac? (Use aac instead of mp2 for voice codec)

$ ffmpeg -i lotus_window.mp4 -vcodec libx264 -b:v 750k -vf scale=-2:1080 -acodec aac -b:a 256k -ar 48000 -ac 2 presentation.mp4

This time it’s perfect.