Changeset 1530 for zzuf/trunk/README
- Timestamp:
- Jan 1, 2007, 8:14:55 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
zzuf/trunk/README
r1525 r1530 19 19 20 20 Fuzz the input of the "convert" program, using file foo.jpeg as the original 21 input and restricting fuzzing to filenames matching the regular expression 22 "foo[.]jpeg" (because convert will also open its own configuration files and 23 we do not want zzuf to fuzz them): 21 input and excluding .xml files from fuzzing (because convert will also open 22 its own configuration files and we do not want zzuf to fuzz them): 24 23 25 # zzuf - I 'foo[.]jpeg' convert -- foo.jpeg -format tga /dev/null24 # zzuf -E '\.xml$' convert -- foo.jpeg -format tga /dev/null 26 25 27 Fuzz the input of VLC, using file movie.avi as the original input, and 26 Fuzz the input of VLC, using file movie.avi as the original input and 27 restricting fuzzing to filenames that appear on the command line, then 28 28 generate fuzzy-movie.avi which is a file that can be fed to VLC to reproduce 29 29 the behaviour without using zzuf: 30 30 31 # zzuf - s 87423 -r 0.01 vlc movie.avi31 # zzuf -c -s 87423 -r 0.01 vlc movie.avi 32 32 33 # zzuf - s 87423 -r 0.01 cp movie.avi fuzzy-movie.avi33 # zzuf -c -s 87423 -r 0.01 cp movie.avi fuzzy-movie.avi 34 34 # vlc fuzzy-movie.avi 35 35 … … 37 37 than one minute to read the movie file: 38 38 39 # zzuf - q -s 0:10000 -T 60 -r 0.02 -I movie.avi\39 # zzuf -c -q -s 0:10000 -T 60 -r 0.02 \ 40 40 mplayer movie.avi -- -benchmark -vo null -fps 1000 41 41 … … 43 43 playing a sound file: 44 44 45 # zzuf - F 15 -q -s 0:10000 -T 60 -r 0.02 -I song.mp3\45 # zzuf -c -F 15 -q -s 0:10000 -T 60 -r 0.02 \ 46 46 mplayer song.mp3 -- -benchmark -ao null 47 47
Note: See TracChangeset
for help on using the changeset viewer.