to print the manual page of a command in pdf, i will type in terminal (for eg. with the avconv command)

Code:
 man -t avconv | ps2pdf - > avconv.pdf
now i want to print the list of audio codecs used by avconv in pdf, that is

Code:
 avconv -codecs | grep A
how can i manage this ?