Home | History | Annotate | Download | only in examples

Lines Matching full:findall

309     ar = re.findall("(mp3lame)", command_output)
420 ar = re.findall("Movie-Aspect is ([0-9]+\.?[0-9]*:[0-9]+\.?[0-9]*)", command_output)
428 #idh = re.findall("ID_VIDEO_HEIGHT=([0-9]+)", command_output)
445 idl = re.findall("ID_AUDIO_ID=([0-9]+)", command_output)
455 idl = re.findall("ID_SUBTITLE_ID=([0-9]+)", command_output)
490 idl = re.findall("ID_LENGTH=([0-9.]*)", command_output)
554 idl = re.findall("-vf crop=([0-9]+:[0-9]+:[0-9]+:[0-9]+)", command_output1)
555 idl = idl + re.findall("-vf crop=([0-9]+:[0-9]+:[0-9]+:[0-9]+)", command_output2)
556 idl = idl + re.findall("-vf crop=([0-9]+:[0-9]+:[0-9]+:[0-9]+)", command_output3)
557 idl = idl + re.findall("-vf crop=([0-9]+:[0-9]+:[0-9]+:[0-9]+)", command_output4)
558 idl = idl + re.findall("-vf crop=([0-9]+:[0-9]+:[0-9]+:[0-9]+)", command_output5)
917 al = re.findall("([0-9]+).*?([0-9]+)", d['video_scale'])
963 options = dict(re.findall('([^: \t\n]*)\s*:\s*(".*"|[^ \t\n]*)', file(args[0]).read()))