Advertisement
Guest User

Untitled

a guest
Sep 21st, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.66 KB | None | 0 0
  1. # CONFIG_LOWBITDEPTH=0
  2. $ time ffmpeg -v warning -i 1.mkv -frames:v 250 -y 1.y4m
  3. 239% cpu 4.237 total
  4. $ time ffmpeg -v warning -i 2.mkv -frames:v 1000 -y 2.y4m
  5. 182% cpu 5.787 total
  6. $ time aomdec -o 1.y4m --limit=250 --threads=8 1.mkv
  7. 233% cpu 4.474 total
  8. $ time aomdec -o 2.y4m --limit=1000 --threads=8 2.mkv
  9. 180% cpu 5.937 total
  10.  
  11. # CONFIG_LOWBITDEPTH=1
  12. $ time ffmpeg -v warning -i 1.mkv -frames:v 250 -y 1.y4m
  13. 239% cpu 4.292 total
  14. $ time ffmpeg -v warning -i 2.mkv -frames:v 1000 -y 2.y4m
  15. 182% cpu 5.811 total
  16. $ time aomdec -o 1.y4m --limit=250 --threads=8 1.mkv
  17. 237% cpu 3.209 total
  18. $ time aomdec -o 2.y4m --limit=1000 --threads=8 2.mkv
  19. 180% cpu 5.012 total
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement