We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fca2eb0 commit fbbd100Copy full SHA for fbbd100
src/plotting/convenience.jl
@@ -7246,7 +7246,7 @@ function evolutionVideo(
7246
############################################################################################
7247
7248
prog_bar = Progress(
7249
- nrow(simulation_table),
+ length(times),
7250
dt=0.5,
7251
desc="Analyzing and plotting the data... ",
7252
color=:blue,
@@ -7272,7 +7272,7 @@ function evolutionVideo(
7272
f = Figure()
7273
7274
# Initialize the animation stream
7275
- vs = VideoStream(f; framerate)
+ vs = VideoStream(f; format="mkv", framerate)
7276
7277
col_iterator = enumerate(zip(quantities, labels, colorranges))
7278
0 commit comments