content should contain the contents of the file you want to write. Since you never specify a content variable, when you get to f.write(content), Python doesn't know what content is and throws an error. If sound.wav is your .wav file, try:
In [1]: import gzip
In [2]: with open('sound.wav', 'rb') as f:
...: o = gzip.open('zipped_file.gz', 'wb')
...: o.write(f.read())
...: o.close()
...:
...:
This will write your zipped_file.gz file with the contents of sound.wav (I ran this on Python 2.6 where with wasn't supported with gzip, but using with statements as you did is better if you are using 2.7+). As for the jpg part, I'm not 100% sure I understand - do you just want to resave your gz file as a jpg? If you want to save them both in the same archive you will not be able to do it with gzip, but if you for some reason want to resave to a new archive, I guess you could try this:
In [3]: j = gzip.open('my_file.jpg', 'wb')
In [4]: o = gzip.open('zipped_file.gz', 'rb')
In [5]: j.write(o.read())
In [6]: j.close()
In [7]: o.close()
f.write(content)- are you missing some lines? – scytale Nov 27 '12 at 0:49f.write(content)– scytale Nov 27 '12 at 0:55