diff --git a/helper.py b/helper.py index c19005a..d8eb79b 100644 --- a/helper.py +++ b/helper.py @@ -38,7 +38,6 @@ def split_string(string, max_chars_per_line): return lines[0] - def darken_images(images_folder, output_folder): # Set desired darkness dark = 0.5 @@ -135,3 +134,38 @@ def create_new_topic_dirs(topic, project_dir): os.makedirs(f"{project_dir}/sources/images/{topic}") os.makedirs(f"{project_dir}/sources/images/{topic}/cropped") os.makedirs(f"{project_dir}/sources/images/{topic}/cropped/darken") + + +def fix_text_syntax(font: str, text_file): + with open(text_file, 'r', encoding="utf-8") as file: + lines = file.readlines() + + # Bebas can't display ’ -> replace with ' + if font.__contains__("Bebas"): + # open file in read mode + file = open(text_file, "r") + replaced_content = "" + + # looping through the file + for line in file: + # stripping line break + line = line.strip() + + # replacing the texts + new_line = line.replace("’", "'").replace("’", "'") + + # concatenate the new string and add an end-line break + replaced_content = replaced_content + new_line + "\n" + + # close the file + file.close() + + # Open file in write mode + write_file = open(text_file, "w") + + # overwriting the old file contents with the new/replaced content + write_file.write(replaced_content) + + # close the file + write_file.close() + diff --git a/main.py b/main.py index de0b716..0d68bd2 100644 --- a/main.py +++ b/main.py @@ -5,8 +5,8 @@ import helper # Available topics: christian, fitness TOPIC = "fitness" SHOW_AUTHOR = True -CUSTOMER_NAME = "test_author" -NUM_OF_POSTS = 3 # If number of posts if set to -1, it will so as many posts as in the data file +CUSTOMER_NAME = "final_no_logo" +NUM_OF_POSTS = -1 # If number of posts if set to -1, it will so as many posts as in the data file # Define the paths and values to everything project_dir = os.getcwd().replace("\\", "/") @@ -14,8 +14,9 @@ images_folder = f"{project_dir}/sources/images/{TOPIC}" images_folder_cropped = f"{images_folder}/cropped" images_folder_cropped_darken = f"{images_folder_cropped}/darken" text_file = f"{project_dir}/sources/text_data/{TOPIC}.txt" -quote_font = f"{project_dir}/sources/fonts/MouldyCheeseRegular-WyMWG.ttf" -author_font= f"{project_dir}/sources/fonts/MouldyCheeseRegular-WyMWG.ttf" +# quote_font = f"{project_dir}/sources/fonts/MouldyCheeseRegular-WyMWG.ttf" # Bible +quote_font = f"{project_dir}/sources/fonts/Bebas-KM7y.ttf" # Fitness +author_font = f"{project_dir}/sources/fonts/MangabeyRegular-rgqVO.otf" output_folder = f"{project_dir}/customers/{TOPIC}" logo_file = f"{project_dir}/sources/logo.png" @@ -23,16 +24,18 @@ logo_file = f"{project_dir}/sources/logo.png" if __name__ == "__main__": # helper.create_new_topic_dirs(TOPIC, project_dir) + # helper.fix_text_syntax(quote_font, text_file) + # helper.cut_images_new(images_folder, images_folder_cropped) # helper.darken_images(images_folder_cropped, images_folder_cropped_darken) # LOGO - post_handler.create_posts(images_folder=images_folder_cropped_darken, text_file=text_file, - quote_font=quote_font, author_font=author_font, output_folder=output_folder, - logo_file=logo_file, customer_name=CUSTOMER_NAME, number_of_posts=NUM_OF_POSTS, show_author=SHOW_AUTHOR) + # post_handler.create_posts(images_folder=images_folder_cropped_darken, text_file=text_file, + # quote_font=quote_font, author_font=author_font, output_folder=output_folder, + # logo_file=logo_file, customer_name=CUSTOMER_NAME, number_of_posts=NUM_OF_POSTS, show_author=SHOW_AUTHOR) # NO LOGO - # post_handler.create_posts(images_folder=images_folder_cropped_darken, text_file=text_file, - # font_dir=font_dir, output_folder=output_folder, - # customer_name=customer_name, number_of_posts=number_of_posts) + post_handler.create_posts(images_folder=images_folder_cropped_darken, text_file=text_file, + quote_font=quote_font, author_font=author_font, output_folder=output_folder, + customer_name=CUSTOMER_NAME, number_of_posts=NUM_OF_POSTS, show_author=SHOW_AUTHOR) diff --git a/post_handler.py b/post_handler.py index 2faab3a..fc09104 100644 --- a/post_handler.py +++ b/post_handler.py @@ -23,10 +23,6 @@ def create_dirs(output_folder, customer_name): def create_posts(images_folder, text_file, quote_font, author_font, output_folder, customer_name, number_of_posts, logo_file: str = None, show_author : bool = False): - run_time_average = 0 - if number_of_posts > 1: - start_time_total = time.time() - # json_data = json_handler.get_data(json_file) # verses: str = json_data[0] # refs: str = json_data[1] @@ -35,10 +31,17 @@ def create_posts(images_folder, text_file, quote_font, author_font, output_folde with open(text_file, 'r', encoding='utf-8') as file: quotes = file.readlines() + # If number_of_posts is set to -1, it will do it for the amount of quotes there is in the data file + if number_of_posts == -1: + number_of_posts = len(quotes) - 1 + + run_time_average = 0 + if number_of_posts > 1: + start_time_total = time.time() # Get list of photos in the specified folder and shuffle it image_num = list() - image_files = [f"{images_folder}/{file}" for file in os.listdir(images_folder) if file.endswith(".jpg") or file.endswith(".png")] + image_files = [f"{images_folder}/{file}" for file in os.listdir(images_folder) if file.endswith(".jpg") or file.endswith(".png") or file.endswith(".jpeg")] random_for_image = random.randint(0, len(image_files) - 1) for i in range(number_of_posts): image_num.append((random_for_image + i) % len(image_files)) @@ -47,9 +50,6 @@ def create_posts(images_folder, text_file, quote_font, author_font, output_folde # Creating folder for customer output_path = create_dirs(output_folder, customer_name) - # If number_of_posts is set to -1, it will do it for the amount of quotes there is in the data file - if number_of_posts == -1: - number_of_posts = len(quotes)-1 for i in range(number_of_posts): start_time = time.time() print(f"Creating Post #{i}") @@ -57,12 +57,11 @@ def create_posts(images_folder, text_file, quote_font, author_font, output_folde text = quotes[i] quote = text.split(":::") quote_text = quote[0] - if show_author: + if show_author and quote_text != text: author_text = quote[1] if author_text.rstrip(" ") == "": author_text = None - # Choose a random image file from the list random_image_num = image_num[0] del image_num[0] @@ -75,30 +74,31 @@ def create_posts(images_folder, text_file, quote_font, author_font, output_folde file_name = f"/{i}-{image_license}.jpg" create_post(image_file=image_file, quote_text=quote_text, - font_dir=font_dir, output_path=output_path, file_name=file_name, + quote_font=quote_font, author_font=author_font, output_path=output_path, file_name=file_name, logo_file=logo_file, customer_name=customer_name, author_text=author_text) end_time = time.time() run_time = end_time - start_time run_time_average += run_time print(f"\033[0;34m DONE #{i}, Run time:", round(run_time, 2), "seconds! \033[0m", output_path) + author_text = "" + quote_text = "" if number_of_posts > 1: run_time_average /= number_of_posts end_time_total = time.time() run_time_total = end_time_total - start_time_total print(f"\n\033[0;32mDone making {number_of_posts} posts for {customer_name}!" - f"\nTotal run time:", round(run_time_total, 2), "seconds!" - f"\nAverage run time:", round(run_time_average, 2), - "seconds = ", round(run_time_average / 60, 2), " minutes! \033[0m") + f"\nTotal run time:", round(run_time_total, 2), "seconds = ", round(run_time_total / 60, 2), " minutes!", + f"\nAverage run time:", round(run_time_average, 2), "seconds!\033[0m") -def create_post(image_file, quote_text, font_dir, output_path, file_name, logo_file, customer_name, author_text: str = None): +def create_post(image_file, quote_text, quote_font, author_font, output_path, file_name, logo_file, customer_name, author_text: str = None): # Open specific image img = Image.open(image_file) # Load selected font - font = ImageFont.truetype(font=f'{font_dir}', size=75) + quote_font = ImageFont.truetype(font=f'{quote_font}', size=75) # Create DrawText object draw = ImageDraw.Draw(im=img) @@ -113,6 +113,8 @@ def create_post(image_file, quote_text, font_dir, output_path, file_name, logo_f max_char_count = 25 # Create a wrapped text object using scaled character count new_text = textwrap.fill(text=quote_text, width=max_char_count) + # FIX FONT WITH SPACES + new_text = new_text.replace(" ", " ") # new_text = helper_images.split_string(text, max_char_count) # Define the positions of logo and text x_logo = 0 @@ -124,28 +126,29 @@ def create_post(image_file, quote_text, font_dir, output_path, file_name, logo_f # Draw the shadow text shadow_color = (0, 0, 0, 128) shadow_position = (x_text+5, y_text+5) - draw.text(shadow_position, new_text, font=font, fill=shadow_color, anchor='mm', align='center') + draw.text(shadow_position, new_text, font=quote_font, fill=shadow_color, anchor='mm', align='center') # Add main text to the image - draw.text(position, text=new_text, font=font, fill=(255, 255, 255, 255), anchor='mm', + draw.text(position, text=new_text, font=quote_font, fill=(255, 255, 255, 255), anchor='mm', align='center') if author_text is not None: # Add author text # Count '\n' in the text to see how many lines there are + author_font = ImageFont.truetype(font=f'{author_font}', size=45) num_of_lines = new_text.count("\n") + 1 - line_height = 60 # TODO CHECK REAL HEIGHT - text_height = line_height * num_of_lines + line_height = 55 # TODO CHECK REAL HEIGHT + text_height = line_height * num_of_lines + 40 # TODO CHANGE AUTHORS FONT author_position = (position[0], position[1] + text_height) - draw.text(author_position, text=author_text, font=font, fill=(255, 255, 255, 255), anchor='mm', align='center') + draw.text(author_position, text=author_text, font=author_font, fill=(255, 255, 255, 255), anchor='mm', align='center') if logo_file is not None: # Open logo file img_logo = Image.open(logo_file) - # Reduce the alpha of the overlay image by 50% - alpha = 0.7 + # Reduce the alpha of the overlay image by 40% + alpha = 0.6 enhancer = ImageEnhance.Brightness(img_logo) img_logo_darken = enhancer.enhance(alpha) diff --git a/sources/fonts/Bebas-KM7y.ttf b/sources/fonts/Bebas-KM7y.ttf new file mode 100644 index 0000000..eaff486 Binary files /dev/null and b/sources/fonts/Bebas-KM7y.ttf differ diff --git a/sources/fonts/BebasNeueBold-7B9LE.ttf b/sources/fonts/BebasNeueBold-7B9LE.ttf new file mode 100644 index 0000000..45268ef Binary files /dev/null and b/sources/fonts/BebasNeueBold-7B9LE.ttf differ diff --git a/sources/fonts/BebasNeueBold-w1w42.otf b/sources/fonts/BebasNeueBold-w1w42.otf new file mode 100644 index 0000000..773a6d7 Binary files /dev/null and b/sources/fonts/BebasNeueBold-w1w42.otf differ diff --git a/sources/fonts/BebasNeueBook-d9A1l.ttf b/sources/fonts/BebasNeueBook-d9A1l.ttf new file mode 100644 index 0000000..ff85d2f Binary files /dev/null and b/sources/fonts/BebasNeueBook-d9A1l.ttf differ diff --git a/sources/fonts/BebasNeueBook-mLWvV.otf b/sources/fonts/BebasNeueBook-mLWvV.otf new file mode 100644 index 0000000..c123e38 Binary files /dev/null and b/sources/fonts/BebasNeueBook-mLWvV.otf differ diff --git a/sources/fonts/BebasNeueLight-L3ajy.ttf b/sources/fonts/BebasNeueLight-L3ajy.ttf new file mode 100644 index 0000000..072157e Binary files /dev/null and b/sources/fonts/BebasNeueLight-L3ajy.ttf differ diff --git a/sources/fonts/BebasNeueLight-PK7jP.otf b/sources/fonts/BebasNeueLight-PK7jP.otf new file mode 100644 index 0000000..8efa702 Binary files /dev/null and b/sources/fonts/BebasNeueLight-PK7jP.otf differ diff --git a/sources/fonts/BebasNeueRegular-X34j2.otf b/sources/fonts/BebasNeueRegular-X34j2.otf new file mode 100644 index 0000000..26cfb38 Binary files /dev/null and b/sources/fonts/BebasNeueRegular-X34j2.otf differ diff --git a/sources/fonts/BebasNeueRegular-gxj83.ttf b/sources/fonts/BebasNeueRegular-gxj83.ttf new file mode 100644 index 0000000..130cd82 Binary files /dev/null and b/sources/fonts/BebasNeueRegular-gxj83.ttf differ diff --git a/sources/fonts/BebasNeueThin-4B3mY.ttf b/sources/fonts/BebasNeueThin-4B3mY.ttf new file mode 100644 index 0000000..64bbda9 Binary files /dev/null and b/sources/fonts/BebasNeueThin-4B3mY.ttf differ diff --git a/sources/fonts/BebasNeueThin-owB7q.otf b/sources/fonts/BebasNeueThin-owB7q.otf new file mode 100644 index 0000000..fce741f Binary files /dev/null and b/sources/fonts/BebasNeueThin-owB7q.otf differ diff --git a/sources/fonts/MangabeyRegular-rgqVO.otf b/sources/fonts/MangabeyRegular-rgqVO.otf new file mode 100644 index 0000000..1576470 Binary files /dev/null and b/sources/fonts/MangabeyRegular-rgqVO.otf differ diff --git a/sources/fonts/NugoSansLight-9YzoK.ttf b/sources/fonts/NugoSansLight-9YzoK.ttf new file mode 100644 index 0000000..f633930 Binary files /dev/null and b/sources/fonts/NugoSansLight-9YzoK.ttf differ diff --git a/sources/fonts/info.txt b/sources/fonts/info.txt new file mode 100644 index 0000000..d0a7907 --- /dev/null +++ b/sources/fonts/info.txt @@ -0,0 +1,2 @@ +license: Freeware +link: https://www.fontspace.com/bebas-font-f13400 \ No newline at end of file diff --git a/sources/logo.png b/sources/logo.png index be4c659..cdb342d 100644 Binary files a/sources/logo.png and b/sources/logo.png differ diff --git a/sources/logo.psd b/sources/logo.psd index 2c70e92..a94280e 100644 Binary files a/sources/logo.psd and b/sources/logo.psd differ diff --git a/sources/promotion/fiverr/AD_Feed_Light.png b/sources/promotion/fiverr/christian/AD_Feed_Light.png similarity index 100% rename from sources/promotion/fiverr/AD_Feed_Light.png rename to sources/promotion/fiverr/christian/AD_Feed_Light.png diff --git a/sources/promotion/fiverr/AD_Feed_Light2.png b/sources/promotion/fiverr/christian/AD_Feed_Light2.png similarity index 100% rename from sources/promotion/fiverr/AD_Feed_Light2.png rename to sources/promotion/fiverr/christian/AD_Feed_Light2.png diff --git a/sources/promotion/fiverr/AD_Profile_Light.png b/sources/promotion/fiverr/christian/AD_Profile_Light.png similarity index 100% rename from sources/promotion/fiverr/AD_Profile_Light.png rename to sources/promotion/fiverr/christian/AD_Profile_Light.png diff --git a/sources/promotion/fiverr/fiver pic1.psd b/sources/promotion/fiverr/christian/fiver pic1.psd similarity index 100% rename from sources/promotion/fiverr/fiver pic1.psd rename to sources/promotion/fiverr/christian/fiver pic1.psd diff --git a/sources/promotion/fiverr/fiverr banner1.png b/sources/promotion/fiverr/christian/fiverr banner1.png similarity index 100% rename from sources/promotion/fiverr/fiverr banner1.png rename to sources/promotion/fiverr/christian/fiverr banner1.png diff --git a/sources/promotion/fiverr/fiverr pic sizing better.png b/sources/promotion/fiverr/christian/fiverr pic sizing better.png similarity index 100% rename from sources/promotion/fiverr/fiverr pic sizing better.png rename to sources/promotion/fiverr/christian/fiverr pic sizing better.png diff --git a/sources/promotion/fiverr/fiverr pic2 - Copy.psd b/sources/promotion/fiverr/christian/fiverr pic2 - Copy.psd similarity index 100% rename from sources/promotion/fiverr/fiverr pic2 - Copy.psd rename to sources/promotion/fiverr/christian/fiverr pic2 - Copy.psd diff --git a/sources/promotion/fiverr/fiverr pic2 better sizing.png b/sources/promotion/fiverr/christian/fiverr pic2 better sizing.png similarity index 100% rename from sources/promotion/fiverr/fiverr pic2 better sizing.png rename to sources/promotion/fiverr/christian/fiverr pic2 better sizing.png diff --git a/sources/promotion/fiverr/fiverr pic2 better sizing.psd b/sources/promotion/fiverr/christian/fiverr pic2 better sizing.psd similarity index 100% rename from sources/promotion/fiverr/fiverr pic2 better sizing.psd rename to sources/promotion/fiverr/christian/fiverr pic2 better sizing.psd diff --git a/sources/promotion/fiverr/fiverr pic2 copy.png b/sources/promotion/fiverr/christian/fiverr pic2 copy.png similarity index 100% rename from sources/promotion/fiverr/fiverr pic2 copy.png rename to sources/promotion/fiverr/christian/fiverr pic2 copy.png diff --git a/sources/promotion/fiverr/fiverr pic2 with socials.png b/sources/promotion/fiverr/christian/fiverr pic2 with socials.png similarity index 100% rename from sources/promotion/fiverr/fiverr pic2 with socials.png rename to sources/promotion/fiverr/christian/fiverr pic2 with socials.png diff --git a/sources/promotion/fiverr/fiverr pic2.png b/sources/promotion/fiverr/christian/fiverr pic2.png similarity index 100% rename from sources/promotion/fiverr/fiverr pic2.png rename to sources/promotion/fiverr/christian/fiverr pic2.png diff --git a/sources/promotion/fiverr/fiverr pic2.psd b/sources/promotion/fiverr/christian/fiverr pic2.psd similarity index 100% rename from sources/promotion/fiverr/fiverr pic2.psd rename to sources/promotion/fiverr/christian/fiverr pic2.psd diff --git a/sources/promotion/fiverr/fiverr_banner.psd b/sources/promotion/fiverr/christian/fiverr_banner.psd similarity index 100% rename from sources/promotion/fiverr/fiverr_banner.psd rename to sources/promotion/fiverr/christian/fiverr_banner.psd diff --git a/sources/promotion/fiverr/promotion_video.mp4 b/sources/promotion/fiverr/christian/promotion_video.mp4 similarity index 100% rename from sources/promotion/fiverr/promotion_video.mp4 rename to sources/promotion/fiverr/christian/promotion_video.mp4 diff --git a/sources/promotion/fiverr/promotion_video/62-1Peter122_52_25_20_Moment.jpg b/sources/promotion/fiverr/christian/promotion_video/62-1Peter122_52_25_20_Moment.jpg similarity index 100% rename from sources/promotion/fiverr/promotion_video/62-1Peter122_52_25_20_Moment.jpg rename to sources/promotion/fiverr/christian/promotion_video/62-1Peter122_52_25_20_Moment.jpg diff --git a/sources/promotion/fiverr/promotion_video/78-Ephesians432_26_41_13_Moment.jpg b/sources/promotion/fiverr/christian/promotion_video/78-Ephesians432_26_41_13_Moment.jpg similarity index 100% rename from sources/promotion/fiverr/promotion_video/78-Ephesians432_26_41_13_Moment.jpg rename to sources/promotion/fiverr/christian/promotion_video/78-Ephesians432_26_41_13_Moment.jpg diff --git a/sources/promotion/fiverr/promotion_video/83-Proverbs817_19_10_0_Moment.jpg b/sources/promotion/fiverr/christian/promotion_video/83-Proverbs817_19_10_0_Moment.jpg similarity index 100% rename from sources/promotion/fiverr/promotion_video/83-Proverbs817_19_10_0_Moment.jpg rename to sources/promotion/fiverr/christian/promotion_video/83-Proverbs817_19_10_0_Moment.jpg diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021.zip b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021.zip similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021.zip rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021.zip diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/.DS_Store b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/.DS_Store similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/.DS_Store rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/.DS_Store diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/.DS_Store b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/.DS_Store similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/.DS_Store rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/.DS_Store diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/LIVE.psd b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/LIVE.psd similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/LIVE.psd rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/LIVE.psd diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New-Feed.psd b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New-Feed.psd similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New-Feed.psd rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New-Feed.psd diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Buisness_Profile.psd b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Buisness_Profile.psd similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Buisness_Profile.psd rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Buisness_Profile.psd diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Camera.psd b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Camera.psd similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Camera.psd rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Camera.psd diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_IGTV_Search.psd b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_IGTV_Search.psd similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_IGTV_Search.psd rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_IGTV_Search.psd diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Profile.psd b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Profile.psd similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Profile.psd rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Profile.psd diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Story.psd b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Story.psd similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Story.psd rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Story.psd diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/Shop.psd b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/Shop.psd similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/Shop.psd rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/Shop.psd diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/.DS_Store b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/.DS_Store similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/.DS_Store rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/.DS_Store diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Buisness_Profile.psd b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Buisness_Profile.psd similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Buisness_Profile.psd rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Buisness_Profile.psd diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Camera.psd b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Camera.psd similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Camera.psd rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Camera.psd diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Feed.psd b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Feed.psd similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Feed.psd rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Feed.psd diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/IGTV.psd b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/IGTV.psd similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/IGTV.psd rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/IGTV.psd diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Live.psd b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Live.psd similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Live.psd rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Live.psd diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Profile.psd b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Profile.psd similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Profile.psd rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Profile.psd diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Shop.psd b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Shop.psd similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Shop.psd rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Shop.psd diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Story.psd b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Story.psd similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Story.psd rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Story.psd diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Buisness_Profile.psd b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Buisness_Profile.psd similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Buisness_Profile.psd rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Buisness_Profile.psd diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Camera.psd b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Camera.psd similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Camera.psd rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Camera.psd diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Feed.psd b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Feed.psd similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Feed.psd rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Feed.psd diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/IGTV.psd b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/IGTV.psd similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/IGTV.psd rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/IGTV.psd diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/LIVE.psd b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/LIVE.psd similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/LIVE.psd rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/LIVE.psd diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Profile.psd b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Profile.psd similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Profile.psd rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Profile.psd diff --git a/sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Story.psd b/sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Story.psd similarity index 100% rename from sources/promotion/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Story.psd rename to sources/promotion/fiverr/christian/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Story.psd diff --git a/sources/promotion/fiverr/promotion_video/fiverr_banner.png b/sources/promotion/fiverr/christian/promotion_video/fiverr_banner.png similarity index 100% rename from sources/promotion/fiverr/promotion_video/fiverr_banner.png rename to sources/promotion/fiverr/christian/promotion_video/fiverr_banner.png diff --git a/sources/promotion/fiverr/promotion_video/fiverr_banner_no_phone.png b/sources/promotion/fiverr/christian/promotion_video/fiverr_banner_no_phone.png similarity index 100% rename from sources/promotion/fiverr/promotion_video/fiverr_banner_no_phone.png rename to sources/promotion/fiverr/christian/promotion_video/fiverr_banner_no_phone.png diff --git a/sources/promotion/fiverr/promotion_video/free-sample.png b/sources/promotion/fiverr/christian/promotion_video/free-sample.png similarity index 100% rename from sources/promotion/fiverr/promotion_video/free-sample.png rename to sources/promotion/fiverr/christian/promotion_video/free-sample.png diff --git a/sources/promotion/fiverr/promotion_video/phone mockp.png b/sources/promotion/fiverr/christian/promotion_video/phone mockp.png similarity index 100% rename from sources/promotion/fiverr/promotion_video/phone mockp.png rename to sources/promotion/fiverr/christian/promotion_video/phone mockp.png diff --git a/sources/promotion/fiverr/promotion_video/promotion switching vids/1-1Corinthians1614_10_26_7.mp4 b/sources/promotion/fiverr/christian/promotion_video/promotion switching vids/1-1Corinthians1614_10_26_7.mp4 similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion switching vids/1-1Corinthians1614_10_26_7.mp4 rename to sources/promotion/fiverr/christian/promotion_video/promotion switching vids/1-1Corinthians1614_10_26_7.mp4 diff --git a/sources/promotion/fiverr/promotion_video/promotion switching vids/1.mp4 b/sources/promotion/fiverr/christian/promotion_video/promotion switching vids/1.mp4 similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion switching vids/1.mp4 rename to sources/promotion/fiverr/christian/promotion_video/promotion switching vids/1.mp4 diff --git a/sources/promotion/fiverr/promotion_video/promotion switching vids/10-Proverbs1012_23_43_11.mp4 b/sources/promotion/fiverr/christian/promotion_video/promotion switching vids/10-Proverbs1012_23_43_11.mp4 similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion switching vids/10-Proverbs1012_23_43_11.mp4 rename to sources/promotion/fiverr/christian/promotion_video/promotion switching vids/10-Proverbs1012_23_43_11.mp4 diff --git a/sources/promotion/fiverr/promotion_video/promotion switching vids/19-John1415_42_25_7.mp4 b/sources/promotion/fiverr/christian/promotion_video/promotion switching vids/19-John1415_42_25_7.mp4 similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion switching vids/19-John1415_42_25_7.mp4 rename to sources/promotion/fiverr/christian/promotion_video/promotion switching vids/19-John1415_42_25_7.mp4 diff --git a/sources/promotion/fiverr/promotion_video/promotion switching vids/2-John316_3_9_19.mp4 b/sources/promotion/fiverr/christian/promotion_video/promotion switching vids/2-John316_3_9_19.mp4 similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion switching vids/2-John316_3_9_19.mp4 rename to sources/promotion/fiverr/christian/promotion_video/promotion switching vids/2-John316_3_9_19.mp4 diff --git a/sources/promotion/fiverr/promotion_video/promotion switching vids/3-1John48_44_46_8.mp4 b/sources/promotion/fiverr/christian/promotion_video/promotion switching vids/3-1John48_44_46_8.mp4 similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion switching vids/3-1John48_44_46_8.mp4 rename to sources/promotion/fiverr/christian/promotion_video/promotion switching vids/3-1John48_44_46_8.mp4 diff --git a/sources/promotion/fiverr/promotion_video/promotion switching vids/4-1Peter48_24_21_12.mp4 b/sources/promotion/fiverr/christian/promotion_video/promotion switching vids/4-1Peter48_24_21_12.mp4 similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion switching vids/4-1Peter48_24_21_12.mp4 rename to sources/promotion/fiverr/christian/promotion_video/promotion switching vids/4-1Peter48_24_21_12.mp4 diff --git a/sources/promotion/fiverr/promotion_video/promotion switching vids/5-Colossians314_22_8_1.mp4 b/sources/promotion/fiverr/christian/promotion_video/promotion switching vids/5-Colossians314_22_8_1.mp4 similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion switching vids/5-Colossians314_22_8_1.mp4 rename to sources/promotion/fiverr/christian/promotion_video/promotion switching vids/5-Colossians314_22_8_1.mp4 diff --git a/sources/promotion/fiverr/promotion_video/promotion switching vids/54-John1334_20_15_15.mp4 b/sources/promotion/fiverr/christian/promotion_video/promotion switching vids/54-John1334_20_15_15.mp4 similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion switching vids/54-John1334_20_15_15.mp4 rename to sources/promotion/fiverr/christian/promotion_video/promotion switching vids/54-John1334_20_15_15.mp4 diff --git a/sources/promotion/fiverr/promotion_video/promotion switching vids/7-John1513_36_12_2.mp4 b/sources/promotion/fiverr/christian/promotion_video/promotion switching vids/7-John1513_36_12_2.mp4 similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion switching vids/7-John1513_36_12_2.mp4 rename to sources/promotion/fiverr/christian/promotion_video/promotion switching vids/7-John1513_36_12_2.mp4 diff --git a/sources/promotion/fiverr/promotion_video/promotion switching vids/77-1Corinthians134_37_2_2.mp4 b/sources/promotion/fiverr/christian/promotion_video/promotion switching vids/77-1Corinthians134_37_2_2.mp4 similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion switching vids/77-1Corinthians134_37_2_2.mp4 rename to sources/promotion/fiverr/christian/promotion_video/promotion switching vids/77-1Corinthians134_37_2_2.mp4 diff --git a/sources/promotion/fiverr/promotion_video/promotion switching vids/97-Ephesians52_28_47_21.mp4 b/sources/promotion/fiverr/christian/promotion_video/promotion switching vids/97-Ephesians52_28_47_21.mp4 similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion switching vids/97-Ephesians52_28_47_21.mp4 rename to sources/promotion/fiverr/christian/promotion_video/promotion switching vids/97-Ephesians52_28_47_21.mp4 diff --git a/sources/promotion/fiverr/promotion_video/promotion switching vids/Capture.PNG b/sources/promotion/fiverr/christian/promotion_video/promotion switching vids/Capture.PNG similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion switching vids/Capture.PNG rename to sources/promotion/fiverr/christian/promotion_video/promotion switching vids/Capture.PNG diff --git a/sources/promotion/fiverr/promotion_video/promotion switching vids/desktop.ini b/sources/promotion/fiverr/christian/promotion_video/promotion switching vids/desktop.ini similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion switching vids/desktop.ini rename to sources/promotion/fiverr/christian/promotion_video/promotion switching vids/desktop.ini diff --git a/sources/promotion/fiverr/promotion_video/promotion switching vids/fiverr_banner.png b/sources/promotion/fiverr/christian/promotion_video/promotion switching vids/fiverr_banner.png similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion switching vids/fiverr_banner.png rename to sources/promotion/fiverr/christian/promotion_video/promotion switching vids/fiverr_banner.png diff --git a/sources/promotion/fiverr/promotion_video/promotion switching vids/fiverr_banner_no_phone.png b/sources/promotion/fiverr/christian/promotion_video/promotion switching vids/fiverr_banner_no_phone.png similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion switching vids/fiverr_banner_no_phone.png rename to sources/promotion/fiverr/christian/promotion_video/promotion switching vids/fiverr_banner_no_phone.png diff --git a/sources/promotion/fiverr/promotion_video/promotion switching vids/free-sample.png b/sources/promotion/fiverr/christian/promotion_video/promotion switching vids/free-sample.png similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion switching vids/free-sample.png rename to sources/promotion/fiverr/christian/promotion_video/promotion switching vids/free-sample.png diff --git a/sources/promotion/fiverr/promotion_video/promotion switching vids/phone mockp.png b/sources/promotion/fiverr/christian/promotion_video/promotion switching vids/phone mockp.png similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion switching vids/phone mockp.png rename to sources/promotion/fiverr/christian/promotion_video/promotion switching vids/phone mockp.png diff --git a/sources/promotion/fiverr/promotion_video/promotion switching vids/promotion_video.tscproj b/sources/promotion/fiverr/christian/promotion_video/promotion switching vids/promotion_video.tscproj similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion switching vids/promotion_video.tscproj rename to sources/promotion/fiverr/christian/promotion_video/promotion switching vids/promotion_video.tscproj diff --git a/sources/promotion/fiverr/promotion_video/promotion switching vids/yellow_background.png b/sources/promotion/fiverr/christian/promotion_video/promotion switching vids/yellow_background.png similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion switching vids/yellow_background.png rename to sources/promotion/fiverr/christian/promotion_video/promotion switching vids/yellow_background.png diff --git a/sources/promotion/fiverr/promotion_video/promotion_video.tscproj/1-1Corinthians1614_10_26_7.mp4 b/sources/promotion/fiverr/christian/promotion_video/promotion_video.tscproj/1-1Corinthians1614_10_26_7.mp4 similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion_video.tscproj/1-1Corinthians1614_10_26_7.mp4 rename to sources/promotion/fiverr/christian/promotion_video/promotion_video.tscproj/1-1Corinthians1614_10_26_7.mp4 diff --git a/sources/promotion/fiverr/promotion_video/promotion_video.tscproj/1.mp4 b/sources/promotion/fiverr/christian/promotion_video/promotion_video.tscproj/1.mp4 similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion_video.tscproj/1.mp4 rename to sources/promotion/fiverr/christian/promotion_video/promotion_video.tscproj/1.mp4 diff --git a/sources/promotion/fiverr/promotion_video/promotion_video.tscproj/desktop.ini b/sources/promotion/fiverr/christian/promotion_video/promotion_video.tscproj/desktop.ini similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion_video.tscproj/desktop.ini rename to sources/promotion/fiverr/christian/promotion_video/promotion_video.tscproj/desktop.ini diff --git a/sources/promotion/fiverr/promotion_video/promotion_video.tscproj/fiverr_banner.png b/sources/promotion/fiverr/christian/promotion_video/promotion_video.tscproj/fiverr_banner.png similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion_video.tscproj/fiverr_banner.png rename to sources/promotion/fiverr/christian/promotion_video/promotion_video.tscproj/fiverr_banner.png diff --git a/sources/promotion/fiverr/promotion_video/promotion_video.tscproj/fiverr_banner_no_phone.png b/sources/promotion/fiverr/christian/promotion_video/promotion_video.tscproj/fiverr_banner_no_phone.png similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion_video.tscproj/fiverr_banner_no_phone.png rename to sources/promotion/fiverr/christian/promotion_video/promotion_video.tscproj/fiverr_banner_no_phone.png diff --git a/sources/promotion/fiverr/promotion_video/promotion_video.tscproj/free-sample.png b/sources/promotion/fiverr/christian/promotion_video/promotion_video.tscproj/free-sample.png similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion_video.tscproj/free-sample.png rename to sources/promotion/fiverr/christian/promotion_video/promotion_video.tscproj/free-sample.png diff --git a/sources/promotion/fiverr/promotion_video/promotion_video.tscproj/phone mockp.png b/sources/promotion/fiverr/christian/promotion_video/promotion_video.tscproj/phone mockp.png similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion_video.tscproj/phone mockp.png rename to sources/promotion/fiverr/christian/promotion_video/promotion_video.tscproj/phone mockp.png diff --git a/sources/promotion/fiverr/promotion_video/promotion_video.tscproj/promotion_video.tscproj b/sources/promotion/fiverr/christian/promotion_video/promotion_video.tscproj/promotion_video.tscproj similarity index 100% rename from sources/promotion/fiverr/promotion_video/promotion_video.tscproj/promotion_video.tscproj rename to sources/promotion/fiverr/christian/promotion_video/promotion_video.tscproj/promotion_video.tscproj diff --git a/sources/promotion/fiverr/promotion_video/yellow_background.png b/sources/promotion/fiverr/christian/promotion_video/yellow_background.png similarity index 100% rename from sources/promotion/fiverr/promotion_video/yellow_background.png rename to sources/promotion/fiverr/christian/promotion_video/yellow_background.png diff --git a/sources/promotion/fiverr/fitness/AD_Feed_Light.png b/sources/promotion/fiverr/fitness/AD_Feed_Light.png new file mode 100644 index 0000000..d916059 Binary files /dev/null and b/sources/promotion/fiverr/fitness/AD_Feed_Light.png differ diff --git a/sources/promotion/fiverr/fitness/AD_Feed_Light2.png b/sources/promotion/fiverr/fitness/AD_Feed_Light2.png new file mode 100644 index 0000000..408e9db Binary files /dev/null and b/sources/promotion/fiverr/fitness/AD_Feed_Light2.png differ diff --git a/sources/promotion/fiverr/fitness/AD_Profile_Light.png b/sources/promotion/fiverr/fitness/AD_Profile_Light.png new file mode 100644 index 0000000..8e0c294 Binary files /dev/null and b/sources/promotion/fiverr/fitness/AD_Profile_Light.png differ diff --git a/sources/promotion/fiverr/fitness/fiver pic1.psd b/sources/promotion/fiverr/fitness/fiver pic1.psd new file mode 100644 index 0000000..70ee3fd Binary files /dev/null and b/sources/promotion/fiverr/fitness/fiver pic1.psd differ diff --git a/sources/promotion/fiverr/fitness/fiverr banner1.png b/sources/promotion/fiverr/fitness/fiverr banner1.png new file mode 100644 index 0000000..d335e9c Binary files /dev/null and b/sources/promotion/fiverr/fitness/fiverr banner1.png differ diff --git a/sources/promotion/fiverr/fitness/fiverr pic sizing better.png b/sources/promotion/fiverr/fitness/fiverr pic sizing better.png new file mode 100644 index 0000000..512d42f Binary files /dev/null and b/sources/promotion/fiverr/fitness/fiverr pic sizing better.png differ diff --git a/sources/promotion/fiverr/fitness/fiverr pic2 - Copy.psd b/sources/promotion/fiverr/fitness/fiverr pic2 - Copy.psd new file mode 100644 index 0000000..6a0569a Binary files /dev/null and b/sources/promotion/fiverr/fitness/fiverr pic2 - Copy.psd differ diff --git a/sources/promotion/fiverr/fitness/fiverr pic2 better sizing.png b/sources/promotion/fiverr/fitness/fiverr pic2 better sizing.png new file mode 100644 index 0000000..a318263 Binary files /dev/null and b/sources/promotion/fiverr/fitness/fiverr pic2 better sizing.png differ diff --git a/sources/promotion/fiverr/fitness/fiverr pic2 better sizing.psd b/sources/promotion/fiverr/fitness/fiverr pic2 better sizing.psd new file mode 100644 index 0000000..132e894 Binary files /dev/null and b/sources/promotion/fiverr/fitness/fiverr pic2 better sizing.psd differ diff --git a/sources/promotion/fiverr/fitness/fiverr pic2 copy.png b/sources/promotion/fiverr/fitness/fiverr pic2 copy.png new file mode 100644 index 0000000..09174b9 Binary files /dev/null and b/sources/promotion/fiverr/fitness/fiverr pic2 copy.png differ diff --git a/sources/promotion/fiverr/fitness/fiverr pic2 with socials.png b/sources/promotion/fiverr/fitness/fiverr pic2 with socials.png new file mode 100644 index 0000000..adeb6fc Binary files /dev/null and b/sources/promotion/fiverr/fitness/fiverr pic2 with socials.png differ diff --git a/sources/promotion/fiverr/fitness/fiverr pic2.png b/sources/promotion/fiverr/fitness/fiverr pic2.png new file mode 100644 index 0000000..f238459 Binary files /dev/null and b/sources/promotion/fiverr/fitness/fiverr pic2.png differ diff --git a/sources/promotion/fiverr/fitness/fiverr pic2.psd b/sources/promotion/fiverr/fitness/fiverr pic2.psd new file mode 100644 index 0000000..20aa999 Binary files /dev/null and b/sources/promotion/fiverr/fitness/fiverr pic2.psd differ diff --git a/sources/promotion/fiverr/fitness/fiverr_banner.psd b/sources/promotion/fiverr/fitness/fiverr_banner.psd new file mode 100644 index 0000000..7301bbc Binary files /dev/null and b/sources/promotion/fiverr/fitness/fiverr_banner.psd differ diff --git a/sources/promotion/fiverr/fitness/promotion_video.mp4 b/sources/promotion/fiverr/fitness/promotion_video.mp4 new file mode 100644 index 0000000..e7a9407 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video.mp4 differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/62-1Peter122_52_25_20_Moment.jpg b/sources/promotion/fiverr/fitness/promotion_video/62-1Peter122_52_25_20_Moment.jpg new file mode 100644 index 0000000..63d57cf Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/62-1Peter122_52_25_20_Moment.jpg differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/78-Ephesians432_26_41_13_Moment.jpg b/sources/promotion/fiverr/fitness/promotion_video/78-Ephesians432_26_41_13_Moment.jpg new file mode 100644 index 0000000..b1ced5a Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/78-Ephesians432_26_41_13_Moment.jpg differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/83-Proverbs817_19_10_0_Moment.jpg b/sources/promotion/fiverr/fitness/promotion_video/83-Proverbs817_19_10_0_Moment.jpg new file mode 100644 index 0000000..5940414 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/83-Proverbs817_19_10_0_Moment.jpg differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021.zip b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021.zip new file mode 100644 index 0000000..7b92844 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021.zip differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/.DS_Store b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/.DS_Store new file mode 100644 index 0000000..c96737a Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/.DS_Store differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/.DS_Store b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/.DS_Store new file mode 100644 index 0000000..6cd9deb Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/.DS_Store differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/LIVE.psd b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/LIVE.psd new file mode 100644 index 0000000..823d401 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/LIVE.psd differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New-Feed.psd b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New-Feed.psd new file mode 100644 index 0000000..2409bda Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New-Feed.psd differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Buisness_Profile.psd b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Buisness_Profile.psd new file mode 100644 index 0000000..6eab34c Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Buisness_Profile.psd differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Camera.psd b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Camera.psd new file mode 100644 index 0000000..f5dbae8 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Camera.psd differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_IGTV_Search.psd b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_IGTV_Search.psd new file mode 100644 index 0000000..f5d4d05 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_IGTV_Search.psd differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Profile.psd b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Profile.psd new file mode 100644 index 0000000..018abb5 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Profile.psd differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Story.psd b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Story.psd new file mode 100644 index 0000000..51b0344 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Story.psd differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/Shop.psd b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/Shop.psd new file mode 100644 index 0000000..6407b5f Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/Shop.psd differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/.DS_Store b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/.DS_Store new file mode 100644 index 0000000..e8bcca1 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/.DS_Store differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Buisness_Profile.psd b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Buisness_Profile.psd new file mode 100644 index 0000000..5079b27 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Buisness_Profile.psd differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Camera.psd b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Camera.psd new file mode 100644 index 0000000..e1dcbbc Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Camera.psd differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Feed.psd b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Feed.psd new file mode 100644 index 0000000..3ca3c20 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Feed.psd differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/IGTV.psd b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/IGTV.psd new file mode 100644 index 0000000..739befb Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/IGTV.psd differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Live.psd b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Live.psd new file mode 100644 index 0000000..33935d0 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Live.psd differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Profile.psd b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Profile.psd new file mode 100644 index 0000000..3e52712 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Profile.psd differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Shop.psd b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Shop.psd new file mode 100644 index 0000000..5adea3e Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Shop.psd differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Story.psd b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Story.psd new file mode 100644 index 0000000..19c7bbd Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Story.psd differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Buisness_Profile.psd b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Buisness_Profile.psd new file mode 100644 index 0000000..d6d913f Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Buisness_Profile.psd differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Camera.psd b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Camera.psd new file mode 100644 index 0000000..50bd768 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Camera.psd differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Feed.psd b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Feed.psd new file mode 100644 index 0000000..92013b4 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Feed.psd differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/IGTV.psd b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/IGTV.psd new file mode 100644 index 0000000..cbd355a Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/IGTV.psd differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/LIVE.psd b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/LIVE.psd new file mode 100644 index 0000000..10e1067 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/LIVE.psd differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Profile.psd b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Profile.psd new file mode 100644 index 0000000..17340e4 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Profile.psd differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Story.psd b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Story.psd new file mode 100644 index 0000000..29e9820 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Story.psd differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/fiverr_banner.png b/sources/promotion/fiverr/fitness/promotion_video/fiverr_banner.png new file mode 100644 index 0000000..363cbb1 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/fiverr_banner.png differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/fiverr_banner_no_phone.png b/sources/promotion/fiverr/fitness/promotion_video/fiverr_banner_no_phone.png new file mode 100644 index 0000000..bd6a5bf Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/fiverr_banner_no_phone.png differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/free-sample.png b/sources/promotion/fiverr/fitness/promotion_video/free-sample.png new file mode 100644 index 0000000..fcf8ac9 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/free-sample.png differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/phone mockp.png b/sources/promotion/fiverr/fitness/promotion_video/phone mockp.png new file mode 100644 index 0000000..691255f Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/phone mockp.png differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/1-1Corinthians1614_10_26_7.mp4 b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/1-1Corinthians1614_10_26_7.mp4 new file mode 100644 index 0000000..c6344ec Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/1-1Corinthians1614_10_26_7.mp4 differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/1.mp4 b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/1.mp4 new file mode 100644 index 0000000..76a0460 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/1.mp4 differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/10-Proverbs1012_23_43_11.mp4 b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/10-Proverbs1012_23_43_11.mp4 new file mode 100644 index 0000000..d379b0c Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/10-Proverbs1012_23_43_11.mp4 differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/19-John1415_42_25_7.mp4 b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/19-John1415_42_25_7.mp4 new file mode 100644 index 0000000..dd4b4cf Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/19-John1415_42_25_7.mp4 differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/2-John316_3_9_19.mp4 b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/2-John316_3_9_19.mp4 new file mode 100644 index 0000000..f6d1002 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/2-John316_3_9_19.mp4 differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/3-1John48_44_46_8.mp4 b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/3-1John48_44_46_8.mp4 new file mode 100644 index 0000000..2038ee6 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/3-1John48_44_46_8.mp4 differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/4-1Peter48_24_21_12.mp4 b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/4-1Peter48_24_21_12.mp4 new file mode 100644 index 0000000..c059e91 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/4-1Peter48_24_21_12.mp4 differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/5-Colossians314_22_8_1.mp4 b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/5-Colossians314_22_8_1.mp4 new file mode 100644 index 0000000..4d6d49f Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/5-Colossians314_22_8_1.mp4 differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/54-John1334_20_15_15.mp4 b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/54-John1334_20_15_15.mp4 new file mode 100644 index 0000000..a8f5177 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/54-John1334_20_15_15.mp4 differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/7-John1513_36_12_2.mp4 b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/7-John1513_36_12_2.mp4 new file mode 100644 index 0000000..deb2fd2 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/7-John1513_36_12_2.mp4 differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/77-1Corinthians134_37_2_2.mp4 b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/77-1Corinthians134_37_2_2.mp4 new file mode 100644 index 0000000..fd82d24 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/77-1Corinthians134_37_2_2.mp4 differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/97-Ephesians52_28_47_21.mp4 b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/97-Ephesians52_28_47_21.mp4 new file mode 100644 index 0000000..6860e31 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/97-Ephesians52_28_47_21.mp4 differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/Capture.PNG b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/Capture.PNG new file mode 100644 index 0000000..12a51e4 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/Capture.PNG differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/desktop.ini b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/desktop.ini new file mode 100644 index 0000000..8de78dc --- /dev/null +++ b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=C:\ProgramData\TechSmith\Camtasia\Icons\ProjectFolder.ico,0 diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/fiverr_banner.png b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/fiverr_banner.png new file mode 100644 index 0000000..363cbb1 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/fiverr_banner.png differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/fiverr_banner_no_phone.png b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/fiverr_banner_no_phone.png new file mode 100644 index 0000000..bd6a5bf Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/fiverr_banner_no_phone.png differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/free-sample.png b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/free-sample.png new file mode 100644 index 0000000..fcf8ac9 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/free-sample.png differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/phone mockp.png b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/phone mockp.png new file mode 100644 index 0000000..691255f Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/phone mockp.png differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/promotion_video.tscproj b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/promotion_video.tscproj new file mode 100644 index 0000000..553541d --- /dev/null +++ b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/promotion_video.tscproj @@ -0,0 +1,4588 @@ +{ + "title" : "", + "description" : "", + "author" : "", + "targetLoudness" : -18.0, + "shouldApplyLoudnessNormalization" : true, + "videoFormatFrameRate" : 30, + "audioFormatSampleRate" : 44100, + "width" : 1280.0, + "height" : 770.0, + "version" : "5.0", + "editRate" : 30, + "authoringClientName" : { + "name" : "Camtasia", + "platform" : "Windows", + "version" : "21.0" + }, + "sourceBin" : [ + { + "id" : 1, + "src" : "fiverr_banner.png", + "rect" : [0, 0, 1280, 769], + "lastMod" : "20230404T164756", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 1], + "type" : 1, + "editRate" : 10000000, + "trackRect" : [0, 0, 1280, 769], + "sampleRate" : 0, + "bitDepth" : 32, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230402T133756.732511" + } + }, + { + "id" : 2, + "src" : "1.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T164756", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 7900], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : 30, + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230402T133846.039087" + } + }, + { + "id" : 3, + "src" : "fiverr_banner_no_phone.png", + "rect" : [0, 0, 1280, 769], + "lastMod" : "20230404T164756", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 1], + "type" : 1, + "editRate" : 10000000, + "trackRect" : [0, 0, 1280, 769], + "sampleRate" : 0, + "bitDepth" : 32, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230402T134025.135559" + } + }, + { + "id" : 4, + "src" : "phone mockp.png", + "rect" : [0, 0, 345, 715], + "lastMod" : "20230404T164756", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 1], + "type" : 1, + "editRate" : 10000000, + "trackRect" : [0, 0, 345, 715], + "sampleRate" : 0, + "bitDepth" : 32, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230402T134122.413603" + } + }, + { + "id" : 5, + "src" : "free-sample.png", + "rect" : [0, 0, 347, 202], + "lastMod" : "20230404T164756", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 1], + "type" : 1, + "editRate" : 10000000, + "trackRect" : [0, 0, 347, 202], + "sampleRate" : 0, + "bitDepth" : 32, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230402T134824.735976" + } + }, + { + "id" : 6, + "src" : "1-1Corinthians1614_10_26_7.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T175044", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 23709], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : "120001/5000", + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + }, + { + "range" : [0, 23694], + "type" : 2, + "editRate" : 1000, + "trackRect" : [0, 0, 0, 0], + "sampleRate" : 44100, + "bitDepth" : 16, + "numChannels" : 2, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T175227.994743" + } + }, + { + "id" : 7, + "src" : "2-John316_3_9_19.mp4", + "rect" : [0, 0, 1046, 1862], + "lastMod" : "20230404T175057", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 30084], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1046, 1862], + "sampleRate" : "120001/5000", + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + }, + { + "range" : [0, 30067], + "type" : 2, + "editRate" : 1000, + "trackRect" : [0, 0, 0, 0], + "sampleRate" : 44100, + "bitDepth" : 16, + "numChannels" : 2, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T175832.498853" + } + }, + { + "id" : 8, + "src" : "3-1John48_44_46_8.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T175108", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 22125], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : 24, + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + }, + { + "range" : [0, 22152], + "type" : 2, + "editRate" : 1000, + "trackRect" : [0, 0, 0, 0], + "sampleRate" : 44100, + "bitDepth" : 16, + "numChannels" : 2, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T180431.183435" + } + }, + { + "id" : 9, + "src" : "yellow_background.png", + "rect" : [0, 0, 1280, 769], + "lastMod" : "20230404T180804", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 1], + "type" : 1, + "editRate" : 10000000, + "trackRect" : [0, 0, 1280, 769], + "sampleRate" : 0, + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T180820.296638" + } + }, + { + "id" : 10, + "src" : "4-1Peter48_24_21_12.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T175113", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 9834], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : "240007/10000", + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + }, + { + "range" : [0, 9823], + "type" : 2, + "editRate" : 1000, + "trackRect" : [0, 0, 0, 0], + "sampleRate" : 44100, + "bitDepth" : 16, + "numChannels" : 2, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T181233.250997" + } + }, + { + "id" : 11, + "src" : "5-Colossians314_22_8_1.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T175123", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 22250], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : 24, + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + }, + { + "range" : [0, 22257], + "type" : 2, + "editRate" : 1000, + "trackRect" : [0, 0, 0, 0], + "sampleRate" : 44100, + "bitDepth" : 16, + "numChannels" : 2, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T181453.274400" + } + }, + { + "id" : 12, + "src" : "7-John1513_36_12_2.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T175144", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 19625], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : 24, + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + }, + { + "range" : [0, 19618], + "type" : 2, + "editRate" : 1000, + "trackRect" : [0, 0, 0, 0], + "sampleRate" : 44100, + "bitDepth" : 16, + "numChannels" : 2, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T181847.888631" + } + }, + { + "id" : 13, + "src" : "10-Proverbs1012_23_43_11.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T175211", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 15500], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : 24, + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + }, + { + "range" : [0, 15491], + "type" : 2, + "editRate" : 1000, + "trackRect" : [0, 0, 0, 0], + "sampleRate" : 44100, + "bitDepth" : 16, + "numChannels" : 2, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T182132.883570" + } + }, + { + "id" : 14, + "src" : "54-John1334_20_15_15.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T175918", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 17709], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : "120003/5000", + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + }, + { + "range" : [0, 17685], + "type" : 2, + "editRate" : 1000, + "trackRect" : [0, 0, 0, 0], + "sampleRate" : 44100, + "bitDepth" : 16, + "numChannels" : 2, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T182225.445610" + } + }, + { + "id" : 15, + "src" : "77-1Corinthians134_37_2_2.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T180255", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 11417], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : "15001/625", + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + }, + { + "range" : [0, 11416], + "type" : 2, + "editRate" : 1000, + "trackRect" : [0, 0, 0, 0], + "sampleRate" : 44100, + "bitDepth" : 16, + "numChannels" : 2, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T182620.634753" + } + }, + { + "id" : 16, + "src" : "97-Ephesians52_28_47_21.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T180609", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 20625], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : 24, + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + }, + { + "range" : [0, 20611], + "type" : 2, + "editRate" : 1000, + "trackRect" : [0, 0, 0, 0], + "sampleRate" : 44100, + "bitDepth" : 16, + "numChannels" : 2, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T182817.283732" + } + }, + { + "id" : 17, + "src" : "19-John1415_42_25_7.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T175336", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 20834], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : "120001/5000", + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + }, + { + "range" : [0, 20820], + "type" : 2, + "editRate" : 1000, + "trackRect" : [0, 0, 0, 0], + "sampleRate" : 44100, + "bitDepth" : 16, + "numChannels" : 2, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T183000.926697" + } + }, + { + "id" : 18, + "src" : "Capture.PNG", + "rect" : [0, 0, 942, 549], + "lastMod" : "20230404T201905", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 1], + "type" : 1, + "editRate" : 10000000, + "trackRect" : [0, 0, 942, 549], + "sampleRate" : 0, + "bitDepth" : 32, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T201913.432395" + } + } + ], + "timeline" : { + "id" : 19, + "sceneTrack" : { + "scenes" : [ + { + "csml" : { + "tracks" : [ + { + "trackIndex" : 0, + "medias" : [ + { + "id" : 20, + "_type" : "IMFile", + "src" : 3, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "fiverr_banner_no_phone" + }, + "parameters" : { + "translation1" : -0.5, + "sourceCrop0" : 0.0, + "sourceCrop1" : 0.0, + "sourceCrop2" : 0.0, + "sourceCrop3" : 0.0, + "geometryCrop0" : 0.0, + "geometryCrop1" : 0.0, + "geometryCrop2" : 0.0, + "geometryCrop3" : 0.0 + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 928, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 769.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : 0.0, + "default-translation1" : -0.5, + "default-width" : 1280.0 + }, + "animationTracks" : { + + } + } + ] + }, + { + "trackIndex" : 1, + "medias" : [ + { + "id" : 21, + "_type" : "UnifiedMedia", + "video" : + { + "id" : 22, + "_type" : "VMFile", + "src" : 6, + "trackNumber" : 0, + "attributes" : { + "ident" : "1-1Corinthians1614_10_26_7" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -421.585172915439, + "keyframes" : [ + { + "endTime" : 121, + "time" : 101, + "value" : -421.585172915439, + "duration" : 20 + } + ] + }, + "translation1" : { + "type" : "double", + "defaultValue" : 0.418132716049223, + "keyframes" : [ + { + "endTime" : 121, + "time" : 101, + "value" : 652.25598889107, + "duration" : 20 + } + ] + }, + "scale0" : 0.339155543983755, + "scale1" : 0.339155543983755, + "sourceCrop0" : 0.0, + "sourceCrop1" : 0.0, + "sourceCrop2" : 0.0, + "sourceCrop3" : 0.0, + "geometryCrop0" : 0.0, + "geometryCrop1" : 0.0, + "geometryCrop2" : 0.0, + "geometryCrop3" : 0.0 + }, + "effects" : [ + { + "effectName" : "RoundCorners", + "bypassed" : true, + "category" : "categoryVisualEffects", + "parameters" : { + "bottom-left" : 1.0, + "bottom-right" : 1.0, + "radius" : 90.0, + "top-left" : 1.0, + "top-right" : 1.0 + }, + "metadata" : { + "default-RoundCorners_radius" : 20.0, + "effectIndex" : "0", + "presetName" : "Corner Rounding" + } + } + ], + "start" : 0, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + "visual" : [ + { + "endTime" : 121, + "duration" : 20, + "range" : [ 101, 20] + } + ] + } + }, + "audio" : + { + "id" : 23, + "_type" : "AMFile", + "src" : 6, + "trackNumber" : 1, + "attributes" : { + "ident" : "", + "gain" : 1.0, + "mixToMono" : false, + "loudnessNormalization" : true, + "sourceFileOffset" : 0 + }, + "channelNumber" : "0,1", + "parameters" : { + "volume" : { + "type" : "double", + "keyframes" : [ + { + "endTime" : 0, + "time" : 0, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 101, + "time" : 101, + "value" : 0.999999999999996, + "duration" : 0 + }, + { + "endTime" : 121, + "time" : 121, + "value" : 0.0, + "duration" : 0 + }, + { + "endTime" : 122, + "time" : 122, + "value" : 1.0, + "duration" : 0 + } + ] + } + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + + } + } +, + "start" : 0, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 711, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 651.17864444881, + "default-translation0" : -421.585172915439, + "default-translation1" : -0.581867283950777, + "default-width" : 366.287987502455 + } + }, + { + "id" : 24, + "_type" : "UnifiedMedia", + "video" : + { + "id" : 25, + "_type" : "VMFile", + "src" : 8, + "trackNumber" : 0, + "attributes" : { + "ident" : "3-1John48_44_46_8" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -421.825605417081, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : -421.585172915439, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : -421.585172915439, + "duration" : 20 + } + ] + }, + "translation1" : { + "type" : "double", + "defaultValue" : -648.915200617284, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.0, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : 655.226803783729, + "duration" : 20 + } + ] + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + { + "effectName" : "RoundCorners", + "bypassed" : true, + "category" : "categoryVisualEffects", + "parameters" : { + "bottom-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "bottom-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "radius" : { + "type" : "double", + "defaultValue" : 90.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + } + }, + "metadata" : { + "default-RoundCorners_radius" : 20.0, + "effectIndex" : "0", + "presetName" : "Corner Rounding" + } + } + ], + "start" : 202, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + "visual" : [ + { + "endTime" : 19, + "duration" : 19, + "range" : [ 0, 19] + }, + { + "endTime" : 121, + "duration" : 20, + "range" : [ 101, 20] + } + ] + } + }, + "audio" : + { + "id" : 26, + "_type" : "AMFile", + "src" : 8, + "trackNumber" : 1, + "attributes" : { + "ident" : "", + "gain" : 1.0, + "mixToMono" : false, + "loudnessNormalization" : true, + "sourceFileOffset" : 0 + }, + "channelNumber" : "0,1", + "parameters" : { + "volume" : { + "type" : "double", + "keyframes" : [ + { + "endTime" : 0, + "time" : 0, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 101, + "time" : 101, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 121, + "time" : 121, + "value" : 0.0, + "duration" : 0 + }, + { + "endTime" : 122, + "time" : 122, + "value" : 1.0, + "duration" : 0 + } + ] + } + }, + "effects" : [ + + ], + "start" : 202, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + + } + } +, + "start" : 202, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 663, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 651.17864444881, + "default-translation0" : -421.585172915439, + "default-translation1" : -0.581867283950777, + "default-width" : 366.287987502455 + } + } + ] + }, + { + "trackIndex" : 2, + "medias" : [ + { + "id" : 27, + "_type" : "UnifiedMedia", + "video" : + { + "id" : 28, + "_type" : "VMFile", + "src" : 7, + "trackNumber" : 0, + "attributes" : { + "ident" : "2-John316_3_9_19" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -421.585172915439, + "interp" : "eioe" + }, + "translation1" : { + "type" : "double", + "defaultValue" : -648.915200617284, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.908328794480596, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : 653.922655557737, + "duration" : 20 + } + ] + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.349720002389264, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.349720002389264, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + { + "effectName" : "RoundCorners", + "bypassed" : true, + "category" : "categoryVisualEffects", + "parameters" : { + "bottom-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "bottom-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "radius" : { + "type" : "double", + "defaultValue" : 90.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + } + }, + "metadata" : { + "default-RoundCorners_radius" : 20.0, + "effectIndex" : "0", + "presetName" : "Corner Rounding" + } + } + ], + "start" : 101, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + "visual" : [ + { + "endTime" : 19, + "duration" : 19, + "range" : [ 0, 19] + }, + { + "endTime" : 121, + "duration" : 20, + "range" : [ 101, 20] + } + ] + } + }, + "audio" : + { + "id" : 29, + "_type" : "AMFile", + "src" : 7, + "trackNumber" : 1, + "attributes" : { + "ident" : "", + "gain" : 1.0, + "mixToMono" : false, + "loudnessNormalization" : true, + "sourceFileOffset" : 0 + }, + "channelNumber" : "0,1", + "parameters" : { + "volume" : { + "type" : "double", + "keyframes" : [ + { + "endTime" : 0, + "time" : 0, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 101, + "time" : 101, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 121, + "time" : 121, + "value" : 0.0, + "duration" : 0 + }, + { + "endTime" : 122, + "time" : 122, + "value" : 1.0, + "duration" : 0 + } + ] + } + }, + "effects" : [ + + ], + "start" : 101, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + + } + } +, + "start" : 101, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 902, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 651.17864444881, + "default-translation0" : -421.585172915439, + "default-translation1" : -0.581867283950777, + "default-width" : 365.80712249917 + } + }, + { + "id" : 30, + "_type" : "UnifiedMedia", + "video" : + { + "id" : 31, + "_type" : "VMFile", + "src" : 10, + "trackNumber" : 0, + "attributes" : { + "ident" : "4-1Peter48_24_21_12" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -421.585172915439, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : -421.585172915439, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : -421.585172915439, + "duration" : 20 + } + ] + }, + "translation1" : { + "type" : "double", + "defaultValue" : -649.511977782143, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 2.08479938271589, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : 653.922655557737, + "duration" : 20 + } + ] + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + { + "effectName" : "RoundCorners", + "bypassed" : true, + "category" : "categoryVisualEffects", + "parameters" : { + "bottom-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "bottom-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "radius" : { + "type" : "double", + "defaultValue" : 90.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + } + }, + "metadata" : { + "default-RoundCorners_radius" : 20.0, + "effectIndex" : "0", + "presetName" : "Corner Rounding" + } + } + ], + "start" : 303, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + "visual" : [ + { + "endTime" : 19, + "duration" : 19, + "range" : [ 0, 19] + }, + { + "endTime" : 121, + "duration" : 20, + "range" : [ 101, 20] + } + ] + } + }, + "audio" : + { + "id" : 32, + "_type" : "AMFile", + "src" : 10, + "trackNumber" : 1, + "attributes" : { + "ident" : "", + "gain" : 1.0, + "mixToMono" : false, + "loudnessNormalization" : true, + "sourceFileOffset" : 0 + }, + "channelNumber" : "0,1", + "parameters" : { + "volume" : { + "type" : "double", + "keyframes" : [ + { + "endTime" : 0, + "time" : 0, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 102, + "time" : 102, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 121, + "time" : 121, + "value" : 0.0, + "duration" : 0 + }, + { + "endTime" : 122, + "time" : 122, + "value" : 1.0, + "duration" : 0 + } + ] + } + }, + "effects" : [ + + ], + "start" : 303, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + + } + } +, + "start" : 303, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 294, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 651.17864444881, + "default-translation0" : -421.585172915439, + "default-translation1" : -0.581867283950777, + "default-width" : 366.287987502455 + } + }, + { + "id" : 33, + "_type" : "UnifiedMedia", + "video" : + { + "id" : 34, + "_type" : "VMFile", + "src" : 13, + "trackNumber" : 0, + "attributes" : { + "ident" : "10-Proverbs1012_23_43_11" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -421.585172915439, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : -421.585172915439, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : -421.585172915439, + "duration" : 20 + } + ] + }, + "translation1" : { + "type" : "double", + "defaultValue" : -649.511977782143, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : -0.581867283950777, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : 653.922655557737, + "duration" : 20 + } + ] + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.339155543983755, + "duration" : 19 + } + ] + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.339155543983755, + "duration" : 19 + } + ] + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + { + "effectName" : "RoundCorners", + "bypassed" : true, + "category" : "categoryVisualEffects", + "parameters" : { + "bottom-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "bottom-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "radius" : { + "type" : "double", + "defaultValue" : 90.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + } + }, + "metadata" : { + "default-RoundCorners_radius" : 20.0, + "effectIndex" : "0", + "presetName" : "Corner Rounding" + } + } + ], + "start" : 505, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + "visual" : [ + { + "endTime" : 19, + "duration" : 19, + "range" : [ 0, 19] + }, + { + "endTime" : 121, + "duration" : 20, + "range" : [ 101, 20] + } + ] + } + }, + "audio" : + { + "id" : 35, + "_type" : "AMFile", + "src" : 13, + "trackNumber" : 1, + "attributes" : { + "ident" : "", + "gain" : 1.0, + "mixToMono" : false, + "loudnessNormalization" : true, + "sourceFileOffset" : 0 + }, + "channelNumber" : "0,1", + "parameters" : { + "volume" : { + "type" : "double", + "keyframes" : [ + { + "endTime" : 0, + "time" : 0, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 101, + "time" : 101, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 121, + "time" : 121, + "value" : 0.0, + "duration" : 0 + }, + { + "endTime" : 122, + "time" : 122, + "value" : 1.0, + "duration" : 0 + } + ] + } + }, + "effects" : [ + + ], + "start" : 505, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + + } + } +, + "start" : 505, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 465, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false + } + }, + { + "id" : 36, + "_type" : "UnifiedMedia", + "video" : + { + "id" : 37, + "_type" : "VMFile", + "src" : 16, + "trackNumber" : 0, + "attributes" : { + "ident" : "97-Ephesians52_28_47_21" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -421.585172915439, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : -421.585172915439, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : -421.585172915439, + "duration" : 20 + } + ] + }, + "translation1" : { + "type" : "double", + "defaultValue" : -649.511977782143, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.751466049382557, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : 653.922655557737, + "duration" : 20 + } + ] + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.339155543983755, + "duration" : 19 + } + ] + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.339155543983755, + "duration" : 19 + } + ] + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + { + "effectName" : "RoundCorners", + "bypassed" : true, + "category" : "categoryVisualEffects", + "parameters" : { + "bottom-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "bottom-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "radius" : { + "type" : "double", + "defaultValue" : 90.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + } + }, + "metadata" : { + "default-RoundCorners_radius" : 20.0, + "effectIndex" : "0", + "presetName" : "Corner Rounding" + } + } + ], + "start" : 707, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + "visual" : [ + { + "endTime" : 19, + "duration" : 19, + "range" : [ 0, 19] + }, + { + "endTime" : 121, + "duration" : 20, + "range" : [ 101, 20] + } + ] + } + }, + "audio" : + { + "id" : 38, + "_type" : "AMFile", + "src" : 16, + "trackNumber" : 1, + "attributes" : { + "ident" : "", + "gain" : 1.0, + "mixToMono" : false, + "loudnessNormalization" : true, + "sourceFileOffset" : 0 + }, + "channelNumber" : "0,1", + "parameters" : { + "volume" : { + "type" : "double", + "keyframes" : [ + { + "endTime" : 0, + "time" : 0, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 101, + "time" : 101, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 121, + "time" : 121, + "value" : 0.0, + "duration" : 0 + }, + { + "endTime" : 122, + "time" : 122, + "value" : 1.0, + "duration" : 0 + } + ] + } + }, + "effects" : [ + + ], + "start" : 707, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + + } + } +, + "start" : 707, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 618, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 651.17864444881, + "default-translation1" : -0.581867283950777, + "default-width" : 366.287987502455 + } + } + ] + }, + { + "trackIndex" : 3, + "medias" : [ + { + "id" : 39, + "_type" : "UnifiedMedia", + "video" : + { + "id" : 40, + "_type" : "VMFile", + "src" : 12, + "trackNumber" : 0, + "attributes" : { + "ident" : "7-John1513_36_12_2" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -421.585172915439, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : -421.585172915439, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : -421.585172915439, + "duration" : 20 + } + ] + }, + "translation1" : { + "type" : "double", + "defaultValue" : -649.718799231942, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.714826001586236, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : 652.25598889107, + "duration" : 20 + } + ] + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + { + "effectName" : "RoundCorners", + "bypassed" : true, + "category" : "categoryVisualEffects", + "parameters" : { + "bottom-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "bottom-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "radius" : { + "type" : "double", + "defaultValue" : 90.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + } + }, + "metadata" : { + "default-RoundCorners_radius" : 20.0, + "effectIndex" : "0", + "presetName" : "Corner Rounding" + } + } + ], + "start" : 404, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + "visual" : [ + { + "endTime" : 19, + "duration" : 19, + "range" : [ 0, 19] + }, + { + "endTime" : 121, + "duration" : 20, + "range" : [ 101, 20] + } + ] + } + }, + "audio" : + { + "id" : 41, + "_type" : "AMFile", + "src" : 12, + "trackNumber" : 1, + "attributes" : { + "ident" : "", + "gain" : 1.0, + "mixToMono" : false, + "loudnessNormalization" : true, + "sourceFileOffset" : 0 + }, + "channelNumber" : "0,1", + "parameters" : { + "volume" : { + "type" : "double", + "keyframes" : [ + { + "endTime" : 0, + "time" : 0, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 101, + "time" : 101, + "value" : 0.999999999999997, + "duration" : 0 + }, + { + "endTime" : 121, + "time" : 121, + "value" : 0.0, + "duration" : 0 + }, + { + "endTime" : 122, + "time" : 122, + "value" : 1.0, + "duration" : 0 + } + ] + } + }, + "effects" : [ + + ], + "start" : 404, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + + } + } +, + "start" : 404, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 588, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 651.17864444881, + "default-translation0" : -421.585172915439, + "default-translation1" : -0.581867283950777, + "default-width" : 366.287987502455 + } + }, + { + "id" : 42, + "_type" : "UnifiedMedia", + "video" : + { + "id" : 43, + "_type" : "VMFile", + "src" : 14, + "trackNumber" : 0, + "attributes" : { + "ident" : "54-John1334_20_15_15" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -421.585172915439, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : -421.585172915439, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : -421.585172915439, + "duration" : 20 + } + ] + }, + "translation1" : { + "type" : "double", + "defaultValue" : -649.718799231942, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.714826001586236, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : 653.007162599991, + "duration" : 20 + } + ] + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.339155543983755, + "duration" : 19 + } + ] + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.339155543983755, + "duration" : 19 + } + ] + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + { + "effectName" : "RoundCorners", + "bypassed" : true, + "category" : "categoryVisualEffects", + "parameters" : { + "bottom-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "bottom-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "radius" : { + "type" : "double", + "defaultValue" : 90.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + } + }, + "metadata" : { + "default-RoundCorners_radius" : 20.0, + "effectIndex" : "0", + "presetName" : "Corner Rounding" + } + } + ], + "start" : 606, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + "visual" : [ + { + "endTime" : 19, + "duration" : 19, + "range" : [ 0, 19] + }, + { + "endTime" : 121, + "duration" : 20, + "range" : [ 101, 20] + } + ] + } + }, + "audio" : + { + "id" : 44, + "_type" : "AMFile", + "src" : 14, + "trackNumber" : 1, + "attributes" : { + "ident" : "", + "gain" : 1.0, + "mixToMono" : false, + "loudnessNormalization" : true, + "sourceFileOffset" : 0 + }, + "channelNumber" : "0,1", + "parameters" : { + "volume" : { + "type" : "double", + "keyframes" : [ + { + "endTime" : 0, + "time" : 0, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 101, + "time" : 101, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 121, + "time" : 121, + "value" : 0.0, + "duration" : 0 + }, + { + "endTime" : 122, + "time" : 122, + "value" : 1.0, + "duration" : 0 + } + ] + } + }, + "effects" : [ + + ], + "start" : 606, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + + } + } +, + "start" : 606, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 531, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 651.17864444881, + "default-translation0" : -421.585172915439, + "default-translation1" : 0.714826001586236, + "default-width" : 366.287987502455 + } + }, + { + "id" : 45, + "_type" : "UnifiedMedia", + "video" : + { + "id" : 46, + "_type" : "VMFile", + "src" : 17, + "trackNumber" : 0, + "attributes" : { + "ident" : "19-John1415_42_25_7" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -421.585172915439, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : -421.585172915439, + "duration" : 19 + } + ] + }, + "translation1" : { + "type" : "double", + "defaultValue" : -649.718799231942, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.714826001586236, + "duration" : 19 + } + ] + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.339155543983755, + "duration" : 19 + } + ] + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.339155543983755, + "duration" : 19 + } + ] + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + { + "effectName" : "RoundCorners", + "bypassed" : true, + "category" : "categoryVisualEffects", + "parameters" : { + "bottom-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "bottom-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "radius" : { + "type" : "double", + "defaultValue" : 90.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + } + }, + "metadata" : { + "default-RoundCorners_radius" : 20.0, + "effectIndex" : "0", + "presetName" : "Corner Rounding" + } + } + ], + "start" : 808, + "duration" : 120, + "mediaStart" : 0, + "mediaDuration" : 120, + "scalar" : 1, + "animationTracks" : { + "visual" : [ + { + "endTime" : 19, + "duration" : 19, + "range" : [ 0, 19] + } + ] + } + }, + "audio" : + { + "id" : 47, + "_type" : "AMFile", + "src" : 17, + "trackNumber" : 1, + "attributes" : { + "ident" : "", + "gain" : 1.0, + "mixToMono" : false, + "loudnessNormalization" : true, + "sourceFileOffset" : 0 + }, + "channelNumber" : "0,1", + "parameters" : { + "volume" : { + "type" : "double", + "keyframes" : [ + { + "endTime" : 0, + "time" : 0, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 94, + "time" : 94, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 121, + "time" : 121, + "value" : 0.0, + "duration" : 0 + }, + { + "endTime" : 122, + "time" : 122, + "value" : 1.0, + "duration" : 0 + } + ] + } + }, + "effects" : [ + + ], + "start" : 808, + "duration" : 120, + "mediaStart" : 0, + "mediaDuration" : 120, + "scalar" : 1, + "animationTracks" : { + + } + } +, + "start" : 808, + "duration" : 120, + "mediaStart" : 0, + "mediaDuration" : 624, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false + } + } + ] + }, + { + "trackIndex" : 4, + "medias" : [ + { + "id" : 48, + "_type" : "Group", + "parameters" : { + "translation0" : -401.0, + "translation1" : -1.0, + "sourceCrop0" : 0.0, + "sourceCrop1" : 0.0, + "sourceCrop2" : 0.0, + "sourceCrop3" : 0.0, + "geometryCrop0" : 0.0, + "geometryCrop1" : 0.0, + "geometryCrop2" : 0.0, + "geometryCrop3" : 0.0, + "volume" : 1.0 + }, + "tracks" : [ + { + "trackIndex" : 0, + "medias" : [ + { + "id" : 49, + "_type" : "IMFile", + "src" : 9, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "yellow_background" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : 0.0793441782349191, + "interp" : "eioe" + }, + "translation1" : { + "type" : "double", + "defaultValue" : 356.534572026228, + "interp" : "eioe" + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.320282269866897, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.0740323224285344, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 928, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 769.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : 0.0, + "default-translation1" : -0.5, + "default-width" : 1280.0 + }, + "animationTracks" : { + + } + } + ], + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "trackIndex" : 1, + "medias" : [ + { + "id" : 50, + "_type" : "IMFile", + "src" : 9, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "yellow_background" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : 0.0793441782348623, + "interp" : "eioe" + }, + "translation1" : { + "type" : "double", + "defaultValue" : -354.064738503769, + "interp" : "eioe" + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.373561475278492, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.0778550364011211, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 928, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 769.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : 0.0, + "default-translation1" : -0.5, + "default-width" : 1280.0 + }, + "animationTracks" : { + + } + } + ], + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "trackIndex" : 2, + "medias" : [ + { + "id" : 51, + "_type" : "IMFile", + "src" : 9, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "yellow_background" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : 168.393330226382, + "interp" : "eioe" + }, + "translation1" : { + "type" : "double", + "defaultValue" : -333.438677104797, + "interp" : "eioe" + }, + "rotation2" : { + "type" : "double", + "defaultValue" : 0.706968159564296, + "interp" : "eioe" + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.0485209553770944, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.0649367535672276, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 928, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 769.0, + "default-rotation2" : 0.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : 0.0, + "default-translation1" : -0.5, + "default-width" : 1280.0 + }, + "animationTracks" : { + + } + } + ], + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "trackIndex" : 3, + "medias" : [ + { + "id" : 52, + "_type" : "IMFile", + "src" : 9, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "yellow_background" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -203.362527732643, + "interp" : "eioe" + }, + "translation1" : { + "type" : "double", + "defaultValue" : -336.163223874672, + "interp" : "eioe" + }, + "rotation2" : { + "type" : "double", + "defaultValue" : -0.658813936823206, + "interp" : "eioe" + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.043403232341029, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.0580875825845971, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 928, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 769.0, + "default-rotation2" : 0.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : 0.0, + "default-translation1" : -0.5, + "default-width" : 1280.0 + }, + "animationTracks" : { + + } + } + ], + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "trackIndex" : 4, + "medias" : [ + { + "id" : 53, + "_type" : "IMFile", + "src" : 9, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "yellow_background" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : 165.468844816376, + "interp" : "eioe" + }, + "translation1" : { + "type" : "double", + "defaultValue" : 336.209325144936, + "interp" : "eioe" + }, + "rotation2" : { + "type" : "double", + "defaultValue" : -0.74572762865246, + "interp" : "eioe" + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.043403232341029, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.0580875825845971, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 928, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 769.0, + "default-rotation2" : 0.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : 0.0, + "default-translation1" : -0.5, + "default-width" : 1280.0 + }, + "animationTracks" : { + + } + } + ], + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "trackIndex" : 5, + "medias" : [ + { + "id" : 54, + "_type" : "IMFile", + "src" : 9, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "yellow_background" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -208.435917088386, + "interp" : "eioe" + }, + "translation1" : { + "type" : "double", + "defaultValue" : 336.590277525889, + "interp" : "eioe" + }, + "rotation2" : { + "type" : "double", + "defaultValue" : 0.752235389913766, + "interp" : "eioe" + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.043403232341029, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.0580875825845971, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 928, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 769.0, + "default-rotation2" : 0.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : 0.0, + "default-translation1" : -0.5, + "default-width" : 1280.0 + }, + "animationTracks" : { + + } + } + ], + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + } + ], + "attributes" : { + "ident" : "Yellow cover behing mockup", + "widthAttr" : 480.0, + "heightAttr" : 770.0, + "gain" : 1.0, + "mixToMono" : false, + "assetProperties" : [ + ] + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 928, + "mediaStart" : 0.0, + "mediaDuration" : 928.0, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false + }, + "animationTracks" : { + + } + } + ] + }, + { + "trackIndex" : 5, + "medias" : [ + { + "id" : 55, + "_type" : "IMFile", + "src" : 4, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "phone mockp" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -421.585172915439, + "interp" : "eioe" + }, + "translation1" : { + "type" : "double", + "defaultValue" : -5.83333333333339, + "interp" : "eioe" + }, + "scale0" : { + "type" : "double", + "defaultValue" : 1.1651295564339, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.965908119658119, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 928, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 715.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : -0.5, + "default-translation1" : -0.5, + "default-width" : 345.0 + }, + "animationTracks" : { + + } + } + ] + }, + { + "trackIndex" : 6, + "medias" : [ + { + "id" : 56, + "_type" : "IMFile", + "src" : 5, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "free-sample" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : 499.5, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 271, + "time" : 241, + "value" : 499.5, + "duration" : 30 + }, + { + "endTime" : 361, + "time" : 331, + "value" : 499.5, + "duration" : 30 + } + ] + }, + "translation1" : { + "type" : "double", + "defaultValue" : 313.333333333333, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 271, + "time" : 241, + "value" : 313.333333333333, + "duration" : 30 + }, + { + "endTime" : 361, + "time" : 331, + "value" : 313.333333333333, + "duration" : 30 + } + ] + }, + "rotation2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 361, + "time" : 331, + "value" : 0.0, + "duration" : 30 + } + ] + }, + "scale0" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 30, + "time" : 0, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 60, + "time" : 30, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 91, + "time" : 61, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 121, + "time" : 91, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 151, + "time" : 121, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 181, + "time" : 151, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 211, + "time" : 181, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 241, + "time" : 211, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 271, + "time" : 241, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 301, + "time" : 271, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 331, + "time" : 301, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 361, + "time" : 331, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 391, + "time" : 361, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 421, + "time" : 391, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 451, + "time" : 421, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 481, + "time" : 451, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 511, + "time" : 481, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 542, + "time" : 512, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 573, + "time" : 543, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 603, + "time" : 573, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 633, + "time" : 603, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 663, + "time" : 633, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 693, + "time" : 663, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 723, + "time" : 693, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 753, + "time" : 723, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 783, + "time" : 753, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 813, + "time" : 783, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 843, + "time" : 813, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 873, + "time" : 843, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 903, + "time" : 873, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 928, + "time" : 903, + "value" : 1.25, + "duration" : 25 + } + ] + }, + "scale1" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 30, + "time" : 0, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 60, + "time" : 30, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 91, + "time" : 61, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 121, + "time" : 91, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 151, + "time" : 121, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 181, + "time" : 151, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 211, + "time" : 181, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 241, + "time" : 211, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 271, + "time" : 241, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 301, + "time" : 271, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 331, + "time" : 301, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 361, + "time" : 331, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 391, + "time" : 361, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 421, + "time" : 391, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 451, + "time" : 421, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 481, + "time" : 451, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 511, + "time" : 481, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 542, + "time" : 512, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 573, + "time" : 543, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 603, + "time" : 573, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 633, + "time" : 603, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 663, + "time" : 633, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 693, + "time" : 663, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 723, + "time" : 693, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 753, + "time" : 723, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 783, + "time" : 753, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 813, + "time" : 783, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 843, + "time" : 813, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 873, + "time" : 843, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 903, + "time" : 873, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 928, + "time" : 903, + "value" : 1.25, + "duration" : 25 + } + ] + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 928, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 202.0, + "default-rotation2" : 0.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : -0.5, + "default-translation1" : 0.0, + "default-width" : 347.0 + }, + "animationTracks" : { + "visual" : [ + { + "endTime" : 30, + "duration" : 30, + "range" : [ 0, 30] + }, + { + "endTime" : 60, + "duration" : 30, + "range" : [ 30, 30] + }, + { + "endTime" : 91, + "duration" : 30, + "range" : [ 61, 30] + }, + { + "endTime" : 121, + "duration" : 30, + "range" : [ 91, 30] + }, + { + "endTime" : 151, + "duration" : 30, + "range" : [ 121, 30] + }, + { + "endTime" : 181, + "duration" : 30, + "range" : [ 151, 30] + }, + { + "endTime" : 211, + "duration" : 30, + "range" : [ 181, 30] + }, + { + "endTime" : 241, + "duration" : 30, + "range" : [ 211, 30] + }, + { + "endTime" : 271, + "duration" : 30, + "range" : [ 241, 30] + }, + { + "endTime" : 301, + "duration" : 30, + "range" : [ 271, 30] + }, + { + "endTime" : 331, + "duration" : 30, + "range" : [ 301, 30] + }, + { + "endTime" : 361, + "duration" : 30, + "range" : [ 331, 30] + }, + { + "endTime" : 391, + "duration" : 30, + "range" : [ 361, 30] + }, + { + "endTime" : 421, + "duration" : 30, + "range" : [ 391, 30] + }, + { + "endTime" : 451, + "duration" : 30, + "range" : [ 421, 30] + }, + { + "endTime" : 481, + "duration" : 30, + "range" : [ 451, 30] + }, + { + "endTime" : 511, + "duration" : 30, + "range" : [ 481, 30] + }, + { + "endTime" : 542, + "duration" : 30, + "range" : [ 512, 30] + }, + { + "endTime" : 573, + "duration" : 30, + "range" : [ 543, 30] + }, + { + "endTime" : 603, + "duration" : 30, + "range" : [ 573, 30] + }, + { + "endTime" : 633, + "duration" : 30, + "range" : [ 603, 30] + }, + { + "endTime" : 663, + "duration" : 30, + "range" : [ 633, 30] + }, + { + "endTime" : 693, + "duration" : 30, + "range" : [ 663, 30] + }, + { + "endTime" : 723, + "duration" : 30, + "range" : [ 693, 30] + }, + { + "endTime" : 753, + "duration" : 30, + "range" : [ 723, 30] + }, + { + "endTime" : 783, + "duration" : 30, + "range" : [ 753, 30] + }, + { + "endTime" : 813, + "duration" : 30, + "range" : [ 783, 30] + }, + { + "endTime" : 843, + "duration" : 30, + "range" : [ 813, 30] + }, + { + "endTime" : 873, + "duration" : 30, + "range" : [ 843, 30] + }, + { + "endTime" : 903, + "duration" : 30, + "range" : [ 873, 30] + }, + { + "endTime" : 928, + "duration" : 25, + "range" : [ 903, 25] + } + ] + } + } + ] + }, + { + "trackIndex" : 7, + "medias" : [ + { + "id" : 57, + "_type" : "IMFile", + "src" : 18, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "Capture" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : 1.20085887445856, + "interp" : "eioe" + }, + "translation1" : { + "type" : "double", + "defaultValue" : 0.722391666666338, + "interp" : "eioe" + }, + "scale0" : { + "type" : "double", + "defaultValue" : 1.62463027361881, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 1.67692583485125, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + + ], + "start" : 914, + "duration" : 14, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 549.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : 0.0, + "default-translation1" : -0.5, + "default-width" : 942.0 + }, + "animationTracks" : { + + } + } + ], + "transitions" : [ + { + "name" : "Fade", + "duration" : 14, + "rightMedia" : 57, + "attributes" : { + "bypass" : false, + "reverse" : false, + "trivial" : false, + "useAudioPreRoll" : true, + "useVisualPreRoll" : true + } + + } + ] + }, + { + "trackIndex" : 8, + "medias" : [ + ] + } ] + } + } + ] + }, + "trackAttributes" : [ + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + } + ], + "captionAttributes" : { + "enabled" : true, + "fontName" : "Arial", + "fontSize" : 45, + "backgroundColor" : [ 0, 0, 0, 191], + "foregroundColor" : [ 255, 255, 255, 255], + "lang" : "en", + "alignment" : 0, + "defaultFontSize" : true, + "opacity" : 0.5, + "backgroundEnabled" : true, + "backgroundOnlyAroundText" : true + }, + "gain" : 1.0, + "legacyAttenuateAudioMix" : false, + "backgroundColor" : [ 0, 0, 0, 255] + }, + "metadata" : { + "AutoSaveFile" : "C:\\Users\\Samurai\\AppData\\Local\\TechSmith\\Camtasia Studio\\21.0\\Auto-Saves\\promotion_video21907db.autosave.tscproj", + "CanvasZoom" : 50, + "Date" : "2023-04-02 04:35:42 PM", + "Fit" : 0, + "IsAutoSave" : false, + "IsStandalone" : true, + "Language" : "ENU", + "ProfileName" : "", + "ProjectDimensionsChanged" : "1", + "Title" : "promotion_video", + "audioNarrationNotes" : "", + "calloutStyle" : "Basic" + } +} diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/yellow_background.png b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/yellow_background.png new file mode 100644 index 0000000..e1ce3c4 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/promotion switching vids/yellow_background.png differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion_video.tscproj/1-1Corinthians1614_10_26_7.mp4 b/sources/promotion/fiverr/fitness/promotion_video/promotion_video.tscproj/1-1Corinthians1614_10_26_7.mp4 new file mode 100644 index 0000000..c6344ec Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/promotion_video.tscproj/1-1Corinthians1614_10_26_7.mp4 differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion_video.tscproj/1.mp4 b/sources/promotion/fiverr/fitness/promotion_video/promotion_video.tscproj/1.mp4 new file mode 100644 index 0000000..76a0460 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/promotion_video.tscproj/1.mp4 differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion_video.tscproj/desktop.ini b/sources/promotion/fiverr/fitness/promotion_video/promotion_video.tscproj/desktop.ini new file mode 100644 index 0000000..8de78dc --- /dev/null +++ b/sources/promotion/fiverr/fitness/promotion_video/promotion_video.tscproj/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=C:\ProgramData\TechSmith\Camtasia\Icons\ProjectFolder.ico,0 diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion_video.tscproj/fiverr_banner.png b/sources/promotion/fiverr/fitness/promotion_video/promotion_video.tscproj/fiverr_banner.png new file mode 100644 index 0000000..363cbb1 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/promotion_video.tscproj/fiverr_banner.png differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion_video.tscproj/fiverr_banner_no_phone.png b/sources/promotion/fiverr/fitness/promotion_video/promotion_video.tscproj/fiverr_banner_no_phone.png new file mode 100644 index 0000000..bd6a5bf Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/promotion_video.tscproj/fiverr_banner_no_phone.png differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion_video.tscproj/free-sample.png b/sources/promotion/fiverr/fitness/promotion_video/promotion_video.tscproj/free-sample.png new file mode 100644 index 0000000..fcf8ac9 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/promotion_video.tscproj/free-sample.png differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion_video.tscproj/phone mockp.png b/sources/promotion/fiverr/fitness/promotion_video/promotion_video.tscproj/phone mockp.png new file mode 100644 index 0000000..691255f Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/promotion_video.tscproj/phone mockp.png differ diff --git a/sources/promotion/fiverr/fitness/promotion_video/promotion_video.tscproj/promotion_video.tscproj b/sources/promotion/fiverr/fitness/promotion_video/promotion_video.tscproj/promotion_video.tscproj new file mode 100644 index 0000000..9734185 --- /dev/null +++ b/sources/promotion/fiverr/fitness/promotion_video/promotion_video.tscproj/promotion_video.tscproj @@ -0,0 +1,1066 @@ +{ + "title" : "", + "description" : "", + "author" : "", + "targetLoudness" : -18.0, + "shouldApplyLoudnessNormalization" : true, + "videoFormatFrameRate" : 30, + "audioFormatSampleRate" : 44100, + "width" : 1280.0, + "height" : 770.0, + "version" : "5.0", + "editRate" : 30, + "authoringClientName" : { + "name" : "Camtasia", + "platform" : "Windows", + "version" : "21.0" + }, + "sourceBin" : [ + { + "id" : 1, + "src" : "fiverr_banner.png", + "rect" : [0, 0, 1280, 769], + "lastMod" : "20230404T164756", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 1], + "type" : 1, + "editRate" : 10000000, + "trackRect" : [0, 0, 1280, 769], + "sampleRate" : 0, + "bitDepth" : 32, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230402T133756.732511" + } + }, + { + "id" : 2, + "src" : "1.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T164756", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 7900], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : 30, + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230402T133846.039087" + } + }, + { + "id" : 3, + "src" : "fiverr_banner_no_phone.png", + "rect" : [0, 0, 1280, 769], + "lastMod" : "20230404T164756", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 1], + "type" : 1, + "editRate" : 10000000, + "trackRect" : [0, 0, 1280, 769], + "sampleRate" : 0, + "bitDepth" : 32, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230402T134025.135559" + } + }, + { + "id" : 4, + "src" : "phone mockp.png", + "rect" : [0, 0, 345, 715], + "lastMod" : "20230404T164756", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 1], + "type" : 1, + "editRate" : 10000000, + "trackRect" : [0, 0, 345, 715], + "sampleRate" : 0, + "bitDepth" : 32, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230402T134122.413603" + } + }, + { + "id" : 5, + "src" : "free-sample.png", + "rect" : [0, 0, 347, 202], + "lastMod" : "20230404T164756", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 1], + "type" : 1, + "editRate" : 10000000, + "trackRect" : [0, 0, 347, 202], + "sampleRate" : 0, + "bitDepth" : 32, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230402T134824.735976" + } + }, + { + "id" : 6, + "src" : "1-1Corinthians1614_10_26_7.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T175044", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 23709], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : "120001/5000", + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + }, + { + "range" : [0, 23694], + "type" : 2, + "editRate" : 1000, + "trackRect" : [0, 0, 0, 0], + "sampleRate" : 44100, + "bitDepth" : 16, + "numChannels" : 2, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T175227.994743" + } + } + ], + "timeline" : { + "id" : 7, + "sceneTrack" : { + "scenes" : [ + { + "csml" : { + "tracks" : [ + { + "trackIndex" : 0, + "medias" : [ + { + "id" : 8, + "_type" : "IMFile", + "src" : 3, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "fiverr_banner_no_phone" + }, + "parameters" : { + "translation1" : -0.5, + "sourceCrop0" : 0.0, + "sourceCrop1" : 0.0, + "sourceCrop2" : 0.0, + "sourceCrop3" : 0.0, + "geometryCrop0" : 0.0, + "geometryCrop1" : 0.0, + "geometryCrop2" : 0.0, + "geometryCrop3" : 0.0 + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 711, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 769.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : 0.0, + "default-translation1" : -0.5, + "default-width" : 1280.0 + }, + "animationTracks" : { + + } + } + ] + }, + { + "trackIndex" : 1, + "medias" : [ + { + "id" : 9, + "_type" : "UnifiedMedia", + "video" : + { + "id" : 10, + "_type" : "VMFile", + "src" : 6, + "trackNumber" : 0, + "attributes" : { + "ident" : "1-1Corinthians1614_10_26_7" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -421.585172915439, + "interp" : "eioe" + }, + "translation1" : { + "type" : "double", + "defaultValue" : -0.581867283950777, + "interp" : "eioe" + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + { + "effectName" : "RoundCorners", + "bypassed" : false, + "category" : "categoryVisualEffects", + "parameters" : { + "bottom-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "bottom-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "radius" : { + "type" : "double", + "defaultValue" : 90.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + } + }, + "metadata" : { + "default-RoundCorners_radius" : 20.0, + "effectIndex" : "0", + "presetName" : "Corner Rounding" + } + } + ], + "start" : 0, + "duration" : 711, + "mediaStart" : 0, + "mediaDuration" : 711, + "scalar" : 1, + "animationTracks" : { + + } + }, + "audio" : + { + "id" : 11, + "_type" : "AMFile", + "src" : 6, + "trackNumber" : 1, + "attributes" : { + "ident" : "", + "gain" : 1.0, + "mixToMono" : false, + "loudnessNormalization" : true, + "sourceFileOffset" : 0 + }, + "channelNumber" : "0,1", + "effects" : [ + + ], + "start" : 0, + "duration" : 711, + "mediaStart" : 0, + "mediaDuration" : 711, + "scalar" : 1, + "animationTracks" : { + + } + } +, + "start" : 0, + "duration" : 711, + "mediaStart" : 0, + "mediaDuration" : 711, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false + } + } + ] + }, + { + "trackIndex" : 2, + "medias" : [ + { + "id" : 12, + "_type" : "IMFile", + "src" : 4, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "phone mockp" + }, + "parameters" : { + "translation0" : -421.585172915439, + "translation1" : -5.83333333333339, + "scale0" : 1.1651295564339, + "scale1" : 0.965908119658119, + "sourceCrop0" : 0.0, + "sourceCrop1" : 0.0, + "sourceCrop2" : 0.0, + "sourceCrop3" : 0.0, + "geometryCrop0" : 0.0, + "geometryCrop1" : 0.0, + "geometryCrop2" : 0.0, + "geometryCrop3" : 0.0 + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 711, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 715.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : -0.5, + "default-translation1" : -0.5, + "default-width" : 345.0 + }, + "animationTracks" : { + + } + } + ] + }, + { + "trackIndex" : 3, + "medias" : [ + { + "id" : 13, + "_type" : "IMFile", + "src" : 5, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "free-sample" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : 499.5, + "keyframes" : [ + { + "endTime" : 361, + "time" : 331, + "value" : 499.5, + "duration" : 30 + } + ] + }, + "translation1" : { + "type" : "double", + "defaultValue" : 313.333333333333, + "keyframes" : [ + { + "endTime" : 361, + "time" : 331, + "value" : 313.333333333333, + "duration" : 30 + } + ] + }, + "rotation2" : { + "type" : "double", + "defaultValue" : 0.0, + "keyframes" : [ + { + "endTime" : 361, + "time" : 331, + "value" : 0.0, + "duration" : 30 + } + ] + }, + "scale0" : { + "type" : "double", + "defaultValue" : 1.0, + "keyframes" : [ + { + "endTime" : 30, + "time" : 0, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 60, + "time" : 30, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 91, + "time" : 61, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 121, + "time" : 91, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 151, + "time" : 121, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 181, + "time" : 151, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 211, + "time" : 181, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 241, + "time" : 211, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 271, + "time" : 241, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 301, + "time" : 271, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 331, + "time" : 301, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 361, + "time" : 331, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 391, + "time" : 361, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 421, + "time" : 391, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 451, + "time" : 421, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 481, + "time" : 451, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 511, + "time" : 481, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 542, + "time" : 512, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 573, + "time" : 543, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 603, + "time" : 573, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 633, + "time" : 603, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 663, + "time" : 633, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 693, + "time" : 663, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 711, + "time" : 697, + "value" : 1.0, + "duration" : 14 + } + ] + }, + "scale1" : { + "type" : "double", + "defaultValue" : 1.0, + "keyframes" : [ + { + "endTime" : 30, + "time" : 0, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 60, + "time" : 30, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 91, + "time" : 61, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 121, + "time" : 91, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 151, + "time" : 121, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 181, + "time" : 151, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 211, + "time" : 181, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 241, + "time" : 211, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 271, + "time" : 241, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 301, + "time" : 271, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 331, + "time" : 301, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 361, + "time" : 331, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 391, + "time" : 361, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 421, + "time" : 391, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 451, + "time" : 421, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 481, + "time" : 451, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 511, + "time" : 481, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 542, + "time" : 512, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 573, + "time" : 543, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 603, + "time" : 573, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 633, + "time" : 603, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 663, + "time" : 633, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 693, + "time" : 663, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 711, + "time" : 697, + "value" : 1.0, + "duration" : 14 + } + ] + }, + "sourceCrop0" : 0.0, + "sourceCrop1" : 0.0, + "sourceCrop2" : 0.0, + "sourceCrop3" : 0.0, + "geometryCrop0" : 0.0, + "geometryCrop1" : 0.0, + "geometryCrop2" : 0.0, + "geometryCrop3" : 0.0 + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 711, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 202.0, + "default-rotation2" : 0.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : -0.5, + "default-translation1" : 0.0, + "default-width" : 347.0 + }, + "animationTracks" : { + "visual" : [ + { + "endTime" : 30, + "duration" : 30, + "range" : [ 0, 30] + }, + { + "endTime" : 60, + "duration" : 30, + "range" : [ 30, 30] + }, + { + "endTime" : 91, + "duration" : 30, + "range" : [ 61, 30] + }, + { + "endTime" : 121, + "duration" : 30, + "range" : [ 91, 30] + }, + { + "endTime" : 151, + "duration" : 30, + "range" : [ 121, 30] + }, + { + "endTime" : 181, + "duration" : 30, + "range" : [ 151, 30] + }, + { + "endTime" : 211, + "duration" : 30, + "range" : [ 181, 30] + }, + { + "endTime" : 241, + "duration" : 30, + "range" : [ 211, 30] + }, + { + "endTime" : 271, + "duration" : 30, + "range" : [ 241, 30] + }, + { + "endTime" : 301, + "duration" : 30, + "range" : [ 271, 30] + }, + { + "endTime" : 331, + "duration" : 30, + "range" : [ 301, 30] + }, + { + "endTime" : 361, + "duration" : 30, + "range" : [ 331, 30] + }, + { + "endTime" : 391, + "duration" : 30, + "range" : [ 361, 30] + }, + { + "endTime" : 421, + "duration" : 30, + "range" : [ 391, 30] + }, + { + "endTime" : 451, + "duration" : 30, + "range" : [ 421, 30] + }, + { + "endTime" : 481, + "duration" : 30, + "range" : [ 451, 30] + }, + { + "endTime" : 511, + "duration" : 30, + "range" : [ 481, 30] + }, + { + "endTime" : 542, + "duration" : 30, + "range" : [ 512, 30] + }, + { + "endTime" : 573, + "duration" : 30, + "range" : [ 543, 30] + }, + { + "endTime" : 603, + "duration" : 30, + "range" : [ 573, 30] + }, + { + "endTime" : 633, + "duration" : 30, + "range" : [ 603, 30] + }, + { + "endTime" : 663, + "duration" : 30, + "range" : [ 633, 30] + }, + { + "endTime" : 693, + "duration" : 30, + "range" : [ 663, 30] + }, + { + "endTime" : 711, + "duration" : 14, + "range" : [ 697, 14] + } + ] + } + } + ] + }, + { + "trackIndex" : 4, + "medias" : [ + ] + } ] + } + } + ] + }, + "trackAttributes" : [ + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + } + ], + "captionAttributes" : { + "enabled" : true, + "fontName" : "Arial", + "fontSize" : 45, + "backgroundColor" : [ 0, 0, 0, 191], + "foregroundColor" : [ 255, 255, 255, 255], + "lang" : "en", + "alignment" : 0, + "defaultFontSize" : true, + "opacity" : 0.5, + "backgroundEnabled" : true, + "backgroundOnlyAroundText" : true + }, + "gain" : 1.0, + "legacyAttenuateAudioMix" : false, + "backgroundColor" : [ 0, 0, 0, 255] + }, + "metadata" : { + "AutoSaveFile" : "C:\\Users\\Samurai\\AppData\\Local\\TechSmith\\Camtasia Studio\\21.0\\Auto-Saves\\promotion_video1913867.autosave.tscproj", + "CanvasZoom" : 60, + "Date" : "2023-04-02 04:35:42 PM", + "Fit" : 0, + "IsAutoSave" : false, + "IsStandalone" : true, + "Language" : "ENU", + "ProfileName" : "", + "ProjectDimensionsChanged" : "1", + "Title" : "promotion_video", + "audioNarrationNotes" : "", + "calloutStyle" : "Basic" + } +} diff --git a/sources/promotion/fiverr/fitness/promotion_video/yellow_background.png b/sources/promotion/fiverr/fitness/promotion_video/yellow_background.png new file mode 100644 index 0000000..e1ce3c4 Binary files /dev/null and b/sources/promotion/fiverr/fitness/promotion_video/yellow_background.png differ diff --git a/sources/text_data/fitness.txt b/sources/text_data/fitness.txt index 493fc97..b2413ee 100644 --- a/sources/text_data/fitness.txt +++ b/sources/text_data/fitness.txt @@ -6,75 +6,64 @@ If you think lifting is dangerous, try being weak. Being weak is dangerous. ::: The only place where success comes before work is in the dictionary. ::: Vidal Sassoon The pain you feel today will be the strength you feel tomorrow." ::: Arnold Schwarzenegger Get comfortable with being uncomfortable! ::: Jillian Michaels -A champion is someone who gets up when they can’t. ::: Jack Dempsey -Today I will do what others won’t, so tomorrow I can accomplish what others can’t. ::: Jerry Rice -Sometimes you don’t realize your own strength until you come face to face with your greatest weakness. ::: Susan Gale +A champion is someone who gets up when they can't. ::: Jack Dempsey +Today I will do what others won't, so tomorrow I can accomplish what others can't. ::: Jerry Rice +Sometimes you don't realize your own strength until you come face to face with your greatest weakness. ::: Susan Gale No pain, no gain. -You miss 100% of the shots you don’t take. ::: Wayne Gretzky +You miss 100% of the shots you don't take. ::: Wayne Gretzky You must do the thing you think you cannot do. ::: Eleanor Roosevelt In training, you listen to your body. In competition, you tell your body to shut up. ::: Rich Froning Jr. -The difference between the impossible and the possible lies in a person’s determination. ::: Tommy Lasorda -If you want something you’ve never had, you must be willing to do something you’ve never done. ::: Thomas Jefferson +The difference between the impossible and the possible lies in a person's determination. ::: Tommy Lasorda +If you want something you've never had, you must be willing to do something you've never done. ::: Thomas Jefferson The best way to gain self-confidence is to do what you are afraid to do. ::: Swati Sharma Nothing will work unless you do. ::: Maya Angelou -There’s no secret formula. I lift heavy, work hard, and aim to be the best. ::: Ronnie Coleman +There's no secret formula. I lift heavy, work hard, and aim to be the best. ::: Ronnie Coleman Do what you have to do until you can do what you want to do. ::: Oprah Winfrey Pain is temporary. Quitting lasts forever. ::: Lance Armstrong -Just believe in yourself. Even if you don’t pretend that you do and, and some point, you will. ::: Venus Williams +Just believe in yourself. Even if you don't pretend that you do and, and some point, you will. ::: Venus Williams All great achievements require time. ::: Maya Angelou I train to be the best in the world on my worst day. ::: Ronda Rousey Once you are exercising regularly, the hardest thing is to stop it. ::: Erin Gray The best way to predict the future is to create it. ::: Abraham Lincoln -Rome wasn’t built in a day, but they worked on it every single day. -Your body can stand almost anything. It’s your mind that you have to convince. +Rome wasn't built in a day, but they worked on it every single day. +Your body can stand almost anything. It's your mind that you have to convince. What seems impossible today will one day become your warm-up. Never give up on a dream just because of the time it will take to accomplish it. The time will pass anyway. ::: Earl Nightingale -You just can’t beat the person who never gives up. ::: Babe Ruth +You just can't beat the person who never gives up. ::: Babe Ruth Do something today that your future self will thank you for. ::: Sean Patrick Flanery -Take care of your body. It’s the only place you have to live. ::: Jim Rohn +Take care of your body. It's the only place you have to live. ::: Jim Rohn You did not wake up today to be mediocre. Push harder than yesterday if you want a different tomorrow. Motivation is what gets you started. Habit is what keeps you going. ::: Jim Ryun The secret of getting ahead is getting started. ::: Mark Twain -If you fail to prepare, you’re prepared to fail. ::: Mark Spitz -When you have a clear vision of your goal, it’s easier to take the first step toward it. ::: LL Cool J +If you fail to prepare, you're prepared to fail. ::: Mark Spitz +When you have a clear vision of your goal, it's easier to take the first step toward it. ::: LL Cool J When I feel tired, I just think about how great I will feel once I finally reach my goal. ::: Michael Phelps -The only bad workout is the one that didn’t happen. -Don’t be afraid of failure. This is the way to succeed. ::: LeBron James +The only bad workout is the one that didn't happen. +Don't be afraid of failure. This is the way to succeed. ::: LeBron James You should never stay at the same level. Always push yourself to the next. ::: Marnelli Dimzon Action is the foundational key to all success. ::: Pablo Picasso You can either suffer the pain of discipline or the pain of regret. :::Jim Rohn We can push ourselves further. We always have more to give. ::: Simone Biles Every champion was once a contender who refused to give up. ::: Rock Balboa Keep working even when no one is watching. ::: Alex Morgan -Don’t dream of winning. Train for it! ::: Mo Farah +Don't dream of winning. Train for it! ::: Mo Farah Discipline is the bridge between goals and accomplishment. ::: Jim Rohn -Fitness is not about being better than someone else. It’s about being better than you used to be. ::: Khloe Kardashian +Fitness is not about being better than someone else. It's about being better than you used to be. ::: Khloe Kardashian All our dreams can come true if we have the courage to pursue them. ::: Walt Disney Great things come from hard work and perseverance. No excuses. ::: Kobe Bryant Always make a total effort, even when the odds are against you. ::: Arnold Palmer Success is walking from failure to failure with no loss of enthusiasm. ::: Winston Churchill Your mind will quit a thousand times before your body will. ::: Reginald Red -I’ve grown most not from victories, but setbacks. If winning is God’s reward, then losing is how he teaches us. ::: Serena Williams -Set your goals high, and don’t stop until you get there. ::: Bo Jackson -Get ready, be prepared. So when opportunities finally show themselves, you’ll be able to own them. ::: Hannah Gabriels +I've grown most not from victories, but setbacks. If winning is God's reward, then losing is how he teaches us. ::: Serena Williams +Set your goals high, and don't stop until you get there. ::: Bo Jackson +Get ready, be prepared. So when opportunities finally show themselves, you'll be able to own them. ::: Hannah Gabriels Get comfortable with being uncomfortable! ::: Jillian Michaels Time, Effort, Sacrifice, and Sweat. How will you pay for your goals? ::: Usain Bolt He who is not courageous enough to take risks, will accomplish nothing in life. ::: Muhammad Ali -It’s supposed to be hard. If it wasn’t hard, everyone would do it. The hard is what makes it great. ::: Tom Hanks +It's supposed to be hard. If it wasn't hard, everyone would do it. The hard is what makes it great. ::: Tom Hanks The only place where success comes before work is in the dictionary. ::: Vidal Sassoon The clock is ticking. Are you becoming the person you want to be? ::: Greg Plitt The successful warrior is the average man, with laser-like focus. ::: Bruce Lee -No matter how many mistakes you make or how slow you progress, you are still way ahead of everyone who isn’t trying. ::: Tony Robbins -Making excuses burns zero calories per hour. - - - - - - - - - - - +No matter how many mistakes you make or how slow you progress, you are still way ahead of everyone who isn't trying. ::: Tony Robbins +Making excuses burns zero calories per hour. \ No newline at end of file