I am really new in programming and sorry if my question is not nicely formulated. I will try with time to be more precise.
I just stepped into the programmer world and already stacked :)
What I am trying to do is next: I want to execute or start or run (not sure how to say it) string that I get with python. Here is my small script and what I want to do is to automatically run gotten string in the linux terminal. Here is the script:
barcode = raw_input("Please insert the barcode for DECK 1 PAL:")
formula = "./bmdcapture -C 0 -m 1 -F nut -f pipe:1 | ffmpeg -i - -c:v prores -profile:v 3 -c:a libfdk_aac -b:a 384k -vf yadif -map 0 /path/to/file/" + barcode + ".mov"
print(formula)
What I should add to automatically start gotten string after input?
Thank you all. Zoran