A list of useful commands for the ffmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
| # dotNetDave's (David McCarter) Editor Config - dotNetTips.com | |
| # Updates to this file are posted quarterly at: https://bit.ly/EditorConfig5 | |
| # Updated August 2023 | |
| # dotNetDave's books available at: http://bit.ly/RockYourCodeBooks | |
| # Rockin' the Code World with dotNetDave (weekly live show): https://www.c-sharpcorner.com/live/rockin-the-code-world-with-dotnetdave | |
| root = true | |
| # All Files | |
| [*] |
A list of useful commands for the ffmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
| library(tidyverse) | |
| n.samples = 25 | |
| set.seed(5) | |
| rerun(20,rnorm(n.samples)) %>% | |
| map_dfr(~data_frame(data = list(.x)), .id = 'samples') %>% | |
| mutate(mu = map_dbl(data,mean), | |
| se = map_dbl(data,~sd(.x)/sqrt(length(.x))), | |
| top = mu +1.96*se, |