<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Artificial Intelligence &#8211; Tools for content creators</title>
	<atom:link href="https://contentgametips.com/category/artificial-intelligence/feed/" rel="self" type="application/rss+xml" />
	<link>https://contentgametips.com</link>
	<description>tutorials and courses</description>
	<lastBuildDate>Thu, 19 Dec 2024 13:02:04 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.1</generator>

<image>
	<url>https://contentgametips.com/wp-content/uploads/2023/07/cropped-contentprenuer-2-32x32.png</url>
	<title>Artificial Intelligence &#8211; Tools for content creators</title>
	<link>https://contentgametips.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How I Created a WooCommerce Plugin Without Knowing Code</title>
		<link>https://contentgametips.com/how-i-created-a-woocommerce-plugin-without-knowing-code/</link>
					<comments>https://contentgametips.com/how-i-created-a-woocommerce-plugin-without-knowing-code/#respond</comments>
		
		<dc:creator><![CDATA[Nechma Shor]]></dc:creator>
		<pubDate>Thu, 19 Dec 2024 11:46:37 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[ChatGPT]]></category>
		<category><![CDATA[create plugin]]></category>
		<category><![CDATA[task magic]]></category>
		<category><![CDATA[TaskMagic]]></category>
		<category><![CDATA[Woocommerce]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">https://contentgametips.com/?p=1739</guid>

					<description><![CDATA[Creating a WooCommerce plugin without coding might seem challenging, but with the right tools and guidance, it’s absolutely achievable. I developed a plugin to manage products that only ship to US addresses, adding options to display warnings, prevent checkout issues, and ensure smooth user experience. In this post, I’ll walk you through how I used ChatGPT to create this plugin, the steps to set it up, and how you can customize it for your store. Whether you're a developer or a store owner, this guide will help you simplify and automate your workflow.]]></description>
										<content:encoded><![CDATA[
<h2 class="wp-block-heading">The Problem: Restricting Shipping for Certain Products</h2>



<p>Probably, you&#8217;ve found yourself in a situation where you needed to change a small thing in WordPress to make it work for you. I&#8217;ve faced this countless times over the past 14 years of building WordPress websites. The main problem is that I don’t know PHP, and I don’t want to learn it either.</p>



<p>This time, I ran into an issue with WooCommerce. I sell products from <a href="https://go.contentgametips.com/printify" target="_blank" rel="noreferrer noopener">Printify</a> or <a href="https://go.contentgametips.com/printful" target="_blank" rel="noreferrer noopener">Printful </a>on my website, and some of them only ship to the US. Most of the products do ship everywhere, but some don’t, and I still want to keep them in my store.</p>



<p>I want <a href="https://pinkdreams.gifts/" target="_blank" rel="noreferrer noopener">my website</a> to help people from all over the world. I needed to make a small change: if someone enters a shipping address outside the US, I want the website to notify them and stop them from purchasing the product unless they change the address to the US or remove the problematic product from their cart.</p>



<p>I also want a warning to show up on the product page so they know not to add the product to their cart in the first place. On top of that, I want it to be a very simple setting—just checking a box on the product edit page—so I can let automation handle marking all the products for me instead of doing it manually for each one.</p>



<h3 class="wp-block-heading">Everything I Added to the Plugin &#8211; WooCommerce US Shipping Restriction</h3>



<p>Let’s go over everything I added to the plugin, and then I’ll explain exactly how I created it. I have to admit it took me some time because of all the changes I wanted to make. While I was creating the plugin, I kept getting new ideas to make it better, and all the revisions I made added time to the process.</p>



<p>It all starts with the product page. In the general product settings, there’s now a new option to mark if this product ships only to US addresses. That’s all the setup needed on the backend. When I want to update a product, I just check this option, save the changes, and everything else will show up on the front end.</p>



<figure class="wp-block-image size-large"><img fetchpriority="high" decoding="async" width="1024" height="427" src="https://contentgametips.com/wp-content/uploads/2024/12/check-box-1024x427.jpg" alt="" class="wp-image-1740" srcset="https://contentgametips.com/wp-content/uploads/2024/12/check-box-1024x427.jpg 1024w, https://contentgametips.com/wp-content/uploads/2024/12/check-box-300x125.jpg 300w, https://contentgametips.com/wp-content/uploads/2024/12/check-box-768x320.jpg 768w, https://contentgametips.com/wp-content/uploads/2024/12/check-box-1536x641.jpg 1536w, https://contentgametips.com/wp-content/uploads/2024/12/check-box-1320x551.jpg 1320w, https://contentgametips.com/wp-content/uploads/2024/12/check-box.jpg 2033w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Now, let’s move to the front-end product page. On the product page, there’s a warning that this product ships only to US addresses, along with a US flag icon. I also added the same warning in the catalog view, just below the &#8220;Add to Cart&#8221; button.</p>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="579" src="https://contentgametips.com/wp-content/uploads/2024/12/product-page-warning-1024x579.jpg" alt="" class="wp-image-1741" srcset="https://contentgametips.com/wp-content/uploads/2024/12/product-page-warning-1024x579.jpg 1024w, https://contentgametips.com/wp-content/uploads/2024/12/product-page-warning-300x170.jpg 300w, https://contentgametips.com/wp-content/uploads/2024/12/product-page-warning-768x434.jpg 768w, https://contentgametips.com/wp-content/uploads/2024/12/product-page-warning-1536x869.jpg 1536w, https://contentgametips.com/wp-content/uploads/2024/12/product-page-warning-2048x1159.jpg 2048w, https://contentgametips.com/wp-content/uploads/2024/12/product-page-warning-1320x747.jpg 1320w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>If someone adds the product to their cart and their saved address isn’t in the US, they’ll see a yellow warning message with the text and the US flag. If they continue to the checkout page, the product will still be highlighted in yellow, but now there’s a big delete option, so they can easily remove the product without going back to the cart page. They can also change their address at this stage and proceed with the product.</p>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="488" src="https://contentgametips.com/wp-content/uploads/2024/12/cart-warning-1024x488.jpg" alt="" class="wp-image-1742" srcset="https://contentgametips.com/wp-content/uploads/2024/12/cart-warning-1024x488.jpg 1024w, https://contentgametips.com/wp-content/uploads/2024/12/cart-warning-300x143.jpg 300w, https://contentgametips.com/wp-content/uploads/2024/12/cart-warning-768x366.jpg 768w, https://contentgametips.com/wp-content/uploads/2024/12/cart-warning-1536x732.jpg 1536w, https://contentgametips.com/wp-content/uploads/2024/12/cart-warning-1320x629.jpg 1320w, https://contentgametips.com/wp-content/uploads/2024/12/cart-warning.jpg 1986w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Additionally, if they try to complete the order with a non-US address, the &#8220;Checkout with PayPal&#8221; button disappears. This prevents them from completing the order with that product in the cart. If they click to proceed, they’ll get a notification explaining that the product is only available for US addresses, and they can either remove it or update their address.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="79" src="https://contentgametips.com/wp-content/uploads/2024/12/warning-in-checkout-1024x79.jpg" alt="" class="wp-image-1743" srcset="https://contentgametips.com/wp-content/uploads/2024/12/warning-in-checkout-1024x79.jpg 1024w, https://contentgametips.com/wp-content/uploads/2024/12/warning-in-checkout-300x23.jpg 300w, https://contentgametips.com/wp-content/uploads/2024/12/warning-in-checkout-768x59.jpg 768w, https://contentgametips.com/wp-content/uploads/2024/12/warning-in-checkout-1536x118.jpg 1536w, https://contentgametips.com/wp-content/uploads/2024/12/warning-in-checkout-1320x101.jpg 1320w, https://contentgametips.com/wp-content/uploads/2024/12/warning-in-checkout.jpg 1951w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p>I didn’t want to prevent the product from being added to the cart if the address wasn’t in the US because sometimes people use services to forward items to their address through a US address, or they might want to send it as a gift to someone in the US. So, I allowed the product to be added to the cart.</p>



<p>That’s everything the plugin does. Now let’s see how I created it—all without knowing any code.<br></p>



<h2 class="wp-block-heading">Making the Plugin</h2>



<p>I started with a simple instruction to ChatGPT, explaining what I wanted to achieve.</p>



<p>After some back and forth, it finally worked the way I wanted. But then, I decided I also wanted the plugin to allow removing the product directly from the checkout page. Usually, you can only remove products from the cart page, but I didn’t want people to leave the checkout page just to go back and make changes to the cart.</p>



<p>I really hope people outside the US will see the warning before they add the product to their cart. But if they don’t, at least I can make it easier for them to handle it directly on the checkout page.</p>



<h3 class="wp-block-heading">WordPress Code Types</h3>



<p>Since I wanted to add a delete button on the checkout page, I asked ChatGPT to provide the code for that. This required adding a new file for JavaScript code. If you’re not familiar with code like me, you just need to know that WordPress uses a few different types of code like PHP, JavaScript, HTML, etc. When creating a plugin, you’ll often need separate files for each type of code.</p>



<p>When you give ChatGPT instructions for creating a plugin, start by describing the main idea and focus on getting it to work. Once the basic functionality is in place, you can make changes and improvements step by step.</p>



<h3 class="wp-block-heading">Making Changes to the plugin with ChatGPT</h3>



<p>If the code starts getting too long and ChatGPT can’t generate it all at once, ask it to continue from where it stopped. You can copy the output in two or more parts.</p>



<p>When making changes, do each change separately. This way, if something doesn’t work, it’s easier to identify and fix the specific issue.</p>



<p>If ChatGPT provides only part of the code for a change, ask where it should be added so you can place it in the correct location.</p>



<p>Each section of the code usually comes with a title or explanation from ChatGPT. Use these to understand what each part of the code does. If you need to modify something later, you’ll know exactly where to find it in the longer code.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="808" src="https://contentgametips.com/wp-content/uploads/2024/12/chatgpt-help-1024x808.jpg" alt="" class="wp-image-1746" srcset="https://contentgametips.com/wp-content/uploads/2024/12/chatgpt-help-1024x808.jpg 1024w, https://contentgametips.com/wp-content/uploads/2024/12/chatgpt-help-300x237.jpg 300w, https://contentgametips.com/wp-content/uploads/2024/12/chatgpt-help-768x606.jpg 768w, https://contentgametips.com/wp-content/uploads/2024/12/chatgpt-help-1536x1211.jpg 1536w, https://contentgametips.com/wp-content/uploads/2024/12/chatgpt-help-1320x1041.jpg 1320w, https://contentgametips.com/wp-content/uploads/2024/12/chatgpt-help.jpg 1846w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h2 class="wp-block-heading">Organizing Code Files for a Functional WordPress Plugin</h2>



<p>Now, let’s see how to use the code to build the plugin.</p>



<p>To use the code you got from ChatGPT, open Notepad on your computer. Copy the code from ChatGPT and paste it into Notepad. You can ask ChatGPT to give you a name for the plugin you’re creating and use that as the file name. Save the file in a new folder with the same name as the plugin.</p>



<p>If the file is PHP, you need to save it with a .php extension. To ensure it saves correctly, choose the file type <em>All Files</em> when saving. If you don’t select this option, it won’t save correctly.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="690" src="https://contentgametips.com/wp-content/uploads/2024/12/chatgpt-instructions-1024x690.jpg" alt="" class="wp-image-1745" srcset="https://contentgametips.com/wp-content/uploads/2024/12/chatgpt-instructions-1024x690.jpg 1024w, https://contentgametips.com/wp-content/uploads/2024/12/chatgpt-instructions-300x202.jpg 300w, https://contentgametips.com/wp-content/uploads/2024/12/chatgpt-instructions-768x517.jpg 768w, https://contentgametips.com/wp-content/uploads/2024/12/chatgpt-instructions.jpg 1286w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p>If the code also includes JavaScript, save it in a separate file within the same folder. Use a .js extension for the JavaScript file and, again, choose <em>All Files</em> when saving. You can ask ChatGPT for the exact names for all the files.</p>



<p>Once you’ve saved all the files, exit the folder and right-click on it. You should see an option to compress the folder. Click on it to create a ZIP file. This ZIP file is your plugin.</p>



<h3 class="wp-block-heading">Testing and Refining the Plugin for Perfect Results</h3>



<p>Now, go to your WordPress website. In the backend, click on <em>Plugins</em>, then <em>Add New</em>, and upload the ZIP file from your computer. If the plugin is good, it will install without issues.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="553" src="https://contentgametips.com/wp-content/uploads/2024/12/upload-plugin-1024x553.jpg" alt="" class="wp-image-1744" srcset="https://contentgametips.com/wp-content/uploads/2024/12/upload-plugin-1024x553.jpg 1024w, https://contentgametips.com/wp-content/uploads/2024/12/upload-plugin-300x162.jpg 300w, https://contentgametips.com/wp-content/uploads/2024/12/upload-plugin-768x415.jpg 768w, https://contentgametips.com/wp-content/uploads/2024/12/upload-plugin-1536x829.jpg 1536w, https://contentgametips.com/wp-content/uploads/2024/12/upload-plugin-2048x1105.jpg 2048w, https://contentgametips.com/wp-content/uploads/2024/12/upload-plugin-1320x713.jpg 1320w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p>If you encounter an error and your website goes down because of it, you’ll need to access your FTP panel. Find the wp-content folder, then the plugins folder, and locate the plugin folder you created. Delete it from there.</p>



<p>After that, return to ChatGPT, explain the issue, and ask for help finding and fixing the problem.</p>



<p>If you make any changes, update the PHP file or the JavaScript file as needed and save it again. Make sure to delete the previous compressed file to avoid mistakes when uploading. Then compress the folder again into a ZIP file. Keep testing until everything works exactly as you want it to.</p>



<h2 class="wp-block-heading">Automating Product Updates with TaskMagic for WooCommerce</h2>



<p>&nbsp;I’ve found for the uploading process: when you upload products from <a href="https://go.contentgametips.com/printify" target="_blank" rel="noreferrer noopener">Printify</a>, <a href="https://go.contentgametips.com/printful" target="_blank" rel="noreferrer noopener">Printful</a>, or any other service connected to your <a href="https://pinkdreams.gifts/" target="_blank" rel="noreferrer noopener">WooCommerce store</a>, you’re limited by what the service allows during the upload process. Sometimes, you can choose categories, and sometimes you can’t. Either way, you usually still need to go into the products you’ve uploaded and make changes.</p>



<p>I have another tutorial on how to automate this process using <a href="https://go.contentgametips.com/taskmagic" target="_blank" rel="noreferrer noopener">TaskMagic automation</a>. If you have <a href="https://go.contentgametips.com/taskmagic" target="_blank" rel="noreferrer noopener">TaskMagic</a> and want to go through all your products to update them, you can add a step to your existing automation for editing WooCommerce products.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="631" src="https://contentgametips.com/wp-content/uploads/2024/12/taskmagic-1024x631.jpg" alt="" class="wp-image-1747" srcset="https://contentgametips.com/wp-content/uploads/2024/12/taskmagic-1024x631.jpg 1024w, https://contentgametips.com/wp-content/uploads/2024/12/taskmagic-300x185.jpg 300w, https://contentgametips.com/wp-content/uploads/2024/12/taskmagic-768x473.jpg 768w, https://contentgametips.com/wp-content/uploads/2024/12/taskmagic-1536x947.jpg 1536w, https://contentgametips.com/wp-content/uploads/2024/12/taskmagic-2048x1262.jpg 2048w, https://contentgametips.com/wp-content/uploads/2024/12/taskmagic-1320x814.jpg 1320w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p>In the automation, you can add a step to click on the checkbox that marks the product as not shipping outside the US. It doesn’t matter where you place this step in the workflow—just add it between the existing steps for updating products.</p>



<h2 class="wp-block-heading">Get Your Free WooCommerce Plugin</h2>




The form can be filled in the actual <a href="https://contentgametips.com/how-i-created-a-woocommerce-plugin-without-knowing-code/">website url</a>.]]></content:encoded>
					
					<wfw:commentRss>https://contentgametips.com/how-i-created-a-woocommerce-plugin-without-knowing-code/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Invideo AI 2.0- How to work with the AI box</title>
		<link>https://contentgametips.com/invideo-ai-2-0-how-to-work-with-the-ai-box/</link>
					<comments>https://contentgametips.com/invideo-ai-2-0-how-to-work-with-the-ai-box/#respond</comments>
		
		<dc:creator><![CDATA[Nechma Shor]]></dc:creator>
		<pubDate>Thu, 06 Jun 2024 09:23:58 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[Tools for contnet creators]]></category>
		<category><![CDATA[Video]]></category>
		<guid isPermaLink="false">https://contentgametips.com/?p=1490</guid>

					<description><![CDATA[How to use the Magic Box in InVideo AI? &#160;I like to have control over anything I create, so this box was a...]]></description>
										<content:encoded><![CDATA[
			
			
										
			
			


<p>How to use the Magic Box in <a href="https://go.contentgametips.com/invideostudio" target="_blank" rel="noreferrer noopener">InVideo AI</a>?</p>



<p>&nbsp;I like to have control over anything I create, so this box was a mystery for me.&nbsp;</p>



<p>I didn&#8217;t know what I should do with it if I couldn&#8217;t choose for myself what to change.</p>



<p>&nbsp;In InVideo AI, you get a full video created by the AI. If it&#8217;s a good video, it&#8217;s a discussion for another time.</p>



<p>&nbsp;But in this video, I want to understand what prompt I can write in the box and how it will fix the video. first, you need to create the video itself.</p>



<p>&nbsp;You can use the Prompt Editor to create the prompt.</p>



<p>&nbsp;I made another video dedicated to this, so watch that.&nbsp;</p>



<p>&nbsp;After creating the video, you need to think about whether you want to change something in the video.&nbsp;</p>



<p>The idea of making a video without knowing how to edit does not always give you the best results. However, for some people, that can work, and making a lot of videos can be very expensive. Think of the Magic Box as your editor and you need to give it instructions.</p>



<p>The magic box works like ChatGPT, but the actions are not in another text; it&#8217;s changing the video.</p>



<p>&nbsp;Every aspect of the video can be changed, starting with changing the whole video. Just ask it to create another version of the video.&nbsp;</p>



<p>You can ask it to change things inside the video. For example, you can ask it to change the music. It will choose the music for you. Be clear about the genre of the music or which mood you&#8217;d like the music to convey. You can go to a music library to see what moods and genres they have there, specifically from Storyblocks, where the premium music is sourced. Then you can add that prompt to the Magic Box. You can also ask it to mix the music with the AI voiceover. Just give it instructions to make it louder or softer.</p>



<p>&nbsp;If you don&#8217;t like the AI voice, you can change it here. The only thing is that you really need to know what you should ask for. So, if you&#8217;re not sure, you can open a new video creation page on another webpage and open one of the Prompt Editors. Look for the options of the language accent in the list, copy it, and add that to the Magic Box on the video you want to change the AI voice.&nbsp;</p>



<p>Next, you also have text on the screen. You can ask it to change the design of the text. Because you can&#8217;t change the design yourself, you have to use the Magic Box. If you don&#8217;t know what to ask the AI to do for you, you can go to the first page where you create a new video, open the Prompt Helpers, and find the Subtitles. There, you have a list of things you can change about the title&#8217;s design, and you can get ideas for what you can ask the Magic Box. You can also add or remove titles in the video, or change the size and position of the titles only using the magic box.</p>



<p>Another example is the script. You can ask the Magic Box to change the script in a specific place in the video if you don&#8217;t like it.&nbsp;</p>



<p>Just ask in the specific scene what you want to change and let the AI know what you want to change. If you are not sure how to know what the scene is, then click on Edit and then the Edit Media tab. You can see that when you click on a clip, it writes there what chapter and what media this clip is.&nbsp;</p>



<p>You can also see the text highlighted for that specific video. So, find the text you would like to change and get the exact place in the video.</p>



<p>Alternatively, place the cursor in the video preview window on the point in the video you want to change and then ask the Magic Box to change that specific part of the video to something else.&nbsp;</p>



<p>In the Magic Box, you can also give it a URL. Just write what you would like it to take, and you can add the information from the URL to the video.</p>



<p>Think of ways to make your script better. What is missing? Do you want it to be funnier or very serious?</p>



<p>Because you have limitations for iStock videos, you can ask the Magic Box to reduce or not use any iStock videos.</p>



<p>There are some things you can&#8217;t change in the edit window, and you need to ask the Magic Box to do it for you. One of these is changing the aspect ratio.&nbsp;</p>



<p>Another example is to ask it to change the pace of the video to be faster or slower. Although you can change the language of the video, the Magic Box understands only English as far as I know.&nbsp;</p>



<p>Overall, the Magic Box is a very cute idea. But now you might ask yourself, &#8220;What if I want to edit things myself?&#8221; You can choose from different options that you can&#8217;t ask the Magic Box. Watch this video to learn how to edit the video yourself. Subscribe and like, and I will see you next time!</p>



<div class="wp-block-stackable-card stk-block-card stk-block stk-c6d586e is-style-default" data-v="2" data-block-id="c6d586e"><style>.stk-c6d586e{box-shadow:0px 2px 20px #99999933 !important;margin-bottom:0px !important}.stk-c6d586e-container{box-shadow:0 5px 5px 0 #123f5209 !important}</style><div class="stk--no-padding stk-container stk-c6d586e-container stk-hover-parent"><figure class="stk-block-card__image stk-img-wrapper stk-image--shape-stretch"><img loading="lazy" decoding="async" class="stk-img" src="https://contentgametips.com/wp-content/uploads/2024/06/Logo-invideo-ai.jpg" width="150" height="300"/></figure><div class="stk-container-padding stk-block-card__content"><div class="stk-block-content stk-inner-blocks stk-c6d586e-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-f945c0e" id="span-data-stk-dynamic-other-posts-product-name-1419-contenteditable-false-class-stk-dynamic-content-strong-invideo-ai-strong-span" data-block-id="f945c0e"><style>.stk-f945c0e{margin-bottom:1px !important;transition-duration:0.03s !important;--stk-transition-duration:0.03s !important;transition-timing-function:ease-in !important}</style><h2 class="stk-block-heading__text has-text-align-center">Invideo AI </h2></div>



<div class="wp-block-stackable-subtitle stk-block-subtitle stk-block stk-62522e2" data-block-id="62522e2"><style>.stk-62522e2{margin-bottom:5px !important}</style><p class="stk-block-subtitle__text stk-subtitle has-text-align-center">Text to video in minutes.<br>Describe your idea, optionally add details such as video length, platform, voiceover accent, and watch as the video gets generated. describing your block. Any text will do. Description for this block. You can use this space to describe your block.</p></div>



<div class="wp-block-stackable-columns stk-block-columns stk-block stk-abd4359 stk-block-background" data-block-id="abd4359"><style>.stk-abd4359{background-color:var(--global-palette8,var(--global-palette8)) !important;box-shadow:0 0 0 2px #7878781a !important;margin-bottom:0px !important}.stk-abd4359:before{background-color:var(--global-palette8,var(--global-palette8)) !important}</style><div class="stk-row stk-inner-blocks stk-block-content stk-content-align stk-abd4359-column">
<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-f193434" data-v="4" data-block-id="f193434"><div class="stk-column-wrapper stk-block-column__content stk-container stk-f193434-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-f193434-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-322e094" id="free" data-block-id="322e094"><style>.stk-322e094{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Free</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-34caccd" data-block-id="34caccd"><style>.stk-34caccd .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-34caccd .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">Free forever</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-3e574f6" data-v="4" data-block-id="3e574f6"><div class="stk-column-wrapper stk-block-column__content stk-container stk-3e574f6-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-3e574f6-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-fdb2ab4" id="price" data-block-id="fdb2ab4"><style>.stk-fdb2ab4{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Price</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-f7330f1" data-block-id="f7330f1"><style>.stk-f7330f1 .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-f7330f1 .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">20$/mo</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-1125179" data-v="4" data-block-id="1125179"><div class="stk-column-wrapper stk-block-column__content stk-container stk-1125179-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-1125179-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-a212e40" id="sale" data-block-id="a212e40"><style>.stk-a212e40{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Sale</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-955036e" data-block-id="955036e"><style>.stk-955036e .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-955036e .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">Yearly plans &#8211; 20% off</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-9db2bfb" data-v="4" data-block-id="9db2bfb"><div class="stk-column-wrapper stk-block-column__content stk-container stk-9db2bfb-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-9db2bfb-inner-blocks"></div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-5288f41" data-v="4" data-block-id="5288f41"><div class="stk-column-wrapper stk-block-column__content stk-container stk-5288f41-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-5288f41-inner-blocks">
<div class="wp-block-stackable-image stk-block-image stk-block stk-87fab5a" data-block-id="87fab5a"><figure><span class="stk-img-wrapper stk-image--shape-stretch"><img loading="lazy" decoding="async" class="stk-img" src="https://contentgametips.com/wp-content/uploads/2024/06/Invideo-ai.png" width="150" height="300"/></span></figure></div>
</div></div></div>
</div></div>



<div class="wp-block-stackable-button-group stk-block-button-group stk-block stk-d40f122" data-block-id="d40f122"><div class="stk-row stk-inner-blocks stk-block-content stk-button-group">
<div class="wp-block-stackable-button stk-block-button stk-block stk-94daae8" data-block-id="94daae8"><style>.stk-94daae8,.stk-94daae8 .stk-button{width:100% !important}.stk-94daae8{flex:1 0 var(--stk-button-group-flex-wrap,0) !important}.stk-94daae8 .stk-button{background:var(--global-palette1,var(--global-palette1)) !important;border-top-left-radius:50px !important;border-top-right-radius:50px !important;border-bottom-right-radius:50px !important;border-bottom-left-radius:50px !important}.stk-94daae8 .stk-button:before{box-shadow:0 5px 5px 0 #123f5209 !important;border-style:solid !important}.stk-94daae8 .stk-button__inner-text{color:var(--global-palette3,var(--global-palette3)) !important}</style><a class="stk-link stk-button stk--hover-effect-darken" href="https://go.contentgametips.com/invideostudio"><span class="has-text-color stk-button__inner-text">Try it for free</span></a></div>
</div></div>
</div></div></div></div>
]]></content:encoded>
					
					<wfw:commentRss>https://contentgametips.com/invideo-ai-2-0-how-to-work-with-the-ai-box/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Affiliate Program in Invideo AI</title>
		<link>https://contentgametips.com/affiliate-program-in-invideo-ai/</link>
					<comments>https://contentgametips.com/affiliate-program-in-invideo-ai/#respond</comments>
		
		<dc:creator><![CDATA[Nechma Shor]]></dc:creator>
		<pubDate>Thu, 06 Jun 2024 09:16:13 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[Content Creation Techniques]]></category>
		<category><![CDATA[Tools for contnet creators]]></category>
		<category><![CDATA[Video]]></category>
		<guid isPermaLink="false">https://contentgametips.com/?p=1483</guid>

					<description><![CDATA[Like all the software I look at, InVideo AI has an affiliate program. I like to break down the program so you know...]]></description>
										<content:encoded><![CDATA[
			
			
										
			
			


<p>Like all the software I look at, <a href="https://go.contentgametips.com/invideostudio" target="_blank" rel="noreferrer noopener">InVideo AI </a>has an affiliate program. I like to break down the program so you know if it’s worth it for you to join and promote. Unfortunately, their affiliate program is very disappointing. Although it is a recurring subscription, you only get money from the first payment of the Reference. So, if someone signs up for the lowest tier for one month, you get 50% of that, and for the annual tier, you get 25%. </p>



<p>If you want to know how much money that is, for the first month at the lowest tier, they pay $25 and you get $12.50 from it. If someone chooses the maximum plan for a whole year at $480, you get $120. I prefer affiliate programs that pay monthly.&nbsp;</p>



<p>To join the affiliate program, you need an Impact account. I have a course on this channel on how to use Impact, so you can watch that to see how to use it. To sign up for the affiliate program, you can find the link in the description or at the bottom of the website on any page. Click on it to see the terms. Then click the button to go to the signup page. If you don&#8217;t have an Impact account, create one. If you do, click on &#8220;I have an Impact account&#8221; and you will see the terms of the program. Agree to the terms, and you might be asked how you are going to promote InVideo.</p>



<p>The first time I tried to join the InVideo program, I had an Impact account but was not approved. However, because I explored the tool and made some tutorials for my Israeli audience, I emailed support to add me to the program and explained how I was going to promote them. It worked.</p>



<p>In your <a href="https://go.contentgametips.com/invideostudio" target="_blank" rel="noreferrer noopener">InVideo AI</a> account, you have an influencer button. If you click on it, you get some links and a dashboard to see how many signed up through your link. I asked support what this is, and they told me it’s an experiment and you need to use the affiliate links from Impact. So, just use those links. </p>



<p>Because the affiliate platform might change soon, I highly suggest using a tool to organize your affiliate links so you only need to change the link in one place if they</p>



<p>decide to switch the platform. I use Switchy for this. You have the link in the description. What I do is create the link in Impact, then create a new link in Switchy, and paste the Impact link in the top box. Then, I add a custom URL. I use my domain to make it look more professional. When I promote the URL, I use the one from Switchy. If they change the link to a different platform, I will only need to update it in Switchy, rather than everywhere I’ve shared it.</p>



<p>If you already have your links in YouTube descriptions and want to change them, you can use TubeBuddy&#8217;s find and replace tool. You can see how to use it in the video in the description.</p>



<p>If you are using <a href="https://go.contentgametips.com/invideostudio" target="_blank" rel="noreferrer noopener">InVideo AI </a>and like it, join their program and talk about it. But if you are looking for a good affiliate program, this one is a pass for me because they don&#8217;t pay well. I’m pretty sure all the gurus promoting it are getting more than the basic affiliate program offers, so they might have a better deal. But for the average affiliate, this is not the best program. I prefer the Pictory affiliate program and also like their tool better. You have much more freedom to create videos while getting help from the AI.</p>



<div class="wp-block-stackable-card stk-block-card stk-block stk-lpjvwaf is-style-default" data-v="2" data-block-id="lpjvwaf"><style>.stk-lpjvwaf{box-shadow:0px 2px 20px #99999933 !important;margin-bottom:0px !important}.stk-lpjvwaf-container{box-shadow:0 5px 5px 0 #123f5209 !important}</style><div class="stk--no-padding stk-container stk-lpjvwaf-container stk-hover-parent"><figure class="stk-block-card__image stk-img-wrapper stk-image--shape-stretch"><img loading="lazy" decoding="async" class="stk-img" src="https://contentgametips.com/wp-content/uploads/2024/06/Logo-invideo-ai.jpg" width="150" height="300"/></figure><div class="stk-container-padding stk-block-card__content"><div class="stk-block-content stk-inner-blocks stk-lpjvwaf-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-w3r6k0p" id="span-data-stk-dynamic-other-posts-product-name-1419-contenteditable-false-class-stk-dynamic-content-strong-invideo-ai-strong-span" data-block-id="w3r6k0p"><style>.stk-w3r6k0p{margin-bottom:1px !important;transition-duration:0.03s !important;--stk-transition-duration:0.03s !important;transition-timing-function:ease-in !important}</style><h2 class="stk-block-heading__text has-text-align-center">Invideo AI </h2></div>



<div class="wp-block-stackable-subtitle stk-block-subtitle stk-block stk-qg3eb8s" data-block-id="qg3eb8s"><style>.stk-qg3eb8s{margin-bottom:5px !important}</style><p class="stk-block-subtitle__text stk-subtitle has-text-align-center">Text to video in minutes.<br>Describe your idea, optionally add details such as video length, platform, voiceover accent, and watch as the video gets generated. describing your block. Any text will do. Description for this block. You can use this space to describe your block.</p></div>



<div class="wp-block-stackable-columns stk-block-columns stk-block stk-2v7lfhs stk-block-background" data-block-id="2v7lfhs"><style>.stk-2v7lfhs{background-color:var(--global-palette8,var(--global-palette8)) !important;box-shadow:0 0 0 2px #7878781a !important;margin-bottom:0px !important}.stk-2v7lfhs:before{background-color:var(--global-palette8,var(--global-palette8)) !important}</style><div class="stk-row stk-inner-blocks stk-block-content stk-content-align stk-2v7lfhs-column">
<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-tnq7j05" data-v="4" data-block-id="tnq7j05"><div class="stk-column-wrapper stk-block-column__content stk-container stk-tnq7j05-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-tnq7j05-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-db2xa3t" id="free" data-block-id="db2xa3t"><style>.stk-db2xa3t{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Free</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-z4j6rpa" data-block-id="z4j6rpa"><style>.stk-z4j6rpa .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-z4j6rpa .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">Free forever</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-d2j5p5h" data-v="4" data-block-id="d2j5p5h"><div class="stk-column-wrapper stk-block-column__content stk-container stk-d2j5p5h-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-d2j5p5h-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-zb96ku3" id="price" data-block-id="zb96ku3"><style>.stk-zb96ku3{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Price</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-efa9wo2" data-block-id="efa9wo2"><style>.stk-efa9wo2 .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-efa9wo2 .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">20$/mo</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-tg7pru0" data-v="4" data-block-id="tg7pru0"><div class="stk-column-wrapper stk-block-column__content stk-container stk-tg7pru0-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-tg7pru0-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-si0zlc1" id="sale" data-block-id="si0zlc1"><style>.stk-si0zlc1{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Sale</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-93ktjpa" data-block-id="93ktjpa"><style>.stk-93ktjpa .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-93ktjpa .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">Yearly plans &#8211; 20% off</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-qga12i9" data-v="4" data-block-id="qga12i9"><div class="stk-column-wrapper stk-block-column__content stk-container stk-qga12i9-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-qga12i9-inner-blocks"></div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-8o7y250" data-v="4" data-block-id="8o7y250"><div class="stk-column-wrapper stk-block-column__content stk-container stk-8o7y250-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-8o7y250-inner-blocks">
<div class="wp-block-stackable-image stk-block-image stk-block stk-zbnrpl9" data-block-id="zbnrpl9"><figure><span class="stk-img-wrapper stk-image--shape-stretch"><img loading="lazy" decoding="async" class="stk-img" src="https://contentgametips.com/wp-content/uploads/2024/06/Invideo-ai.png" width="150" height="300"/></span></figure></div>
</div></div></div>
</div></div>



<div class="wp-block-stackable-button-group stk-block-button-group stk-block stk-dbeju2z" data-block-id="dbeju2z"><div class="stk-row stk-inner-blocks stk-block-content stk-button-group">
<div class="wp-block-stackable-button stk-block-button stk-block stk-8rbciow" data-block-id="8rbciow"><style>.stk-8rbciow,.stk-8rbciow .stk-button{width:100% !important}.stk-8rbciow{flex:1 0 var(--stk-button-group-flex-wrap,0) !important}.stk-8rbciow .stk-button{background:var(--global-palette1,var(--global-palette1)) !important;border-top-left-radius:50px !important;border-top-right-radius:50px !important;border-bottom-right-radius:50px !important;border-bottom-left-radius:50px !important}.stk-8rbciow .stk-button:before{box-shadow:0 5px 5px 0 #123f5209 !important;border-style:solid !important}.stk-8rbciow .stk-button__inner-text{color:var(--global-palette3,var(--global-palette3)) !important}</style><a class="stk-link stk-button stk--hover-effect-darken" href="https://go.contentgametips.com/invideostudio"><span class="has-text-color stk-button__inner-text">Try it for free</span></a></div>
</div></div>
</div></div></div></div>
]]></content:encoded>
					
					<wfw:commentRss>https://contentgametips.com/affiliate-program-in-invideo-ai/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Free vs paid what is the difference and usage in Invideo AI 2.0</title>
		<link>https://contentgametips.com/free-vs-paid-what-is-the-difference-and-usage-in-invideo-ai-2-0/</link>
					<comments>https://contentgametips.com/free-vs-paid-what-is-the-difference-and-usage-in-invideo-ai-2-0/#respond</comments>
		
		<dc:creator><![CDATA[Nechma Shor]]></dc:creator>
		<pubDate>Thu, 06 Jun 2024 09:12:29 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[Content Creation Techniques]]></category>
		<category><![CDATA[Tools for contnet creators]]></category>
		<category><![CDATA[Video]]></category>
		<guid isPermaLink="false">https://contentgametips.com/?p=1479</guid>

					<description><![CDATA[Maybe you got here to understand, is InVideo AI free? &#160;Because if you look at the gurus that tell you to use it,...]]></description>
										<content:encoded><![CDATA[
			
			
										
			
			


<p>Maybe you got here to understand, is <a href="https://go.contentgametips.com/invideostudio" target="_blank" rel="noreferrer noopener">InVideo AI</a> free?</p>



<p>&nbsp;Because if you look at the gurus that tell you to use it, you would think it is completely free. So, let&#8217;s see what you get with free vs. paid.</p>



<p>First, for those who don&#8217;t understand what <a href="https://go.contentgametips.com/invideostudio" target="_blank" rel="noreferrer noopener">InVideo AI</a> is, it is a tool that creates videos from a prompt. You can give it a very short prompt and you will get a very generic video, or you can give it a more detailed prompt and you will get a better video. Please remember that if you let AI do all the work for you, it will be very generic and sometimes contain false facts.</p>



<p>The AI generates a video by first creating the script.&nbsp;</p>



<p>Then it generates an AI voice to narrate the video. With version 2.0, you can have up to 6 AI voices in one video that switch.&nbsp;</p>



<p>Then it chooses video clips that match the text in the script. It does not create videos with AI, so you are safe from weird six-fingered or monster eyes like other AI-generated content.&nbsp;</p>



<p>It just chooses the most accurate video clips from good video libraries based on keywords in the script.&nbsp;</p>



<p>It also generates subtitles on the screen and adds background music from audio libraries.&nbsp;</p>



<p>It does not create the music with AI, so you are safe from copyright issues. More on that in the video about music in InVideo.</p>



<p>You can manipulate all these elements while you write the prompt for the AI.&nbsp;</p>



<p>To help you achieve this, you can use the prompt generator they have on the first page.&nbsp;</p>



<p>After that, you get a video that you can make simple changes to with the AI or by yourself.</p>



<p>I explained every detail on my channel, so find it in the playlist of InVideo AI. You can find the link in the description.</p>



<p>Now, for the question of what you get for free and what you need to pay for.&nbsp;</p>



<p>You can sign up for free without adding a credit card, and you can use it for free forever if you wish.&nbsp;</p>



<p>But, as with everything free, there are limits. The big one is that when you export the video from InVideo, you get the <a href="https://go.contentgametips.com/invideostudio" target="_blank" rel="noreferrer noopener">InVideo AI</a> logo on all of the videos. Some of the video clips will also have the logos of the libraries they come from. You also have only 10 minutes per week to create videos. For exporting, you get 4 exports per week, so if you need to change something in the video after you export it, you are limited to 4 exports per week. After that, you can&#8217;t export any video until the next week.</p>



<p>The good news is that you can create 16 videos a month with 10 minutes each week and 4 exports, which is 4 videos a week. Of course, I wouldn’t count on this if I wanted to create a YouTube channel as a business, because I don’t like to have the InVideo logo on all of my videos. It is not professional.&nbsp;</p>



<p>You can export the video in HD, but you can’t get it in 4K.&nbsp;</p>



<p>There is also a limitation with stock videos. You can&#8217;t use iStock videos at all; this is just for paying members. fortunately, you don&#8217;t really need iStock because there are plenty of other video stocks you can use.</p>



<p>For the music, you can use premium music, just make sure to whitelist your YouTube channel so you won’t get copyright claims. I explained that in the video about the music.&nbsp;</p>



<p>You have 10 GB for storage. This storage is for uploading videos and images if you want to use your own.&nbsp;</p>



<p>Two more limits are that if you want to use your own cloned voice, you can’t. There are only the voices of the AI that come with InVideo.</p>



<p>And you can&#8217;t add more users to your account. In the paid option, you can have other people use the account as well, allowing them to create videos for you. They can get their own password and username, which is useful if you want your team to create videos for you without sharing the InVideo account credentials if you&#8217;re unsure about trusting your team with that.</p>



<p>For the paid option, you can see that you get a discount if you pay yearly, which is nice. However, not everyone wants to pay for the whole year upfront. Then there are two plans. Basically, you pay more for more minutes generated each month.&nbsp;</p>



<p>For the &#8220;Plus&#8221; plan, which costs $25 a month, you get one user, 50 minutes, and unlimited exports. So, the maximum number of videos you can generate is 50, because even if you generate a video that is less than a minute, it counts as one minute. Of course, you can generate longer videos if you wish and get fewer videos per month.</p>



<p>Some other things you get with the Plus plan: you can use 80 pieces of video clips from iStock videos, you get 100 gigabytes of storage for your uploads, and you can use the cloned voice for 2 voices.&nbsp;</p>



<p>If you want more minutes, you can adjust the number of users, which will give you more minutes per month. The difference between the &#8220;Max&#8221; and the &#8220;Plus&#8221; plans is how many minutes you get every month, and there are some additional features for each of the other things.</p>



<p>If you want to know how much you&#8217;ve spent from your limitations, click on your profile image and go to the usage page. Here, you can see how much you&#8217;ve generated and when it will start again. By the way, if you didn&#8217;t use the minutes of your plan, it will reset in the next month, so if you are on the paid plan, use all of your monthly minutes to make the best out of your plan.</p>



<p>Next, you can see the iStock usage, the exports if you are on the free plan, and the storage, so you know how much you still have all the time. If you have a Plus or Max plan and you pay for more users, then click on &#8220;members&#8221; and then on the Plus button to invite other users to use the platform.&nbsp;</p>



<p>In the workspace settings, you can set who should see the same videos and share the videos you create with others. You can also change the visibility of your exported videos here.&nbsp;</p>



<p>If you want to upgrade, click on the upgrade button, or you can click here in the subscription tab on the button to add your credit card.&nbsp;</p>



<p>If you want to cancel the subscription, you need to go to the right menu and click on the FAQ section. There, look for the chat option. Open a conversation and let them know that you want to cancel. They don&#8217;t have a refund policy, so if you pay them, you can&#8217;t get your money back. However, they won&#8217;t charge you for the next payment, and you can use InVideo until your current subscription period ends. This way, you get your money&#8217;s worth.</p>



<p>In my opinion, you should experiment with the prompts and see if the videos generated can work for your purposes. If the answer is yes, then pay for the subscription. If not, then don&#8217;t, because you can try the tool with almost all of its features before committing.</p>



<div class="wp-block-stackable-card stk-block-card stk-block stk-73g019d is-style-default" data-v="2" data-block-id="73g019d"><style>.stk-73g019d{box-shadow:0px 2px 20px #99999933 !important;margin-bottom:0px !important}.stk-73g019d-container{box-shadow:0 5px 5px 0 #123f5209 !important}</style><div class="stk--no-padding stk-container stk-73g019d-container stk-hover-parent"><figure class="stk-block-card__image stk-img-wrapper stk-image--shape-stretch"><img loading="lazy" decoding="async" class="stk-img" src="https://contentgametips.com/wp-content/uploads/2024/06/Logo-invideo-ai.jpg" width="150" height="300"/></figure><div class="stk-container-padding stk-block-card__content"><div class="stk-block-content stk-inner-blocks stk-73g019d-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-ty2tkvj" id="span-data-stk-dynamic-other-posts-product-name-1419-contenteditable-false-class-stk-dynamic-content-strong-invideo-ai-strong-span" data-block-id="ty2tkvj"><style>.stk-ty2tkvj{margin-bottom:1px !important;transition-duration:0.03s !important;--stk-transition-duration:0.03s !important;transition-timing-function:ease-in !important}</style><h2 class="stk-block-heading__text has-text-align-center">Invideo AI </h2></div>



<div class="wp-block-stackable-subtitle stk-block-subtitle stk-block stk-gfhaykz" data-block-id="gfhaykz"><style>.stk-gfhaykz{margin-bottom:5px !important}</style><p class="stk-block-subtitle__text stk-subtitle has-text-align-center">Text to video in minutes.<br>Describe your idea, optionally add details such as video length, platform, voiceover accent, and watch as the video gets generated. describing your block. Any text will do. Description for this block. You can use this space to describe your block.</p></div>



<div class="wp-block-stackable-columns stk-block-columns stk-block stk-48ywrd5 stk-block-background" data-block-id="48ywrd5"><style>.stk-48ywrd5{background-color:var(--global-palette8,var(--global-palette8)) !important;box-shadow:0 0 0 2px #7878781a !important;margin-bottom:0px !important}.stk-48ywrd5:before{background-color:var(--global-palette8,var(--global-palette8)) !important}</style><div class="stk-row stk-inner-blocks stk-block-content stk-content-align stk-48ywrd5-column">
<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-1zkve6n" data-v="4" data-block-id="1zkve6n"><div class="stk-column-wrapper stk-block-column__content stk-container stk-1zkve6n-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-1zkve6n-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-xbra7pn" id="free" data-block-id="xbra7pn"><style>.stk-xbra7pn{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Free</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-d0yqvjf" data-block-id="d0yqvjf"><style>.stk-d0yqvjf .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-d0yqvjf .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">Free forever</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-pt3skpe" data-v="4" data-block-id="pt3skpe"><div class="stk-column-wrapper stk-block-column__content stk-container stk-pt3skpe-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-pt3skpe-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-on72rtv" id="price" data-block-id="on72rtv"><style>.stk-on72rtv{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Price</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-59g6rnz" data-block-id="59g6rnz"><style>.stk-59g6rnz .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-59g6rnz .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">20$/mo</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-25gfur2" data-v="4" data-block-id="25gfur2"><div class="stk-column-wrapper stk-block-column__content stk-container stk-25gfur2-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-25gfur2-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-3wrgk9e" id="sale" data-block-id="3wrgk9e"><style>.stk-3wrgk9e{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Sale</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-bjhz4bd" data-block-id="bjhz4bd"><style>.stk-bjhz4bd .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-bjhz4bd .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">Yearly plans &#8211; 20% off</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-lm9gav0" data-v="4" data-block-id="lm9gav0"><div class="stk-column-wrapper stk-block-column__content stk-container stk-lm9gav0-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-lm9gav0-inner-blocks"></div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-ydegauy" data-v="4" data-block-id="ydegauy"><div class="stk-column-wrapper stk-block-column__content stk-container stk-ydegauy-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-ydegauy-inner-blocks">
<div class="wp-block-stackable-image stk-block-image stk-block stk-26ax99d" data-block-id="26ax99d"><figure><span class="stk-img-wrapper stk-image--shape-stretch"><img loading="lazy" decoding="async" class="stk-img" src="https://contentgametips.com/wp-content/uploads/2024/06/Invideo-ai.png" width="150" height="300"/></span></figure></div>
</div></div></div>
</div></div>



<div class="wp-block-stackable-button-group stk-block-button-group stk-block stk-z2ecstu" data-block-id="z2ecstu"><div class="stk-row stk-inner-blocks stk-block-content stk-button-group">
<div class="wp-block-stackable-button stk-block-button stk-block stk-vxj8ir4" data-block-id="vxj8ir4"><style>.stk-vxj8ir4,.stk-vxj8ir4 .stk-button{width:100% !important}.stk-vxj8ir4{flex:1 0 var(--stk-button-group-flex-wrap,0) !important}.stk-vxj8ir4 .stk-button{background:var(--global-palette1,var(--global-palette1)) !important;border-top-left-radius:50px !important;border-top-right-radius:50px !important;border-bottom-right-radius:50px !important;border-bottom-left-radius:50px !important}.stk-vxj8ir4 .stk-button:before{box-shadow:0 5px 5px 0 #123f5209 !important;border-style:solid !important}.stk-vxj8ir4 .stk-button__inner-text{color:var(--global-palette3,var(--global-palette3)) !important}</style><a class="stk-link stk-button stk--hover-effect-darken" href="https://go.contentgametips.com/invideostudio"><span class="has-text-color stk-button__inner-text">Try it for free</span></a></div>
</div></div>
</div></div></div></div>
]]></content:encoded>
					
					<wfw:commentRss>https://contentgametips.com/free-vs-paid-what-is-the-difference-and-usage-in-invideo-ai-2-0/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Undo AND Versions in Invideo AI 2.0</title>
		<link>https://contentgametips.com/undo-and-versions/</link>
					<comments>https://contentgametips.com/undo-and-versions/#respond</comments>
		
		<dc:creator><![CDATA[Nechma Shor]]></dc:creator>
		<pubDate>Thu, 06 Jun 2024 09:09:48 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[Content Creation Techniques]]></category>
		<category><![CDATA[Tools for contnet creators]]></category>
		<category><![CDATA[Video]]></category>
		<guid isPermaLink="false">https://contentgametips.com/?p=1477</guid>

					<description><![CDATA[If you edit something in InVideo AI and want to undo it, this video will show you how. The basic method is to...]]></description>
										<content:encoded><![CDATA[
			
			
										
			
			


<p>If you edit something in <a href="https://go.contentgametips.com/invideostudio" target="_blank" rel="noreferrer noopener">InVideo AI</a> and want to undo it, this video will show you how. The basic method is to click the undo arrow, which will undo the last change you made. This applies whether the change was made with the AI Magic Box or anything in the edit window.</p>



<p>If you want to undo more steps, you can ask the Magic Box to undo those changes for you. You can also undo changes in the video clip editing window and the music editing window.</p>



<p>To edit video clips, go to the Edit tab. You&#8217;ll see that a changed video clip has two layers. The top layer is the video currently playing, and underneath is the original video the AI chose for you. This original video layer will always stay there. To revert to the original video clip, click the small &#8220;x&#8221; to delete the new clip.</p>



<p>The same process applies to the music. You will see two layers: the top layer is your new music, and the layer underneath is the original music generated by the AI. To go back to the original music, click the small &#8220;x&#8221; on that track.</p>



<p>You can also ask the AI to generate an entirely different version of the video. To do this, use the Magic Box to create another option for the video. You will get the original prompt you used to create the video, allowing you to make changes before generating a new version.</p>



<p>Alternatively, you can click the &#8220;Versions&#8221; button on the bottom left side, then click &#8220;Generate.&#8221; If you want to edit the prompt before generating it, click &#8220;Edit Prompt.&nbsp;</p>



<p>After you click on the &#8220;New Version&#8221; button, you can choose some settings.&nbsp;</p>



<p>When you have two versions, you can open the Versions sidebar to see all the versions.&nbsp;</p>



<p>You can also rename the versions to help you remember which one you liked better.</p>



<p>You can also start creating a new version by clicking the plus button on the top bar. This will open the video settings. If you change the settings and click &#8220;Generate,&#8221; you will get a new version of the video based on this prompt.</p>



<div class="wp-block-stackable-card stk-block-card stk-block stk-8mdudvb is-style-default" data-v="2" data-block-id="8mdudvb"><style>.stk-8mdudvb{box-shadow:0px 2px 20px #99999933 !important;margin-bottom:0px !important}.stk-8mdudvb-container{box-shadow:0 5px 5px 0 #123f5209 !important}</style><div class="stk--no-padding stk-container stk-8mdudvb-container stk-hover-parent"><figure class="stk-block-card__image stk-img-wrapper stk-image--shape-stretch"><img loading="lazy" decoding="async" class="stk-img" src="https://contentgametips.com/wp-content/uploads/2024/06/Logo-invideo-ai.jpg" width="150" height="300"/></figure><div class="stk-container-padding stk-block-card__content"><div class="stk-block-content stk-inner-blocks stk-8mdudvb-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-wy71vng" id="span-data-stk-dynamic-other-posts-product-name-1419-contenteditable-false-class-stk-dynamic-content-strong-invideo-ai-strong-span" data-block-id="wy71vng"><style>.stk-wy71vng{margin-bottom:1px !important;transition-duration:0.03s !important;--stk-transition-duration:0.03s !important;transition-timing-function:ease-in !important}</style><h2 class="stk-block-heading__text has-text-align-center">Invideo AI </h2></div>



<div class="wp-block-stackable-subtitle stk-block-subtitle stk-block stk-k7br49g" data-block-id="k7br49g"><style>.stk-k7br49g{margin-bottom:5px !important}</style><p class="stk-block-subtitle__text stk-subtitle has-text-align-center">Text to video in minutes.<br>Describe your idea, optionally add details such as video length, platform, voiceover accent, and watch as the video gets generated. describing your block. Any text will do. Description for this block. You can use this space to describe your block.</p></div>



<div class="wp-block-stackable-columns stk-block-columns stk-block stk-0hi3dzd stk-block-background" data-block-id="0hi3dzd"><style>.stk-0hi3dzd{background-color:var(--global-palette8,var(--global-palette8)) !important;box-shadow:0 0 0 2px #7878781a !important;margin-bottom:0px !important}.stk-0hi3dzd:before{background-color:var(--global-palette8,var(--global-palette8)) !important}</style><div class="stk-row stk-inner-blocks stk-block-content stk-content-align stk-0hi3dzd-column">
<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-rez3pp0" data-v="4" data-block-id="rez3pp0"><div class="stk-column-wrapper stk-block-column__content stk-container stk-rez3pp0-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-rez3pp0-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-kib3cd9" id="free" data-block-id="kib3cd9"><style>.stk-kib3cd9{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Free</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-lzedy7b" data-block-id="lzedy7b"><style>.stk-lzedy7b .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-lzedy7b .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">Free forever</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-aib9fkt" data-v="4" data-block-id="aib9fkt"><div class="stk-column-wrapper stk-block-column__content stk-container stk-aib9fkt-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-aib9fkt-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-d1pxzbe" id="price" data-block-id="d1pxzbe"><style>.stk-d1pxzbe{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Price</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-x5qu1am" data-block-id="x5qu1am"><style>.stk-x5qu1am .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-x5qu1am .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">20$/mo</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-yrmkt6v" data-v="4" data-block-id="yrmkt6v"><div class="stk-column-wrapper stk-block-column__content stk-container stk-yrmkt6v-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-yrmkt6v-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-x8yride" id="sale" data-block-id="x8yride"><style>.stk-x8yride{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Sale</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-72sr129" data-block-id="72sr129"><style>.stk-72sr129 .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-72sr129 .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">Yearly plans &#8211; 20% off</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-x4o862z" data-v="4" data-block-id="x4o862z"><div class="stk-column-wrapper stk-block-column__content stk-container stk-x4o862z-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-x4o862z-inner-blocks"></div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-z27tmru" data-v="4" data-block-id="z27tmru"><div class="stk-column-wrapper stk-block-column__content stk-container stk-z27tmru-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-z27tmru-inner-blocks">
<div class="wp-block-stackable-image stk-block-image stk-block stk-b85dwhr" data-block-id="b85dwhr"><figure><span class="stk-img-wrapper stk-image--shape-stretch"><img loading="lazy" decoding="async" class="stk-img" src="https://contentgametips.com/wp-content/uploads/2024/06/Invideo-ai.png" width="150" height="300"/></span></figure></div>
</div></div></div>
</div></div>



<div class="wp-block-stackable-button-group stk-block-button-group stk-block stk-jnhcxb8" data-block-id="jnhcxb8"><div class="stk-row stk-inner-blocks stk-block-content stk-button-group">
<div class="wp-block-stackable-button stk-block-button stk-block stk-ly3arkj" data-block-id="ly3arkj"><style>.stk-ly3arkj,.stk-ly3arkj .stk-button{width:100% !important}.stk-ly3arkj{flex:1 0 var(--stk-button-group-flex-wrap,0) !important}.stk-ly3arkj .stk-button{background:var(--global-palette1,var(--global-palette1)) !important;border-top-left-radius:50px !important;border-top-right-radius:50px !important;border-bottom-right-radius:50px !important;border-bottom-left-radius:50px !important}.stk-ly3arkj .stk-button:before{box-shadow:0 5px 5px 0 #123f5209 !important;border-style:solid !important}.stk-ly3arkj .stk-button__inner-text{color:var(--global-palette3,var(--global-palette3)) !important}</style><a class="stk-link stk-button stk--hover-effect-darken" href="https://go.contentgametips.com/invideostudio"><span class="has-text-color stk-button__inner-text">Try it for free</span></a></div>
</div></div>
</div></div></div></div>
]]></content:encoded>
					
					<wfw:commentRss>https://contentgametips.com/undo-and-versions/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Invideo AI 2.0 History</title>
		<link>https://contentgametips.com/invideo-ai-2-0-history/</link>
					<comments>https://contentgametips.com/invideo-ai-2-0-history/#respond</comments>
		
		<dc:creator><![CDATA[Nechma Shor]]></dc:creator>
		<pubDate>Thu, 06 Jun 2024 09:06:19 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[Content Creation Techniques]]></category>
		<category><![CDATA[The content game]]></category>
		<category><![CDATA[Tools for contnet creators]]></category>
		<category><![CDATA[Video]]></category>
		<guid isPermaLink="false">https://contentgametips.com/?p=1474</guid>

					<description><![CDATA[If you&#8217;re here, you want to know how to find your video in InVideo AI. Let&#8217;s start! After you create a video, it...]]></description>
										<content:encoded><![CDATA[
			
			
										
			
			


<p>If you&#8217;re here, you want to know how to find your video in <a href="https://youtu.be/sGcNPyxUM74?si=f3ix9RzEX3YR4V4I" target="_blank" rel="noreferrer noopener">InVideo AI</a>. Let&#8217;s start!</p>



<p>After you create a video, it will be added to your history. On the creation page, you can find it at the bottom left. Click on it to see all the videos you recently made. You can also click the menu button at the top left to see your latest videos or go to the home page for more options. There, you can see your video history and the last exported videos, which you can download directly.</p>



<p>Every time you export a video, it creates a new version. If you just want to download the video, you don&#8217;t need to export it again—just click on the video and download it. You can also see all your recent videos and click &#8220;Show More&#8221; on the right side to see everything you’ve made.</p>



<p>To delete a video, click on the three dots at the end of the video&#8217;s line and select &#8220;Delete.&#8221; Since you can&#8217;t really organize the videos, it might be hard to find specific ones if you have many. So, give each video a memorable name.&nbsp;</p>



<p>In Video AI version 2.0, you can change the name of a project. First, open the project you want to rename. Then click on the title at the top of the page, change it, and save it. You can also rename different versions of the same video. This helps you keep track of the versions you prefer.</p>



<p>To rename a version, click on &#8220;Versions&#8221; at the bottom left to open the left panel. Find the version you want to rename, click on the three dots, and choose the rename option.</p>



<p>If you want to learn how to export your video from <a href="https://youtu.be/sGcNPyxUM74?si=f3ix9RzEX3YR4V4I" target="_blank" rel="noreferrer noopener">InVideo AI</a> , then click on this video next. Like and subscribe, and I will see you in the next video.</p>



<div class="wp-block-stackable-card stk-block-card stk-block stk-dv2scg3 is-style-default" data-v="2" data-block-id="dv2scg3"><style>.stk-dv2scg3{box-shadow:0px 2px 20px #99999933 !important;margin-bottom:0px !important}.stk-dv2scg3-container{box-shadow:0 5px 5px 0 #123f5209 !important}</style><div class="stk--no-padding stk-container stk-dv2scg3-container stk-hover-parent"><figure class="stk-block-card__image stk-img-wrapper stk-image--shape-stretch"><img loading="lazy" decoding="async" class="stk-img" src="https://contentgametips.com/wp-content/uploads/2024/06/Logo-invideo-ai.jpg" width="150" height="300"/></figure><div class="stk-container-padding stk-block-card__content"><div class="stk-block-content stk-inner-blocks stk-dv2scg3-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-s2b3kcv" id="span-data-stk-dynamic-other-posts-product-name-1419-contenteditable-false-class-stk-dynamic-content-strong-invideo-ai-strong-span" data-block-id="s2b3kcv"><style>.stk-s2b3kcv{margin-bottom:1px !important;transition-duration:0.03s !important;--stk-transition-duration:0.03s !important;transition-timing-function:ease-in !important}</style><h2 class="stk-block-heading__text has-text-align-center">Invideo AI </h2></div>



<div class="wp-block-stackable-subtitle stk-block-subtitle stk-block stk-6mxw1h5" data-block-id="6mxw1h5"><style>.stk-6mxw1h5{margin-bottom:5px !important}</style><p class="stk-block-subtitle__text stk-subtitle has-text-align-center">Text to video in minutes.<br>Describe your idea, optionally add details such as video length, platform, voiceover accent, and watch as the video gets generated. describing your block. Any text will do. Description for this block. You can use this space to describe your block.</p></div>



<div class="wp-block-stackable-columns stk-block-columns stk-block stk-zplr5mk stk-block-background" data-block-id="zplr5mk"><style>.stk-zplr5mk{background-color:var(--global-palette8,var(--global-palette8)) !important;box-shadow:0 0 0 2px #7878781a !important;margin-bottom:0px !important}.stk-zplr5mk:before{background-color:var(--global-palette8,var(--global-palette8)) !important}</style><div class="stk-row stk-inner-blocks stk-block-content stk-content-align stk-zplr5mk-column">
<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-e2tapr2" data-v="4" data-block-id="e2tapr2"><div class="stk-column-wrapper stk-block-column__content stk-container stk-e2tapr2-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-e2tapr2-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-1v37z2t" id="free" data-block-id="1v37z2t"><style>.stk-1v37z2t{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Free</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-1ye7kwb" data-block-id="1ye7kwb"><style>.stk-1ye7kwb .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-1ye7kwb .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">Free forever</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-6wf25li" data-v="4" data-block-id="6wf25li"><div class="stk-column-wrapper stk-block-column__content stk-container stk-6wf25li-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-6wf25li-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-ydszkew" id="price" data-block-id="ydszkew"><style>.stk-ydszkew{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Price</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-bz0ymsk" data-block-id="bz0ymsk"><style>.stk-bz0ymsk .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-bz0ymsk .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">20$/mo</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-iebfwvl" data-v="4" data-block-id="iebfwvl"><div class="stk-column-wrapper stk-block-column__content stk-container stk-iebfwvl-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-iebfwvl-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-wyb43s7" id="sale" data-block-id="wyb43s7"><style>.stk-wyb43s7{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Sale</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-9e5gulr" data-block-id="9e5gulr"><style>.stk-9e5gulr .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-9e5gulr .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">Yearly plans &#8211; 20% off</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-r489xt2" data-v="4" data-block-id="r489xt2"><div class="stk-column-wrapper stk-block-column__content stk-container stk-r489xt2-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-r489xt2-inner-blocks"></div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-tpm7lkt" data-v="4" data-block-id="tpm7lkt"><div class="stk-column-wrapper stk-block-column__content stk-container stk-tpm7lkt-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-tpm7lkt-inner-blocks">
<div class="wp-block-stackable-image stk-block-image stk-block stk-pp35anz" data-block-id="pp35anz"><figure><span class="stk-img-wrapper stk-image--shape-stretch"><img loading="lazy" decoding="async" class="stk-img" src="https://contentgametips.com/wp-content/uploads/2024/06/Invideo-ai.png" width="150" height="300"/></span></figure></div>
</div></div></div>
</div></div>



<div class="wp-block-stackable-button-group stk-block-button-group stk-block stk-l6j1v9g" data-block-id="l6j1v9g"><div class="stk-row stk-inner-blocks stk-block-content stk-button-group">
<div class="wp-block-stackable-button stk-block-button stk-block stk-fq26m1a" data-block-id="fq26m1a"><style>.stk-fq26m1a,.stk-fq26m1a .stk-button{width:100% !important}.stk-fq26m1a{flex:1 0 var(--stk-button-group-flex-wrap,0) !important}.stk-fq26m1a .stk-button{background:var(--global-palette1,var(--global-palette1)) !important;border-top-left-radius:50px !important;border-top-right-radius:50px !important;border-bottom-right-radius:50px !important;border-bottom-left-radius:50px !important}.stk-fq26m1a .stk-button:before{box-shadow:0 5px 5px 0 #123f5209 !important;border-style:solid !important}.stk-fq26m1a .stk-button__inner-text{color:var(--global-palette3,var(--global-palette3)) !important}</style><a class="stk-link stk-button stk--hover-effect-darken" href="https://go.contentgametips.com/invideostudio"><span class="has-text-color stk-button__inner-text">Try it for free</span></a></div>
</div></div>
</div></div></div></div>
]]></content:encoded>
					
					<wfw:commentRss>https://contentgametips.com/invideo-ai-2-0-history/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>3 ways to create a video in invideo AI 2.0</title>
		<link>https://contentgametips.com/3-ways-to-create-a-video-in-invideo-ai-2-0/</link>
					<comments>https://contentgametips.com/3-ways-to-create-a-video-in-invideo-ai-2-0/#respond</comments>
		
		<dc:creator><![CDATA[Nechma Shor]]></dc:creator>
		<pubDate>Thu, 06 Jun 2024 09:02:24 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[Content Creation Techniques]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools for contnet creators]]></category>
		<category><![CDATA[Video]]></category>
		<guid isPermaLink="false">https://contentgametips.com/?p=1471</guid>

					<description><![CDATA[InVideo AI is an automation tool to create short videos quickly. There are 3 ways to start creating a video in InVideo AI....]]></description>
										<content:encoded><![CDATA[
			
			
										
			
			


<p><a href="https://go.contentgametips.com/invideostudio" target="_blank" rel="noreferrer noopener">InVideo AI </a>is an automation tool to create short videos quickly. There are 3 ways to start creating a video in InVideo AI. if you are on the home page, click on &#8220;Create AI Video.&#8221; If you are on another project, you have a button to start a new one.</p>



<p>&nbsp;Now, when you are on the &#8220;Start Create Video&#8221; page, you can choose which model you want to use. I chose 2.0 because it is much better than the previous version.&nbsp;</p>



<p>Next, you have the Magic Box, as they call it. Here, you can write the prompt for the video.</p>



<p>If you need help and you are not sure how to set the prompt right, then you have some options at the bottom of the page.</p>



<p>The videos always start with the text. So, the question is, where is the text coming from? The first option is to create the text by the <a href="https://go.contentgametips.com/invideostudio" target="_blank" rel="noreferrer noopener">InVideo AI</a>. The second option is to start from your text. Lastly, you have the option to start from another URL. </p>



<p>Some of them are just another way to create a video that starts with AI writing the text. So, let&#8217;s see what happens when you click on each one of them.</p>



<p>The first option is &#8220;YouTube Explainer.&#8221; Choose the length of the video.</p>



<p>When you choose the length, it deducts from your minutes.</p>



<p>&nbsp;If you choose 15 seconds or a minute, it counts as a minute. I think it is a good idea to ask for a longer video and then make it shorter by deleting parts from the text afterward. That way, you get better text.&nbsp;</p>



<p>They give you very good instructions.&nbsp;</p>



<p>In the next box, you should write what the topic is what the video should talk about, and what you don&#8217;t want the video to talk about. You have 25,000 characters, so you have plenty of room to write in detail. The more details you give, the more accurate the script will be.</p>



<p>The next box is for your opinion or facts that you want to include in the video. This will give the video your brand tone. The next option is for the music. You can ask for a specific mood or genre to make the music match your video and how you want the video to feel.&nbsp;</p>



<p>From the 2.0 version, you have 50 languages you can choose to create the video. So here, you can choose from the list. You can also add next to it what mood you want the languages to be, serious or with more humor.&nbsp;</p>



<p>Then, you can choose to have a male or female voice for the AI voice-over.&nbsp;</p>



<p>If you are in a language that has some options, you can choose the accent. This is more relevant to English, which has a lot of voices to choose from.</p>



<p>In 2.0, you have up to 6 voices that can participate in the conversation. You can add here the role for each one by clicking on the plus button to add more voices and choose what the voice role is from the list. Afterward, when you edit, you can change it. The next option is for subtitles. You can choose how to style them. If you created your project and you want to change the style, you can go to this list and pick the prompt that suits you, and change it in the video you already created.</p>



<p>When you are on the free plan, you will export the video with a watermark. You can choose what name will show on the watermark next to the InVideo AI logo.&nbsp;</p>



<p>Number 4 is for choosing the iStock situation. InVideo AI takes the video clips for the video from different libraries, like Storyblocks and iStock. If you use the other libraries, you don&#8217;t have a problem, even for the free accounts. But with iStock, it is different because iStock has limitations for each subscription. If you are in the free account, you don&#8217;t have any, but don&#8217;t worry, there are other video clips you can choose from that you don&#8217;t have a problem using. Here, you can choose to limit the AI to choose videos from iStock or avoid it completely.</p>



<p>In number 5, you have the option to choose where the music will come from. They have 2 libraries for the music. The first one is the free library from YouTube, and if you use it, you don&#8217;t have any trouble. The other one is from Storyblocks. This can create copyright claims that you can solve with support. You can also avoid this problem by whitelisting your YouTube channel, and I showed you how to do it in a different video. Here, you can choose what kind of music you want the AI to choose for you, but you can change it later if you wish.</p>



<p>After you fill this, you will get the prompt in the upper box, and you can add more text or edit it before it creates the video for you. The next option to create a video is from the script. This has slightly different settings. The first option is what kind of video. Honestly, I don&#8217;t know what the difference is between YouTube, TikTok, and Instagram videos. They are all vertical videos. Then, add the script you wrote here in the big box. It is a good idea to write the text in a different DOCX file and copy it here as a whole because it is not the best editor. So, copy and paste it here. Then, you have the same settings that we see in the YouTube video.</p>



<p>The next option is YouTube Short. The only difference is to choose if it is fast-paced or very fast-paced. When you click on &#8220;Explore More,&#8221; you have Instagram and TikTok, which have the same settings as the other videos. Then, you have the News video. This one is for if you wish to use information from a URL. All of the settings are like the other videos, except for one box where you can add a URL to the source you want the video to be based on.</p>



<p>This is how you create the video. You can add all of these prompts by writing them in the box in the same way. But it is easier when you have some guides. When it generates the video, you have the text, and based on the text, the AI chooses videos from the video clip libraries and music from the libraries. It does not create videos and music from scratch, so you won&#8217;t see errors like 6 fingers on a hand or problems with copyrighted music.</p>



<div class="wp-block-stackable-card stk-block-card stk-block stk-22dxeab is-style-default" data-v="2" data-block-id="22dxeab"><style>.stk-22dxeab{box-shadow:0px 2px 20px #99999933 !important;margin-bottom:0px !important}.stk-22dxeab-container{box-shadow:0 5px 5px 0 #123f5209 !important}</style><div class="stk--no-padding stk-container stk-22dxeab-container stk-hover-parent"><figure class="stk-block-card__image stk-img-wrapper stk-image--shape-stretch"><img loading="lazy" decoding="async" class="stk-img" src="https://contentgametips.com/wp-content/uploads/2024/06/Logo-invideo-ai.jpg" width="150" height="300"/></figure><div class="stk-container-padding stk-block-card__content"><div class="stk-block-content stk-inner-blocks stk-22dxeab-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-ckog35n" id="span-data-stk-dynamic-other-posts-product-name-1419-contenteditable-false-class-stk-dynamic-content-strong-invideo-ai-strong-span" data-block-id="ckog35n"><style>.stk-ckog35n{margin-bottom:1px !important;transition-duration:0.03s !important;--stk-transition-duration:0.03s !important;transition-timing-function:ease-in !important}</style><h2 class="stk-block-heading__text has-text-align-center">Invideo AI </h2></div>



<div class="wp-block-stackable-subtitle stk-block-subtitle stk-block stk-cn1b87a" data-block-id="cn1b87a"><style>.stk-cn1b87a{margin-bottom:5px !important}</style><p class="stk-block-subtitle__text stk-subtitle has-text-align-center">Text to video in minutes.<br>Describe your idea, optionally add details such as video length, platform, voiceover accent, and watch as the video gets generated. describing your block. Any text will do. Description for this block. You can use this space to describe your block.</p></div>



<div class="wp-block-stackable-columns stk-block-columns stk-block stk-lsynvje stk-block-background" data-block-id="lsynvje"><style>.stk-lsynvje{background-color:var(--global-palette8,var(--global-palette8)) !important;box-shadow:0 0 0 2px #7878781a !important;margin-bottom:0px !important}.stk-lsynvje:before{background-color:var(--global-palette8,var(--global-palette8)) !important}</style><div class="stk-row stk-inner-blocks stk-block-content stk-content-align stk-lsynvje-column">
<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-d6h18xq" data-v="4" data-block-id="d6h18xq"><div class="stk-column-wrapper stk-block-column__content stk-container stk-d6h18xq-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-d6h18xq-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-d3ky7ho" id="free" data-block-id="d3ky7ho"><style>.stk-d3ky7ho{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Free</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-bnwuvf4" data-block-id="bnwuvf4"><style>.stk-bnwuvf4 .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-bnwuvf4 .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">Free forever</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-btj3rwc" data-v="4" data-block-id="btj3rwc"><div class="stk-column-wrapper stk-block-column__content stk-container stk-btj3rwc-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-btj3rwc-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-vjzrnp9" id="price" data-block-id="vjzrnp9"><style>.stk-vjzrnp9{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Price</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-1b3uoms" data-block-id="1b3uoms"><style>.stk-1b3uoms .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-1b3uoms .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">20$/mo</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-hkwrynk" data-v="4" data-block-id="hkwrynk"><div class="stk-column-wrapper stk-block-column__content stk-container stk-hkwrynk-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-hkwrynk-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-7fd6i8x" id="sale" data-block-id="7fd6i8x"><style>.stk-7fd6i8x{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Sale</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-tu74spm" data-block-id="tu74spm"><style>.stk-tu74spm .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-tu74spm .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">Yearly plans &#8211; 20% off</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-oaz1arp" data-v="4" data-block-id="oaz1arp"><div class="stk-column-wrapper stk-block-column__content stk-container stk-oaz1arp-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-oaz1arp-inner-blocks"></div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-iczqhv9" data-v="4" data-block-id="iczqhv9"><div class="stk-column-wrapper stk-block-column__content stk-container stk-iczqhv9-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-iczqhv9-inner-blocks">
<div class="wp-block-stackable-image stk-block-image stk-block stk-o0tt5m9" data-block-id="o0tt5m9"><figure><span class="stk-img-wrapper stk-image--shape-stretch"><img loading="lazy" decoding="async" class="stk-img" src="https://contentgametips.com/wp-content/uploads/2024/06/Invideo-ai.png" width="150" height="300"/></span></figure></div>
</div></div></div>
</div></div>



<div class="wp-block-stackable-button-group stk-block-button-group stk-block stk-xik7o8u" data-block-id="xik7o8u"><div class="stk-row stk-inner-blocks stk-block-content stk-button-group">
<div class="wp-block-stackable-button stk-block-button stk-block stk-zhdj0ra" data-block-id="zhdj0ra"><style>.stk-zhdj0ra,.stk-zhdj0ra .stk-button{width:100% !important}.stk-zhdj0ra{flex:1 0 var(--stk-button-group-flex-wrap,0) !important}.stk-zhdj0ra .stk-button{background:var(--global-palette1,var(--global-palette1)) !important;border-top-left-radius:50px !important;border-top-right-radius:50px !important;border-bottom-right-radius:50px !important;border-bottom-left-radius:50px !important}.stk-zhdj0ra .stk-button:before{box-shadow:0 5px 5px 0 #123f5209 !important;border-style:solid !important}.stk-zhdj0ra .stk-button__inner-text{color:var(--global-palette3,var(--global-palette3)) !important}</style><a class="stk-link stk-button stk--hover-effect-darken" href="https://go.contentgametips.com/invideostudio"><span class="has-text-color stk-button__inner-text">Try it for free</span></a></div>
</div></div>
</div></div></div></div>
]]></content:encoded>
					
					<wfw:commentRss>https://contentgametips.com/3-ways-to-create-a-video-in-invideo-ai-2-0/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Edit video clips in Invideo AI 2.0</title>
		<link>https://contentgametips.com/edit-video-clips-in-invideo-ai-2-0/</link>
					<comments>https://contentgametips.com/edit-video-clips-in-invideo-ai-2-0/#respond</comments>
		
		<dc:creator><![CDATA[Nechma Shor]]></dc:creator>
		<pubDate>Thu, 06 Jun 2024 07:20:45 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[Content Creation Techniques]]></category>
		<category><![CDATA[Tools for contnet creators]]></category>
		<category><![CDATA[Video]]></category>
		<guid isPermaLink="false">https://contentgametips.com/?p=1418</guid>

					<description><![CDATA[When I created a video for the first time with InVideo AI, I was very disappointed with the stock video selection, and it...]]></description>
										<content:encoded><![CDATA[
			
			
										
			
			


<p>When I created a video for the first time with InVideo AI, I was very disappointed with the stock video selection, and it took forever to change the videos. But now, with the 2.0 version, they made improvements. Let&#8217;s see how to change the video clips on a video when you create it in InVideo AI.</p>



<p>Start by asking the AI to create the video for you. Now watch the video. If you don&#8217;t like or think that a video clip is not matching, then you have a few options. The first one is just asking the AI again to change a video clip. To do it, go to the box under the video in the main editor and ask the AI to change the video. Be precise about where in the video the clip you want to change is and give the AI specific instructions on what you are looking for to change.</p>



<p>Watch it again and see if it changes the video clip. I asked it to change it to a human with attention. Maybe this is not what I would pick myself, but I think it is an interesting choice.&nbsp;</p>



<p>Now let&#8217;s see how you can change it yourself without AI. Click on the edit button under the video, and you are in the first tab for editing and changing the videos.&nbsp;</p>



<p>You can see that the video we changed has two layers; this is if you want to go back to what it was before at any point of the editing.</p>



<p>Just click on the clip you want to change, and then under the video, you have a box for putting the keywords. Find from the stock videos the video you want to change, and you have it.&nbsp;</p>



<p>If you are on the free plan or are limited to the premium stock videos, you can click on the premium videos, and it will show you the videos that are not premium. They have two types of clips you can choose to use: Storyblocks, Shutterstock, Pixabay, Pexels, and iStock. The iStock clips are limited every month, and when you reach the point that you can&#8217;t use them anymore, they will tell you that. When you create the video, you can ask the AI not to use the iStock clips.&nbsp;</p>



<p>You will see that there is a watermark on the videos; after you download them, you should not have the video clips&#8217; watermark. However, if you are on the free plan, you will have the InVideo logo watermark on your video and the video library logo.&nbsp;</p>



<p>Let&#8217;s see how to ask the AI to replace the iStock videos from this video.&nbsp;</p>



<p>Go to the AI box under the video and ask it to replace all of the iStock video clips with a different library. But the best thing to do is to ask the AI to not use the iStock video clips at all at the beginning of creating the video from the video-generating panel.&nbsp;</p>



<p>When you open the options to create a video, you have the option to tell the AI if you want to use the iStock clips or avoid them.&nbsp;</p>



<p>If you want to know how many iStock video clips and images you can use, then click on the right-side menu and find the usage option. There you can see exactly how many iStock videos you used this month. Also, when you export the video, you will have this information.</p>



<p>Let&#8217;s get back to the video clip editor. When you click on the video clip, you have a box with some options. Here, you can customize the length of the video. You can also change the center of the video; if this video is vertical and you don&#8217;t see the main idea of the video, you can change the center point, and it will show a different part of the image from the video. The customization is between zero to one.</p>



<p>Under the video clips, you have the text from the script, and the sentence that is on this clip is marked in bold. You also have the information about which chapter this part of the video is from, so if you want to make any changes to the text, you know exactly where to find it.</p>



<p>If you want to make a media clip longer, do this. Go to the script editor. Now find the scene where you want the video to continue from the last scene. Click on the media, and then you have a trash icon. Click on it and apply changes. When you go back to edit the clip, you can see that now the previous video clip is longer and extends into the next scene.&nbsp;</p>



<p>If you want to make it shorter, then change the duration. After you apply the changes, the next video clip will be longer to fill the gap.</p>



<p>If you want a scene to be black and show only the words, you need to separate that clip into a new chapter by duplicating the chapter and deleting the sentences from both chapters to make it separate text. Now delete all of the clips. After you apply changes, you will see a black screen with only the words on it.</p>



<p>If you want to add a clip, click on the plus button, and you can add media. Now add keywords so InVideo AI will know what kind of video clip to put in this media part.</p>



<p>If you want to have a shorter video clip, you need to split the text. In the last video, where I showed how to split the chapter, I showed a different way to split the text. But I found another way to do it in the help section.</p>



<p>Click on the sentence you want to split, then click Shift and Enter, and it will split the scene. Similarly, if you want to merge the scenes, click Shift and Backspace.</p>



<p>You can also upload a video clip. If you want to upload a video clip, you need to make sure it is not more than 2 GB. But from my experience, it should be even less because the upload is not fast enough and can get stuck if you upload a big video.</p>



<p>After you upload media to your video, you can see it in the upload section. But you can also find it in the media library. Click on the menu icon on the left side, then click on media library. Theoretically, you can do a few things here, but for me, it didn&#8217;t work when I tried.</p>



<p>You can create new folders, but you can&#8217;t change the folders after you create them, at least I couldn&#8217;t do that. To create a new folder, you can click on the button and give it a name. If you have media, you can add it to the folder. Click on the media you want to move to a folder, then click on the plus button on the top and choose which folder this media should go in. Here, you can also create a folder.</p>



<p>I wish they would add the option to delete folders too, and if they could add an option to watch the video from the library, it would be helpful because you don&#8217;t always know what the video is about.</p>



<p>If you want to change the video from vertical to horizontal or the opposite, you need to ask the AI to do it for you. In this demo video, it was really fast, but I don&#8217;t know if that&#8217;s because this video is only 30 seconds long.</p>



<p>If you want to know more about how to change the background music, then click on this video next. Like and subscribe, and I&#8217;ll see you next time.</p>



<div class="wp-block-stackable-card stk-block-card stk-block stk-6p9zgfh is-style-default" data-v="2" data-block-id="6p9zgfh"><style>.stk-6p9zgfh{box-shadow:0px 2px 20px #99999933 !important;margin-bottom:0px !important}.stk-6p9zgfh-container{box-shadow:0 5px 5px 0 #123f5209 !important}</style><div class="stk--no-padding stk-container stk-6p9zgfh-container stk-hover-parent"><figure class="stk-block-card__image stk-img-wrapper stk-image--shape-stretch"><img loading="lazy" decoding="async" class="stk-img" src="https://contentgametips.com/wp-content/uploads/2024/06/Logo-invideo-ai.jpg" width="150" height="300"/></figure><div class="stk-container-padding stk-block-card__content"><div class="stk-block-content stk-inner-blocks stk-6p9zgfh-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-hfkxrnd" id="span-data-stk-dynamic-other-posts-product-name-1419-contenteditable-false-class-stk-dynamic-content-strong-invideo-ai-strong-span" data-block-id="hfkxrnd"><style>.stk-hfkxrnd{margin-bottom:1px !important;transition-duration:0.03s !important;--stk-transition-duration:0.03s !important;transition-timing-function:ease-in !important}</style><h2 class="stk-block-heading__text has-text-align-center">Invideo AI </h2></div>



<div class="wp-block-stackable-subtitle stk-block-subtitle stk-block stk-v16ztqb" data-block-id="v16ztqb"><style>.stk-v16ztqb{margin-bottom:5px !important}</style><p class="stk-block-subtitle__text stk-subtitle has-text-align-center">Text to video in minutes.<br>Describe your idea, optionally add details such as video length, platform, voiceover accent, and watch as the video gets generated. describing your block. Any text will do. Description for this block. You can use this space to describe your block.</p></div>



<div class="wp-block-stackable-columns stk-block-columns stk-block stk-bspzpym stk-block-background" data-block-id="bspzpym"><style>.stk-bspzpym{background-color:var(--global-palette8,var(--global-palette8)) !important;box-shadow:0 0 0 2px #7878781a !important;margin-bottom:0px !important}.stk-bspzpym:before{background-color:var(--global-palette8,var(--global-palette8)) !important}</style><div class="stk-row stk-inner-blocks stk-block-content stk-content-align stk-bspzpym-column">
<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-mwyikmb" data-v="4" data-block-id="mwyikmb"><div class="stk-column-wrapper stk-block-column__content stk-container stk-mwyikmb-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-mwyikmb-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-xkvq49d" id="free" data-block-id="xkvq49d"><style>.stk-xkvq49d{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Free</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-ey3ouv2" data-block-id="ey3ouv2"><style>.stk-ey3ouv2 .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-ey3ouv2 .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">Free forever</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-gcjkqy6" data-v="4" data-block-id="gcjkqy6"><div class="stk-column-wrapper stk-block-column__content stk-container stk-gcjkqy6-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-gcjkqy6-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-nlwmq10" id="price" data-block-id="nlwmq10"><style>.stk-nlwmq10{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Price</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-fyjdgbl" data-block-id="fyjdgbl"><style>.stk-fyjdgbl .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-fyjdgbl .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">20$/mo</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-vei6bkm" data-v="4" data-block-id="vei6bkm"><div class="stk-column-wrapper stk-block-column__content stk-container stk-vei6bkm-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-vei6bkm-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-z3qhkjx" id="sale" data-block-id="z3qhkjx"><style>.stk-z3qhkjx{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Sale</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-1yd38mr" data-block-id="1yd38mr"><style>.stk-1yd38mr .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-1yd38mr .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">Yearly plans &#8211; 20% off</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-217sl1k" data-v="4" data-block-id="217sl1k"><div class="stk-column-wrapper stk-block-column__content stk-container stk-217sl1k-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-217sl1k-inner-blocks"></div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-fu5vyg9" data-v="4" data-block-id="fu5vyg9"><div class="stk-column-wrapper stk-block-column__content stk-container stk-fu5vyg9-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-fu5vyg9-inner-blocks">
<div class="wp-block-stackable-image stk-block-image stk-block stk-y9aclfh" data-block-id="y9aclfh"><figure><span class="stk-img-wrapper stk-image--shape-stretch"><img loading="lazy" decoding="async" class="stk-img" src="https://contentgametips.com/wp-content/uploads/2024/06/Invideo-ai.png" width="150" height="300"/></span></figure></div>
</div></div></div>
</div></div>



<div class="wp-block-stackable-button-group stk-block-button-group stk-block stk-pbdrj2k" data-block-id="pbdrj2k"><div class="stk-row stk-inner-blocks stk-block-content stk-button-group">
<div class="wp-block-stackable-button stk-block-button stk-block stk-an71oz3" data-block-id="an71oz3"><style>.stk-an71oz3,.stk-an71oz3 .stk-button{width:100% !important}.stk-an71oz3{flex:1 0 var(--stk-button-group-flex-wrap,0) !important}.stk-an71oz3 .stk-button{background:var(--global-palette1,var(--global-palette1)) !important;border-top-left-radius:50px !important;border-top-right-radius:50px !important;border-bottom-right-radius:50px !important;border-bottom-left-radius:50px !important}.stk-an71oz3 .stk-button:before{box-shadow:0 5px 5px 0 #123f5209 !important;border-style:solid !important}.stk-an71oz3 .stk-button__inner-text{color:var(--global-palette3,var(--global-palette3)) !important}</style><a class="stk-link stk-button stk--hover-effect-darken" href="https://go.contentgametips.com/invideostudio"><span class="has-text-color stk-button__inner-text">Try it for free</span></a></div>
</div></div>
</div></div></div></div>
]]></content:encoded>
					
					<wfw:commentRss>https://contentgametips.com/edit-video-clips-in-invideo-ai-2-0/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Invideo AI 2.0 &#8211; music editing</title>
		<link>https://contentgametips.com/invideo-ai-2-0-music-editing/</link>
					<comments>https://contentgametips.com/invideo-ai-2-0-music-editing/#respond</comments>
		
		<dc:creator><![CDATA[Nechma Shor]]></dc:creator>
		<pubDate>Thu, 06 Jun 2024 06:34:49 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[Content Creation Techniques]]></category>
		<category><![CDATA[The content game]]></category>
		<category><![CDATA[Tools for contnet creators]]></category>
		<category><![CDATA[Video]]></category>
		<guid isPermaLink="false">https://contentgametips.com/?p=1416</guid>

					<description><![CDATA[InVideo AI has the option to add music to the automatically generated video. In the Invideo ai 1.0 version, if you wanted to...]]></description>
										<content:encoded><![CDATA[
			
			
										
			
			


<p>InVideo AI has the option to add music to the automatically generated video. In the Invideo ai 1.0 version, if you wanted to change the music, you had to ask the AI to do it for you, and it didn&#8217;t always work well. In version 2.0, they added the option to edit the music in the video yourself. In this video, we will see how to use this feature and how to edit the music, starting with the simple option.</p>



<p>First, create a video with the AI. The video will include music. As before, you can ask the AI to change the music for you. Just type in the AI box under the video. It is very important to give it clear instructions, like &#8220;change the music to something more energetic&#8221; or &#8220;sad&#8221; or whatever you like. If you have a few chapters in the video, you should specify to the AI which parts you want to change the music for. Otherwise, it might not change the right music.</p>



<p>Before we get into music editing, it is important to point out that the video has chapters. Each chapter gets one music track. So, if you want to add more tracks to the video, you need to divide that part into a few chapters so you can change the music between them.</p>



<p>Let&#8217;s see how to create different chapters. Click on the edit button under the video to open the edit options. There you have three tabs; choose the &#8216;Edit script&#8217; tab.&nbsp;</p>



<p>If you have more than one chapter and you want to add a chapter, you should do the following: find the chapter you want to split, click on the three dots on the right side in the same line as the name of the chapter, then click on &#8216;Duplicate.&#8217; Next, delete the duplicate sentences from each part, so you have two chapters with different parts of the original chapter. Now you can add different music to each chapter. Go to the &#8216;Edit Music&#8217; tab. After you create a new chapter, this chapter will not have its own music; instead, it will continue the music from the original chapter it was cut from. Click on the chapter you want to change the music for. Then, under this section, you have a list of music tracks. There are two types of music tracks. The first one is free from the YouTube library, so you are safe to use it as you wish. The other type is from Storyblocks or other libraries; you can see the name of the library in the name of the song.</p>



<p>After a conversation with support, you can use the premium music in your video even as a free user. If you use the music, you should contact support and give them your channel ID. You can find the ID number on your channel. If you have the TubeBuddy free extension, you can go to your homepage, and you will find it in the extension tab right before the videos. If you don&#8217;t have the extension, you can get it from the description; it is free to use.&nbsp;</p>



<p>Anyway, you can also find it on your YouTube Studio. Get into your studio by clicking on the right side of the YouTube menu, then go to the &#8216;Customization&#8217; tab, and then click on &#8216;Basic Info.&#8217; Now scroll down, and you will find the channel ID. Copy it. Now go back to InVideo main website, open a new chat, and ask to get connected to a human. Then ask them in the chat to whitelist your channel so you won’t get copyright claims.</p>



<p>If you don&#8217;t want to see any premium library music, you can click on the option to remove them. To search for music, put the keywords in the box. You can search by genre, mood, instrument, or other criteria. If you use only the free music from YouTube, you might not get the results you like because the YouTube library is limited compared to the premium libraries. To hear the music, there is a play button next to the song, and you also have the timeline of the music at the bottom of the edit screen. You can skip to the parts you like. If you want to start the music from a different point other than the beginning, you can change it, and I will show you how in a few seconds. If you like a piece of music, just make sure you are on the right chapter, then click &#8216;Replace&#8217; and this music will be added to that chapter.</p>



<p>Now let&#8217;s see how to edit the music in the chapter. On each chapter music track, you have three dots and a play button. When you click on play, you can hear that specific music so you can decide if you want to change it. When you open the three dots, you have more options. First, if you want to loop the music, by default, it is marked as yes. This means that the music will loop throughout the chapter if it is longer than the music track. Next, you have the volume mixer, where you can decide how loud or soft you want the music. If you think it is too loud or quiet, you can change it here.&nbsp;</p>



<p>Under that, you have the option to fade in and out, which is good for blending two music tracks together. Use 1-2 seconds if you want to fade in and out; this is enough. If you put more, you will have silent time in the video, unless you want to put a longer silent period. The next option is if you want to start the music at a specific time, like starting from the chorus, for example. After that, you have the option to decide how long you want the music to play. If you choose a time shorter than the chapter, it will cut off before the end.</p>



<p>When you finish, click on &#8216;Apply Changes.&#8217; Now go to the video to see if all the changes match your taste and if you like them. I think this is a better way to change the music than it was before. If you want to know more about how to edit the script, click on this video next. Subscribe and like and I will see you in the next video.&nbsp;</p>



<div class="wp-block-stackable-card stk-block-card stk-block stk-4r8hb3k is-style-default" data-v="2" data-block-id="4r8hb3k"><style>.stk-4r8hb3k{box-shadow:0px 2px 20px #99999933 !important;margin-bottom:0px !important}.stk-4r8hb3k-container{box-shadow:0 5px 5px 0 #123f5209 !important}</style><div class="stk--no-padding stk-container stk-4r8hb3k-container stk-hover-parent"><figure class="stk-block-card__image stk-img-wrapper stk-image--shape-stretch"><img loading="lazy" decoding="async" class="stk-img" src="https://contentgametips.com/wp-content/uploads/2024/06/Logo-invideo-ai.jpg" width="150" height="300"/></figure><div class="stk-container-padding stk-block-card__content"><div class="stk-block-content stk-inner-blocks stk-4r8hb3k-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-u9n1ejp" id="span-data-stk-dynamic-other-posts-product-name-1419-contenteditable-false-class-stk-dynamic-content-strong-invideo-ai-strong-span" data-block-id="u9n1ejp"><style>.stk-u9n1ejp{margin-bottom:1px !important;transition-duration:0.03s !important;--stk-transition-duration:0.03s !important;transition-timing-function:ease-in !important}</style><h2 class="stk-block-heading__text has-text-align-center">Invideo AI </h2></div>



<div class="wp-block-stackable-subtitle stk-block-subtitle stk-block stk-kxafc1x" data-block-id="kxafc1x"><style>.stk-kxafc1x{margin-bottom:5px !important}</style><p class="stk-block-subtitle__text stk-subtitle has-text-align-center">Text to video in minutes.<br>Describe your idea, optionally add details such as video length, platform, voiceover accent, and watch as the video gets generated. describing your block. Any text will do. Description for this block. You can use this space to describe your block.</p></div>



<div class="wp-block-stackable-columns stk-block-columns stk-block stk-jv9153l stk-block-background" data-block-id="jv9153l"><style>.stk-jv9153l{background-color:var(--global-palette8,var(--global-palette8)) !important;box-shadow:0 0 0 2px #7878781a !important;margin-bottom:0px !important}.stk-jv9153l:before{background-color:var(--global-palette8,var(--global-palette8)) !important}</style><div class="stk-row stk-inner-blocks stk-block-content stk-content-align stk-jv9153l-column">
<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-lptse2h" data-v="4" data-block-id="lptse2h"><div class="stk-column-wrapper stk-block-column__content stk-container stk-lptse2h-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-lptse2h-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-g2lo3rw" id="free" data-block-id="g2lo3rw"><style>.stk-g2lo3rw{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Free</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-elm36kb" data-block-id="elm36kb"><style>.stk-elm36kb .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-elm36kb .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">Free forever</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-81nhupb" data-v="4" data-block-id="81nhupb"><div class="stk-column-wrapper stk-block-column__content stk-container stk-81nhupb-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-81nhupb-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-8c90t3n" id="price" data-block-id="8c90t3n"><style>.stk-8c90t3n{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Price</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-6j6arxl" data-block-id="6j6arxl"><style>.stk-6j6arxl .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-6j6arxl .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">20$/mo</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-jrsdl9k" data-v="4" data-block-id="jrsdl9k"><div class="stk-column-wrapper stk-block-column__content stk-container stk-jrsdl9k-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-jrsdl9k-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-rxna3pt" id="sale" data-block-id="rxna3pt"><style>.stk-rxna3pt{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Sale</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-t1m18vo" data-block-id="t1m18vo"><style>.stk-t1m18vo .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-t1m18vo .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">Yearly plans &#8211; 20% off</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-l7hgvf4" data-v="4" data-block-id="l7hgvf4"><div class="stk-column-wrapper stk-block-column__content stk-container stk-l7hgvf4-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-l7hgvf4-inner-blocks"></div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-nlrhp9e" data-v="4" data-block-id="nlrhp9e"><div class="stk-column-wrapper stk-block-column__content stk-container stk-nlrhp9e-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-nlrhp9e-inner-blocks">
<div class="wp-block-stackable-image stk-block-image stk-block stk-1uokigd" data-block-id="1uokigd"><figure><span class="stk-img-wrapper stk-image--shape-stretch"><img loading="lazy" decoding="async" class="stk-img" src="https://contentgametips.com/wp-content/uploads/2024/06/Invideo-ai.png" width="150" height="300"/></span></figure></div>
</div></div></div>
</div></div>



<div class="wp-block-stackable-button-group stk-block-button-group stk-block stk-2094zrk" data-block-id="2094zrk"><div class="stk-row stk-inner-blocks stk-block-content stk-button-group">
<div class="wp-block-stackable-button stk-block-button stk-block stk-zy1j95o" data-block-id="zy1j95o"><style>.stk-zy1j95o,.stk-zy1j95o .stk-button{width:100% !important}.stk-zy1j95o{flex:1 0 var(--stk-button-group-flex-wrap,0) !important}.stk-zy1j95o .stk-button{background:var(--global-palette1,var(--global-palette1)) !important;border-top-left-radius:50px !important;border-top-right-radius:50px !important;border-bottom-right-radius:50px !important;border-bottom-left-radius:50px !important}.stk-zy1j95o .stk-button:before{box-shadow:0 5px 5px 0 #123f5209 !important;border-style:solid !important}.stk-zy1j95o .stk-button__inner-text{color:var(--global-palette3,var(--global-palette3)) !important}</style><a class="stk-link stk-button stk--hover-effect-darken" href="https://go.contentgametips.com/invideostudio"><span class="has-text-color stk-button__inner-text">Try it for free</span></a></div>
</div></div>
</div></div></div></div>
]]></content:encoded>
					
					<wfw:commentRss>https://contentgametips.com/invideo-ai-2-0-music-editing/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Edit the script in Invideo AI 2.0</title>
		<link>https://contentgametips.com/edit-the-script-in-invideo-ai-2-0/</link>
					<comments>https://contentgametips.com/edit-the-script-in-invideo-ai-2-0/#respond</comments>
		
		<dc:creator><![CDATA[Nechma Shor]]></dc:creator>
		<pubDate>Thu, 06 Jun 2024 06:32:57 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools for contnet creators]]></category>
		<category><![CDATA[Video]]></category>
		<guid isPermaLink="false">https://contentgametips.com/?p=1414</guid>

					<description><![CDATA[InVideo AI is software that makes videos with AI.&#160; You give it a prompt, and it gives you a video with a script,...]]></description>
										<content:encoded><![CDATA[
			
			
										
			
			


<p>InVideo AI is software that makes videos with AI.&nbsp;</p>



<p>You give it a prompt, and it gives you a video with a script, music, and an AI voice for narration. But what if you want to change the text of the script?&nbsp;</p>



<p>In this video, we will see together how to edit it.&nbsp;</p>



<p>First, get into InVideo and create the video.&nbsp;</p>



<p>If you want to change the video script, you can ask the AI to do it for you.&nbsp;</p>



<p>In the box under the video, you can ask the AI to change the text.&nbsp;</p>



<p>You should give an explanation for what you want to change.</p>



<p>&nbsp;From my experience, it is important to ask for one task every time.&nbsp;</p>



<p>If you don&#8217;t like the changes, you can go to the edit button and do more editing by yourself.&nbsp;</p>



<p>You have three tabs; go to the edit script tab. Now you have all of the text. Just change the text to whatever you like in the box.&nbsp;</p>



<p>If you want to delete a scene, then just delete the text, and it will delete the whole scene.&nbsp;</p>



<p>After you make changes, you need to click on the &#8220;apply changes&#8221; button, and it will change what you asked for.&nbsp;</p>



<p>After it is changed, it is a good idea to go back to the edit script and see if the changes were made.&nbsp;</p>



<p>If you don&#8217;t like what it did for you, you can always click on the button to go back to the previous edits, and you are okay to continue.</p>



<p>&nbsp;Now let&#8217;s see how you can add or split the text because it is not that intuitive, and from the testing I made, the AI is not understanding the splitting things.&nbsp;</p>



<p>If you want to add video to the scene because it is too long or if you want to change the music, you need to use the chapters. Go to edit. You have an option there to add a chapter.&nbsp;</p>



<p>If your video is short, probably you have only one chapter, but if your video is long, then maybe you will have a few chapters. Go to the chapter you want to split and click on the three dots on the right side, in the same line as the name of the chapter.&nbsp;</p>



<p>You have options there to duplicate the chapter, add another chapter before this chapter or after, and delete the chapter.&nbsp;</p>



<p>If you want to split the first sentence or the last sentence, then just add a chapter before or after this chapter depending on the sentence you want to change.&nbsp;</p>



<p>Then copy the text you want to split to the first box.&nbsp;</p>



<p>Then delete the part of the sentence you want to change, and now you have split the video.</p>



<p>&nbsp;If you want to make any changes, then you will get a black screen, and the narrator will be the same as the previous one.</p>



<p>If you want to add media, then click on the plus button and find &#8220;add media.&#8221; Click on it. You can only click on it if you don&#8217;t have any media. Now add some keywords so it will find a matching video for you. Next, click on &#8220;apply changes,&#8221; and it will split the text.</p>



<p>&nbsp;If you have a sentence that you want to split but it is not in the beginning of the chapter, you need to do it differently.&nbsp;</p>



<p>First, click on &#8220;duplicate chapter,&#8221; where the text you want to change is. Next, delete the text that is double in both chapters. Now you can add the text you want to split. The first half of the sentence will be in the top chapter as the last sentence, and the second half-sentence will be in the second chapter at the beginning.</p>



<p>Just make sure to change the text in the media; otherwise, you will have the wrong video in this sentence.&nbsp;</p>



<p>If you want to change the music in the middle of the video, then you also need to split the chapters in the same way.&nbsp;<br>I don&#8217;t know why it is so complicated to delete, split, or move things around. Maybe they will make changes in the future. This is also the 2.0 version of the InVideo AI, so stay tuned for more videos about version 2.0. If you want to know how to change narrators and how it works, then click on the video on the screen now. Like and subscribe for more, and I will see you next time.</p>



<div class="wp-block-stackable-card stk-block-card stk-block stk-lahi858 is-style-default" data-v="2" data-block-id="lahi858"><style>.stk-lahi858{box-shadow:0px 2px 20px #99999933 !important;margin-bottom:0px !important}.stk-lahi858-container{box-shadow:0 5px 5px 0 #123f5209 !important}</style><div class="stk--no-padding stk-container stk-lahi858-container stk-hover-parent"><figure class="stk-block-card__image stk-img-wrapper stk-image--shape-stretch"><img loading="lazy" decoding="async" class="stk-img" src="https://contentgametips.com/wp-content/uploads/2024/06/Logo-invideo-ai.jpg" width="150" height="300"/></figure><div class="stk-container-padding stk-block-card__content"><div class="stk-block-content stk-inner-blocks stk-lahi858-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-0aywq35" id="span-data-stk-dynamic-other-posts-product-name-1419-contenteditable-false-class-stk-dynamic-content-strong-invideo-ai-strong-span" data-block-id="0aywq35"><style>.stk-0aywq35{margin-bottom:1px !important;transition-duration:0.03s !important;--stk-transition-duration:0.03s !important;transition-timing-function:ease-in !important}</style><h2 class="stk-block-heading__text has-text-align-center">Invideo AI </h2></div>



<div class="wp-block-stackable-subtitle stk-block-subtitle stk-block stk-xufaots" data-block-id="xufaots"><style>.stk-xufaots{margin-bottom:5px !important}</style><p class="stk-block-subtitle__text stk-subtitle has-text-align-center">Text to video in minutes.<br>Describe your idea, optionally add details such as video length, platform, voiceover accent, and watch as the video gets generated. describing your block. Any text will do. Description for this block. You can use this space to describe your block.</p></div>



<div class="wp-block-stackable-columns stk-block-columns stk-block stk-dckthsm stk-block-background" data-block-id="dckthsm"><style>.stk-dckthsm{background-color:var(--global-palette8,var(--global-palette8)) !important;box-shadow:0 0 0 2px #7878781a !important;margin-bottom:0px !important}.stk-dckthsm:before{background-color:var(--global-palette8,var(--global-palette8)) !important}</style><div class="stk-row stk-inner-blocks stk-block-content stk-content-align stk-dckthsm-column">
<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-z882iji" data-v="4" data-block-id="z882iji"><div class="stk-column-wrapper stk-block-column__content stk-container stk-z882iji-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-z882iji-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-46b2c67" id="free" data-block-id="46b2c67"><style>.stk-46b2c67{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Free</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-q5zgnzl" data-block-id="q5zgnzl"><style>.stk-q5zgnzl .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-q5zgnzl .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">Free forever</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-poe84f5" data-v="4" data-block-id="poe84f5"><div class="stk-column-wrapper stk-block-column__content stk-container stk-poe84f5-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-poe84f5-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-l6hj3mv" id="price" data-block-id="l6hj3mv"><style>.stk-l6hj3mv{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Price</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-zw7ekid" data-block-id="zw7ekid"><style>.stk-zw7ekid .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-zw7ekid .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">20$/mo</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-59f54rg" data-v="4" data-block-id="59f54rg"><div class="stk-column-wrapper stk-block-column__content stk-container stk-59f54rg-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-59f54rg-inner-blocks">
<div class="wp-block-stackable-heading stk-block-heading stk-block-heading--v2 stk-block stk-lk498nw" id="sale" data-block-id="lk498nw"><style>.stk-lk498nw{margin-bottom:0px !important}</style><h6 class="stk-block-heading__text">Sale</h6></div>



<div class="wp-block-stackable-text stk-block-text stk-block stk-52gpal9" data-block-id="52gpal9"><style>.stk-52gpal9 .stk-block-text__text{font-size:14px !important}@media screen and (max-width:1023px){.stk-52gpal9 .stk-block-text__text{font-size:14px !important}}</style><p class="stk-block-text__text">Yearly plans &#8211; 20% off</p></div>
</div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-ewh7z36" data-v="4" data-block-id="ewh7z36"><div class="stk-column-wrapper stk-block-column__content stk-container stk-ewh7z36-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-ewh7z36-inner-blocks"></div></div></div>



<div class="wp-block-stackable-column stk-block-column stk-column stk-block stk-leknn4b" data-v="4" data-block-id="leknn4b"><div class="stk-column-wrapper stk-block-column__content stk-container stk-leknn4b-container stk--no-background stk--no-padding"><div class="stk-block-content stk-inner-blocks stk-leknn4b-inner-blocks">
<div class="wp-block-stackable-image stk-block-image stk-block stk-06cnvc5" data-block-id="06cnvc5"><figure><span class="stk-img-wrapper stk-image--shape-stretch"><img loading="lazy" decoding="async" class="stk-img" src="https://contentgametips.com/wp-content/uploads/2024/06/Invideo-ai.png" width="150" height="300"/></span></figure></div>
</div></div></div>
</div></div>



<div class="wp-block-stackable-button-group stk-block-button-group stk-block stk-o8zr2ly" data-block-id="o8zr2ly"><div class="stk-row stk-inner-blocks stk-block-content stk-button-group">
<div class="wp-block-stackable-button stk-block-button stk-block stk-w0li0s5" data-block-id="w0li0s5"><style>.stk-w0li0s5,.stk-w0li0s5 .stk-button{width:100% !important}.stk-w0li0s5{flex:1 0 var(--stk-button-group-flex-wrap,0) !important}.stk-w0li0s5 .stk-button{background:var(--global-palette1,var(--global-palette1)) !important;border-top-left-radius:50px !important;border-top-right-radius:50px !important;border-bottom-right-radius:50px !important;border-bottom-left-radius:50px !important}.stk-w0li0s5 .stk-button:before{box-shadow:0 5px 5px 0 #123f5209 !important;border-style:solid !important}.stk-w0li0s5 .stk-button__inner-text{color:var(--global-palette3,var(--global-palette3)) !important}</style><a class="stk-link stk-button stk--hover-effect-darken" href="https://go.contentgametips.com/invideostudio"><span class="has-text-color stk-button__inner-text">Try it for free</span></a></div>
</div></div>
</div></div></div></div>
]]></content:encoded>
					
					<wfw:commentRss>https://contentgametips.com/edit-the-script-in-invideo-ai-2-0/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
