You could ask your database admin to move those tables containing those blobs into their own directory or on a different filesystem- then you could continue to use blobs.
I am assuming that you already have those blobs in a table containing little or nothing else (besides a key of course) - if not, consider moving them out (You can use joins to replicate the queries you previously used, or create a view).
Because in most databases you can't place different columns from the same table on a different filesystem / device.
But some databases use separate storage for blobs. Consult your DBA.
Extracing the blobs is of course feasible, but you'll have to write a script (Either database script e.g. some dialect of SQL stored procedure or PHP) to do so.
Mark