-
Notifications
You must be signed in to change notification settings - Fork 4
/
inaseg.py
103 lines (100 loc) · 4.03 KB
/
inaseg.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# Load the API
import os
import glob
import logging
import tempfile
import asyncio
from segment.shazam import shazaming
from network.download import ytbdl
from segment.segment import extract_mah_stuff, extract_music, segment_wrapper,\
SEGMENT_THRES, TimestampMismatch
if __name__ == '__main__':
import argparse
parser = argparse.ArgumentParser(description='ina music segment')
parser.add_argument('--media', type=str, help='file path or weblink')
parser.add_argument(
'--outdir', type=str, default=tempfile.gettempdir(),
help='directory media will be downloaded into (if url) and extracted into;\
if docker, use as the mounted folder! and make sure -u is you!')
parser.add_argument(
'--shazam', action='store_true', default=False,
help='shazam the extracted files')
parser.add_argument(
'--shazam_coverart', type=str, default='',
help='save shazam cover art too')
parser.add_argument(
'--aria', type=int, default=None,
help='use aria, specifying the number of threads')
parser.add_argument(
'--shazam_multithread', type=int, default=1,
help='use multithreaded shazam')
parser.add_argument(
'--soundonly', type=str, default=r'-f bestaudio',
help='specify an empty string to extract both video and audio')
parser.add_argument(
'--seg_connect', type=int, default=5,
help='max seconds for 2 music segments to be considered \
the same (takes care of random miss-detection/small rap segments)')
parser.add_argument(
'--cleanup', action='store_true', default=False,
help='delete the original media file once completed.')
parser.add_argument(
'--max_segment_length',
type=int,
default=SEGMENT_THRES,
help='for computers with limited RAM (eg a 5 hrs stream \
requires ~6GB VRAM), set this to process streams in \
this speficied segments to avoid ram overflow. in seconds.')
logging.basicConfig(
level=logging.DEBUG,
format='%(asctime)s %(levelname)-8s %(message)s',
handlers=[
logging.FileHandler('./inaseg_inst.log'),
logging.StreamHandler()
])
args = parser.parse_args()
# media = ytbdl('')
if args.media is not None:
media = args.media
else:
media = 'https://www.bilibili.com/video/BV16S411w7dY/?spm_id_from=333.999.0.0'
raise Exception('no media')
if 'https:' in media:
media = ytbdl(
media, soundonly=args.soundonly,
aria=args.aria, outdir=args.outdir)
if len(glob.glob(os.path.join(
args.outdir,
f'*{os.path.splitext(os.path.basename(media))[0][1:]}_*'))) == 0:
import tensorflow as tf
gpus = tf.config.experimental.list_physical_devices('GPU')
logging.info(gpus)
tf.get_logger().setLevel(logging.WARNING)
try:
timestamps = []
saved_timestamp = extract_music(segment_wrapper(
media, segment_length_thres=args.max_segment_length),
segment_connect=args.seg_connect)
extract_mah_stuff(
media, segmented_stamps=saved_timestamp,
outdir=args.outdir, rev=False,
timestamps=timestamps,
soundonly=(args.soundonly != ''))
saved_timestamp = None
except TimestampMismatch:
raise
else:
logging.warning((
'segmentation', media, 'stopped to prevent posssible duplication'))
logging.info(['segmentation', media, 'successful'])
if args.cleanup and os.path.isfile(media):
os.remove(media)
if args.shazam:
async def myshazam():
await shazaming(
args.outdir, media, args.shazam_coverart,)
loop = asyncio.get_event_loop()
loop.run_until_complete(myshazam())
loop.close()
import sys
sys.exit(0)