With `GNU Units version 2.19`:
$ units --one-line --compact '2 fortnight' seconds
2419200
BSD implementation of `units` doesn't have `--one-line --compact` but you can use awk:
$ units '2 fortnight' seconds | awk 'NR == 1 {print $2}'
2419200