Python Forum
Python - Import file sequence into Media Pool
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python - Import file sequence into Media Pool
#2
you read all the file paths as one big string inside a list. It looks all paths are on one line in the text file
not tested but something like
with open(f"/Volumes/audio/TRANSCRIBE/SearchPhrases/{searchPhrase}.txt") as f:
    clipListRead = [item.strip() for item in f.readline().split(',') if item.strip()]
    print('cliplistRead:', clipListRead)
    clips = resolve.GetMediaStorage().AddItemsToMediaPool(clipListRead)
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply


Messages In This Thread
RE: Python - Import file sequence into Media Pool - by buran - Feb-02-2021, 05:11 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How would I be able to detect a media player app playing a video. phpjunkie 2 573 Oct-16-2023, 02:09 PM
Last Post: phpjunkie
Video doing data treatment on a file import-parsing a variable EmBeck87 15 2,813 Apr-17-2023, 06:54 PM
Last Post: EmBeck87
  Import XML file directly into Excel spreadsheet demdej 0 837 Jan-24-2023, 02:48 PM
Last Post: demdej
  Multiprocessing Pool Multiple Instances How to Kill by Pool ID sunny9495 0 757 Nov-16-2022, 05:57 AM
Last Post: sunny9495
  Python & Windows Media Player Extra 9 4,936 Apr-05-2022, 10:34 PM
Last Post: Extra
  Python multiprocessing Pool apply async wait for process to complete sunny9495 6 6,402 Apr-02-2022, 06:31 AM
Last Post: sunny9495
  How from sklearn.datasets import load_diabetes change to import to CSV file Anldra12 0 1,850 Dec-25-2021, 07:20 PM
Last Post: Anldra12
  How to import file and function in another folder SriRajesh 1 3,151 Dec-18-2021, 08:35 AM
Last Post: Gribouillis
  Pool multiprocessing - know current status in loop? korenron 0 1,632 Jul-28-2021, 08:49 AM
Last Post: korenron
  pool mysql error - not catch by try\except? korenron 1 2,139 Jul-05-2021, 11:26 AM
Last Post: ibreeden

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020