(epoch_time)
| 140 | |
| 141 | |
| 142 | def convert_secs2time(epoch_time): |
| 143 | need_hour = int(epoch_time / 3600) |
| 144 | need_mins = int((epoch_time - 3600 * need_hour) / 60) |
| 145 | need_secs = int(epoch_time - 3600 * need_hour - 60 * need_mins) |
| 146 | return need_hour, need_mins, need_secs |
| 147 | |
| 148 | |
| 149 | def time_file_str(): |