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 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
|
; Regenerate using dune build @gendune --auto-promote
(include dune.inc)
(executable
(name gen_dune)
(libraries liquidsoap_build_tools)
(modules gen_dune))
(rule
(alias gendune)
(deps
(source_tree .))
(target dune.inc.gen)
(action
(with-stdout-to
dune.inc.gen
(run ./gen_dune.exe))))
(rule
(alias gendune)
(action
(diff dune.inc dune.inc.gen)))
(rule
(alias mediatest)
(package liquidsoap)
(target first-concat.mp4)
(action
(run
ffmpeg
-hide_banner
-loglevel
error
-f
lavfi
-i
"testsrc=duration=20:size=1280x720:rate=30"
-vf
"setpts=N+1235"
%{target})))
(rule
(alias mediatest)
(package liquidsoap)
(target second-concat.mp4)
(action
(run
ffmpeg
-hide_banner
-loglevel
error
-f
lavfi
-i
"testsrc=duration=30:size=1280x720:rate=30"
-vf
"setpts=N+756"
%{target})))
(rule
(alias mediatest)
(package liquidsoap)
(target third-concat.mp4)
(action
(run
ffmpeg
-hide_banner
-loglevel
error
-f
lavfi
-i
"testsrc=duration=10:size=1280x720:rate=30"
-vf
"setpts=N+245"
%{target})))
(rule
(alias mediatest)
(package liquidsoap)
(target background.jpg)
(action
(run
ffmpeg
-hide_banner
-loglevel
error
-f
lavfi
-i
testsrc=size=1280x720
-t
1
-f
mjpeg
%{target})))
(rule
(alias mediatest)
(package liquidsoap)
(target logo.png)
(action
(run
ffmpeg
-hide_banner
-loglevel
error
-f
lavfi
-i
testsrc=size=50x50
-t
1
-f
mjpeg
%{target})))
(rule
(alias mediatest)
(package liquidsoap)
(deps
first-concat.mp4
second-concat.mp4
third-concat.mp4
ffmpeg_copy_concat.liq
../../src/bin/liquidsoap.exe
(package liquidsoap)
(source_tree ../../src/lib)
(:test_liq ../test.liq)
(:run_test ../run_test.exe))
(action
(run
%{run_test}
"FFmpeg copy+concat"
liquidsoap
%{test_liq}
ffmpeg_copy_concat.liq)))
(rule
(alias mediatest)
(package liquidsoap)
(deps
all_media_files
ffmpeg_complex_filter.liq
../../src/bin/liquidsoap.exe
(package liquidsoap)
(source_tree ../../src/lib)
(:test_liq ../test.liq)
(:run_test ../run_test.exe))
(action
(run
%{run_test}
"FFmpeg complex filter"
liquidsoap
%{test_liq}
ffmpeg_complex_filter.liq)))
(rule
(alias mediatest)
(package liquidsoap)
(target long-video.mp4)
(action
(run
ffmpeg
-hide_banner
-loglevel
error
-f
lavfi
-i
"testsrc=d=30:s=1920x1080:r=24,format=yuv420p"
-f
lavfi
-i
"sine=f=440:b=4"
-shortest
%{target})))
(rule
(alias mediatest)
(package liquidsoap)
(deps
long-video.mp4
ffmpeg_distributed_hls.liq
ffmpeg_distributed_hls_state.json
../../src/bin/liquidsoap.exe
(package liquidsoap)
(source_tree ../../src/lib)
(:test_liq ../test.liq)
(:run_test ../run_test.exe))
(action
(run
%{run_test}
"FFmpeg distributed HLS encoding"
liquidsoap
%{test_liq}
ffmpeg_distributed_hls.liq
--
long-video.mp4)))
(rule
(alias mediatest)
(package liquidsoap)
(deps
all_media_files
background.jpg
logo.png
ffmpeg_transparency_filter.liq
../../src/bin/liquidsoap.exe
(package liquidsoap)
(source_tree ../../src/lib)
(:test_liq ../test.liq)
(:run_test ../run_test.exe))
(action
(run
%{run_test}
"FFmpeg transparency filter"
liquidsoap
%{test_liq}
ffmpeg_transparency_filter.liq)))
(rule
(alias mediatest)
(package liquidsoap)
(deps
all_media_files
background.jpg
logo.png
ffmpeg_filter_changing_rate.liq
../../src/bin/liquidsoap.exe
(package liquidsoap)
(source_tree ../../src/lib)
(:test_liq ../test.liq)
(:run_test ../run_test.exe))
(action
(run
%{run_test}
"FFmpeg filter with changing video rate"
liquidsoap
%{test_liq}
./ffmpeg_filter_changing_rate.liq
--
./@ffmpeg[format='mp4',@audio[codec='aac',channels=2],@video[codec='libx264']].mp4
./@ffmpeg[format='mp4',@audio[codec='aac',channels=2],@video[codec='libx264',r=12]].mp4)))
(rule
(alias mediatest)
(package liquidsoap)
(deps
all_media_files
lufs_integrated.liq
../../src/bin/liquidsoap.exe
(package liquidsoap)
(source_tree ../../src/lib)
(:test_liq ../test.liq)
(:run_test ../run_test.exe))
(action
(run
%{run_test}
"Integrated LUFS computation"
liquidsoap
%{test_liq}
lufs_integrated.liq)))
(rule
(alias mediatest)
(package liquidsoap)
(deps long-video.mp4)
(target test-image.png)
(action
(run
ffmpeg
-hide_banner
-loglevel
error
-i
long-video.mp4
-frames:v
1
%{target})))
(rule
(alias mediatest)
(package liquidsoap)
(deps
test-image.png
image_decoder_duration.liq
../../src/bin/liquidsoap.exe
(package liquidsoap)
(source_tree ../../src/lib)
(:test_liq ../test.liq)
(:run_test ../run_test.exe))
(action
(run
%{run_test}
"Image decoder with fixed duration"
liquidsoap
%{test_liq}
image_decoder_duration.liq)))
|