
Put the number in cell A2 and apply this formula:
=A2 / (24 * 60 * 60)
In Format Cell choose the Time (see the screenshot above).
Or you can use this formula which outputs the result as text but in time format:
=TEXT(A2 / (24 * 60 * 60), "hh:mm:ss AM/PM")
HTH.