1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
|
(executable
(name meta)
(modules meta)
(libraries str metadata))
(executable
(name artist_title)
(modules artist_title)
(libraries str metadata))
(executable
(name basic)
(modules basic)
(libraries metadata))
(executable
(name dump)
(modules dump)
(libraries metadata))
(executable
(name mimetype)
(modules mimetype)
(libraries metadata))
(executable
(name test)
(modules test)
(optional)
(libraries metadata))
(rule
(alias citest)
(deps
test.mp3
test.png
test.jpg
test.avi
test.mp4
; test.mkv
; test.webm
test.wav
(glob_files id3v2/*.mp3))
(action
(progn
(run ./basic.exe)
(run ./test.exe)
(run ./artist_title.exe %{deps})
(run ./meta.exe %{deps}))))
(rule
(target test.mp3)
(action
(run
ffmpeg
-f
lavfi
-i
"sine=frequency=440:sample_rate=44100:duration=10"
-f
mp3
-write_id3v1
true
-metadata
"title=The title"
-metadata
"artist=The artist"
-metadata
"album=The album"
test.mp3)))
(rule
(target test.wav)
(action
(run
ffmpeg
-f
lavfi
-i
"sine=frequency=440:sample_rate=44100:duration=10"
-f
wav
-metadata
"title=The title"
-metadata
"artist=The artist"
-metadata
"album=The album"
test.wav)))
(rule
(target test.png)
(action
(run
ffmpeg
-f
lavfi
-i
color=size=320x240:color=blue
-vf
"drawtext=fontsize=30:fontcolor=white:x=(w-text_w)/2:y=(h-text_h)/2:text=Testing"
-metadata
"title=The title"
-metadata
"artist=The artist"
-frames:v
1
test.png)))
(rule
(target test.jpg)
(action
(run
ffmpeg
-f
lavfi
-i
color=size=320x240:color=blue
-vf
"drawtext=fontsize=30:fontcolor=white:x=(w-text_w)/2:y=(h-text_h)/2:text=Testing"
-frames:v
1
test.jpg)))
(rule
(target test.avi)
(action
(run
ffmpeg
-f
lavfi
-i
testsrc=duration=1:size=640x480:rate=25
-metadata
"title=The title"
-metadata
"artist=The artist"
-metadata
"year=2022"
test.avi)))
(rule
(target test.mp4)
(action
(run
ffmpeg
-f
lavfi
-i
testsrc=duration=1:size=640x480:rate=25
-metadata
"title=The title"
-metadata
"artist=The artist"
-metadata
"year=2022"
test.mp4)))
(rule
(target test.mkv)
(action
(run
ffmpeg
-f
lavfi
-i
testsrc=duration=1:size=640x480:rate=25
-metadata
"title=The title"
-metadata
"artist=The artist"
-metadata
"year=2022"
test.mkv)))
(rule
(target test.webm)
(action
(run
ffmpeg
-f
lavfi
-i
testsrc=duration=1:size=640x480:rate=25
-metadata
"title=The title"
-metadata
"artist=The artist"
-metadata
"year=2022"
test.webm)))
|