Edit page blog/2010/03
[wiki.git] / blog / 2009 / 11
1 == Thu, Nov 26: The Day of Tofurky ==
2
3 {{ pictures/home/acetarium/2009-tofurky2/00122.jpeg | maxwidth=640}}
4 {{ pictures/home/acetarium/2009-tofurky/00022.jpg   | maxwidth=640}}
5
6 All photos:
7
8  * [[pictures/home/acetarium//2009-tofurky]]
9  * [[pictures/home/acetarium//2009-tofurky2]]
10
11 == Wed, Nov 25: Home, sweet home ==
12
13 {{http://i33.photobucket.com/albums/d52/mochifish/IMG_1566.jpg}}
14
15 == Exploring Julia in 4 dimensions ==
16
17 The discovery of the [[http://www.skytopia.com/project/fractal/mandelbulb.html | Mandelbulb]] awekened my old
18 passion for fractals.
19
20 So I took the time to re-encode my old rendering of the [[http://en.wikipedia.org/wiki/Quaternion | Quaternion]]
21 [[http://en.wikipedia.org/wiki/Julia_set | Julia set]] done with POV-Ray. Behold:
22
23 {{pictures/julia4D/julia4D-640x360.ogv | Quaternion Julia 4D fractal (640x360 @ 1200Kbit/s, Ogg Theora encoded)}}
24
25 The sound track is [[http://lite.modarchive.org/index.php?request=view_by_moduleid&query=59288 | UranChrome]],
26 an old-skool Amiga SoundTracker module composed by TorbJ0rn in 1989.
27
28 === Downloads ===
29
30 If your browser sucks at HTML5, you can directly download the video files, available in several formats:
31
32 || **Filename**                                                         || **Resolution**|| **Birate** ||**Video**||**Audio**||**Size**||
33 || [[pictures/julia4D/julia4D.ogv | julia4D.ogv (Ogg)]]                 || 1280x720 || 6000Kbit/s || Theora || Vorbis   || 60MB ||
34 || [[pictures/julia4D/julia4D-640x360.ogv | julia4D-640x360.ogv (Ogg)]] ||  640x320 || 1200Kbit/s || Theora || Vorbis   || 13MB ||
35 || [[pictures/julia4D/julia4D.avi | julia4D .avi]]                      || 1280x720 || 6000Kbit/s || H.264  || -        || 60MB ||
36 || [[pictures/julia4D/julia4D-640x360.avi | julia4D-640x360.avi]]       ||  640x360 || 1200kbit/s || H.264  || -        || 12MB ||
37
38 === Rendering notes ===
39
40 It took about 2 weeks of computation on a dual-core machine to render the 2048 high resolution frames contained in 82 seconds of video.
41 My previous renderings at lower resolution and lower iteration count were much faster.
42
43 A The high iteration count actually makes the fractal surface a little too polverized to appreciate. Adding transparency
44 and gradients is another bad idea as it complicates things even more. If I find the time and motivation to re-render the
45 animation, I'll look for better balance.
46
47 In case someone wants to experiment, these are the [[pictures/julia4D/julia4D.pov | scene source]]
48 and [[pictures/julia4D/julia4D.ini | ini file]] I used.
49
50 === Video encoding notes ===
51
52 The files were encoded from a sequence of PNG frames generated by POV-Ray,
53 using **ffmpeg** and **mencoder**:
54
55 {{{
56 # hires mpeg4
57 please mencoder 'mf://julia4D????.png' -mf fps=25 \
58         -ovc x264 -x264encopts bitrate=6000:pass=1:threads=2 -o julia4D.avi 
59
60 # lores mpeg4
61 please mencoder 'mf://julia4D????.png' -mf fps=25 -vf scale=640:360 \
62         -ovc x264 -x264encopts bitrate=1200:pass=1:threads=2 -o julia4D-640x360.avi 
63
64 # hires theora
65 please ffmpeg -f image2 -i julia4D%04d.png \
66         -threads 2 -vb 6000k -vcodec libtheora -acodec libvorbis -f ogg julia4D.ogv \
67         -i UranChrome-fx-short.wav -acodec libvorbis -ab 96k -newaudio
68
69 # lores theora
70 please ffmpeg -f image2 -i julia4D%04d.png \
71         -threads 2 -s 640x360 -vb 1200k -vcodec libtheora -f ogg julia4D-640x360.ogv \
72         -i UranChrome-fx-short.wav -acodec libvorbis -ab 96k -newaudio
73 }}}
74
75 This is the software I have used:
76
77 {{{
78 MEncoder SVN-r29800-4.4.2 (C) 2000-2009 MPlayer Team
79 FFmpeg version SVN-r20372, Copyright (c) 2000-2009 Fabrice Bellard, et al.
80 libtheora-1.1.0
81 libvorbis-1.2.0
82 x264-libs-0.26.20091026
83 }}}
84
85 The quality of the low-res Theora stream is noticeably lower than the corresponding low-res H.264. I don't know why.