I am trying to make a bunch of png\'s into a video using avconv, the png\'s are numbered like filename_ so I usually just use the command:
filename_
You can concatenate the files with cat and then use the image2pipe demuxer to read them in avconv. Like cat filename* | avconv -f image2pipe -i - ...
cat filename* | avconv -f image2pipe -i - ...