find ... | xargs -0 -i {} mv {} ~/Pictures
which would run one mv per file. find ... | parallel -X -0 mv {} ~/Pictures
GNU Parallel is useful for many other applications. Watch the intro video to learn more: http://www.youtube.com/watch?v=OpaiGYxkSuQ
See more about sem: http://www.gnu.org/software/parallel/sem.html