

{"id":115246,"date":"2024-01-08T18:00:39","date_gmt":"2024-01-08T12:30:39","guid":{"rendered":"https:\/\/data-flair.training\/blogs\/?p=115246"},"modified":"2026-06-01T12:21:55","modified_gmt":"2026-06-01T06:51:55","slug":"opencv-extract-frames-from-video","status":"publish","type":"post","link":"https:\/\/data-flair.training\/blogs\/opencv-extract-frames-from-video\/","title":{"rendered":"OpenCV Project &#8211; Extract Frames from a Video"},"content":{"rendered":"<p>When we watch a video, we see a continuous stream of images that create the illusion of movement. In computer vision and image processing, it is sometimes necessary to work with these individual frames instead of the video as a whole.<\/p>\n<p>OpenCV is a popular library that provides powerful tools to extract individual frames from a video and save them as separate image files. This process has many applications, such as analyzing a video to detect specific objects or patterns or using the frames to train machine learning models.<\/p>\n<p>In this project, we will learn how to use OpenCV and Python to extract frames from a video and explore some of the ways this technique can be used.<\/p>\n<h2>Background<\/h2>\n<p>OpenCV is a tool that helps with image and video processing. It provides a wide range of functions that allow you to manipulate and analyze images and videos. It is commonly used for tasks such as extracting frames from videos.<\/p>\n<p>To extract frames from a video using OpenCV, you need to first use a function called VideoCapture to read the video file. Once you have done this, you can loop through the frames using another function called read. For each frame, you can use a function called imwrite to save it as a separate image file. This process is simple and can be applied to many different situations where you need to extract frames from a video.<\/p>\n<h3>Understanding Video Frames<\/h3>\n<p>Video frames are the individual pictures that make up a video. A video is made by playing these frames quickly to create the illusion of motion. Each frame is a picture that contains information about color and brightness. OpenCV can be used to extract these frames from a video and save them as image files. However, these frames can take up a lot of storage space, so it&#8217;s important to consider storage requirements when extracting frames from a video.<\/p>\n<h3>MetaData<\/h3>\n<p>Metadata refers to the information that describes or provides context to a piece of data. In the context of extracting frames from a video, metadata can be used to identify and locate specific frames within the video. This can include information such as the timecode of each frame, the resolution of the video, the video format, and more. By leveraging metadata, it is possible to efficiently extract specific frames from a video without having to manually search through the entire video file. This can be useful in a variety of applications, such as video editing, computer vision, and machine learning.<\/p>\n<h3>How to Extract MetaData From Video?<\/h3>\n<h4>Installation<\/h4>\n<p>Open windows cmd as administrator<\/p>\n<p>1. To install the moviepy library run the command from the cmd.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">pip install moviepy\r\n<\/pre>\n<h3>Let\u2019s Extract<\/h3>\n<p>1. We need to import some libraries that will be used in our implementation.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">from moviepy.video.io.VideoFileClip import VideoFileClip\r\n<\/pre>\n<p>2. Then give\/ write the path of the Video file and store it in the video_path variable.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">video_path = 'C:\/Users\/yoges\/OneDrive\/Desktop\/dataflair\/Extract frames using OpenCV\/Cricket_Demo.webm'\r\n<\/pre>\n<p>3. This line creates a VideoFileClip object called clip that represents the video file located at the file path specified by the video_path variable.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">clip = VideoFileClip(video_path)\r\n<\/pre>\n<p>4. This line extracts Metadata fields like duration, width, height, fps, size, and rotation angle that provide helpful information about a video. For example, duration tells you how long the video is in seconds, width and height indicate its size in pixels, fps tells you how many images the video displays in one second, and rotation angle indicates if the video has been rotated and by how much.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">print(\"Duration:- \",clip.duration)\r\nprint(\"Width:- \",clip.w) \r\nprint(\"Height:- \",clip.h) \r\nprint(\"FPS:- \",clip.fps)  \r\nprint(\"Size:- \",clip.size)\r\nprint(\"Rotation:- \",clip.rotation)\r\n<\/pre>\n<h3>How to Extract Frames From Video?<\/h3>\n<h4>Prerequisites for Extract Frames Using OpenCV<\/h4>\n<p>It is important to have a solid understanding of the Python programming language and the OpenCV library. Apart from this, you should have the following system requirements.<\/p>\n<p>1. Python 3.7 (64-bit) and above<br \/>\n2. Any Python editor (VS code, Pycharm)<\/p>\n<h3>Download OpenCV Extract Frames from Video Project.<\/h3>\n<p>Please download the source code of OpenCV Extract Frames from Video Project: <a href=\"https:\/\/drive.google.com\/file\/d\/1u3N2rF7PL4AZtmcQULPIAsaBrquXQdZZ\/view?usp=drive_link\"><strong>OpenCV Extract Frames from Video Project Code<\/strong><\/a>.<\/p>\n<h3>Installation<\/h3>\n<p>Open windows cmd as administrator<\/p>\n<p>1. To install the opencv library run the command from the cmd.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">pip install opencv-python\r\n<\/pre>\n<h3>Let\u2019s Implement<\/h3>\n<p>First, we will extract frames from the saved video.<\/p>\n<p>5. We need to import some libraries that will be used in our implementation.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">import cv2\r\n<\/pre>\n<p>6. By using the function of opencv (VideoCapture) we are passing the path of our saved video file.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">cap = cv2.VideoCapture(\"Cricket_Demo.webm\")\r\n<\/pre>\n<p>7. We are assigning the value of zero to the variable &#8220;i&#8221; to serve as a counter. This counter will be used to generate unique file names for a series of images that will be saved onto the system. Each file name will consist of a numerical value corresponding to the current value of the counter, followed by the file extension &#8220;.jpg&#8221;. For example, the first image will be saved as &#8220;0.jpg&#8221;, the second image as &#8220;1.jpg&#8221;, and so on.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">i=0\r\n<\/pre>\n<p>8. Start the while loop.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">while True:\r\n<\/pre>\n<p>9. cap.read() function returns two values, the first is stored in \u2018ret\u2019 which is a boolean value The function cap.read() reads the frame and returns two values: ret (a boolean indicating if the frame was successfully read) and frame (an array of pixel values in the captured frame). These values can be used to process or display the image.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">ret,frame = cap.read()\r\n<\/pre>\n<p>10. This code uses OpenCV library in Python to save a captured frame as a JPEG image file. The function cv2.imwrite() writes the image data to the specified file path and name, using a format string to include the frame number in the file name. The image data to be saved is provided as the second argument. By this line, we are saving the extracted frame in the specified folder path.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">cv2.imwrite(\"C:\/Users\/yoges\/OneDrive\/Desktop\/dataflair\/Extract frames using OpenCV\/Frames\/%d.jpg\"% i, frame)\r\n<\/pre>\n<p>11. We are increasing our counter by 1.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">i=i+1\r\n<\/pre>\n<p>12. The function cv2.imshow() displays the image data in the named window specified by the first argument, which is &#8216;DataFlair&#8217; in this case. The image data to be displayed is provided as the second argument, which is a frame.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">cv2.imshow('DataFlair', frame)\r\n<\/pre>\n<p>13. The cv2.waitKey() function waits for user input from the keyboard for a certain amount of time (in this case, 1 millisecond). If no key is pressed during that time, it returns -1. The if statement checks if the key pressed is the letter &#8216;q&#8217; by comparing its ASCII code to the key code returned by cv2.waitKey(). If the key pressed is &#8216;q&#8217;, the program exits the loop and terminates, allowing the user to quit the program by pressing the &#8216;q&#8217; key.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">cv2.waitKey(1)\r\n   if cv2.waitKey(1) &amp; 0xFF == ord('q'):\r\n       break\r\n<\/pre>\n<p><strong>Note:-<\/strong> Steps 5-9 must be under the while loop.<\/p>\n<p>14. cap.release() frees the resources used to capture the video or camera stream, allowing them to be used by other applications. cv2.destroyAllWindows() closes all OpenCV windows, freeing system resources and ensuring the program ends cleanly.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">cap.release()\r\ncv2.destroyAllWindows()\r\n<\/pre>\n<h3>OpenCV Extracting Video Frames Output<\/h3>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/12\/extract-frames-from-saved-video-output.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-131949 size-full\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/12\/extract-frames-from-saved-video-output.webp\" alt=\"extract frames from saved video\" width=\"1920\" height=\"1080\" \/><\/a><\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/12\/extract-frames-from-saved-video-opencv.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-131950 size-full\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/12\/extract-frames-from-saved-video-opencv.webp\" alt=\"extract frames from saved video opencv\" width=\"1920\" height=\"1080\" \/><\/a><\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/12\/extract-frames-from-saved-video.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-131951 size-full\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/12\/extract-frames-from-saved-video.webp\" alt=\"extract frames from saved video \" width=\"1702\" height=\"889\" \/><\/a><\/p>\n<p>Now, we will extract frames from live video captured by webcam.<\/p>\n<p>To modify the code to capture video from a webcam instead of a video file, you can change the argument passed to the cv2.VideoCapture() function from the file path of the video to 0. This will indicate that you want to capture video from the default camera, which is usually the built-in webcam on most computers.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">cap = cv2.VideoCapture(0)\r\n<\/pre>\n<p><strong>Output:-<\/strong><\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/12\/Extract-frames-using-OpenCV-output.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-131952 size-full\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/12\/Extract-frames-using-OpenCV-output.webp\" alt=\"extract frames using opencv output\" width=\"1920\" height=\"1080\" \/><\/a><\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/12\/extract-frames-output.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-131953 size-full\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/12\/extract-frames-output.webp\" alt=\"extract frames output\" width=\"1609\" height=\"733\" \/><\/a><\/p>\n<h3>Brief Of Code<\/h3>\n<p>This is a Python code that uses the OpenCV library to capture frames from a video stream. The default camera on the computer is used to capture the frames. The script saves each captured frame as a separate JPEG image file on the computer&#8217;s local disk. The images are saved in a specific directory and numbered sequentially.<\/p>\n<p>The script also displays the captured frames in a window with the title &#8220;DataFlair&#8221;. The program will continue to capture and save frames until the user presses the &#8216;q&#8217; key. Once the user presses the key, the video capture stops and the display window is closed. This code can be useful for various computer vision or machine learning applications where individual frames from a video are required for analysis.<\/p>\n<h3>Conclusion<\/h3>\n<p>Extracting frames from a video using OpenCV in Python can be a useful technique for a variety of applications, such as object detection, motion analysis, or video editing. The process involves reading frames from a video stream or file, saving them as images, and displaying them in a window.<\/p>\n<p>The OpenCV library provides several functions to facilitate this process, such as cv2.VideoCapture() for capturing video frames, cv2.imshow() for displaying frames in a window, and cv2.imwrite() for saving frames as image files. By combining these functions in a Python script, it is possible to extract frames from a video and use them for further analysis or processing.<span hidden class=\"__iawmlf-post-loop-links\" data-iawmlf-links=\"[{&quot;id&quot;:2532,&quot;href&quot;:&quot;https:\\\/\\\/drive.google.com\\\/file\\\/d\\\/1u3N2rF7PL4AZtmcQULPIAsaBrquXQdZZ\\\/view?usp=drive_link&quot;,&quot;archived_href&quot;:&quot;http:\\\/\\\/web-wp.archive.org\\\/web\\\/20260601065204\\\/https:\\\/\\\/drive.google.com\\\/file\\\/d\\\/1u3N2rF7PL4AZtmcQULPIAsaBrquXQdZZ\\\/view?usp=drive_link&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2026-06-01 11:55:07&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-06-05 23:37:59&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-06-11 06:47:43&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-06-14 19:51:43&quot;,&quot;http_code&quot;:200}],&quot;broken&quot;:false,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-06-14 19:51:43&quot;,&quot;http_code&quot;:200},&quot;process&quot;:&quot;done&quot;}]\"><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>When we watch a video, we see a continuous stream of images that create the illusion of movement. In computer vision and image processing, it is sometimes necessary to work with these individual frames&#46;&#46;&#46;<\/p>\n","protected":false},"author":86671,"featured_media":131954,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[27755],"tags":[30120,30123,30119,21719,30121,30122,30118],"class_list":["post-115246","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-opencv-tutorials","tag-extracting-frames-from-videos-using-opencv","tag-opencv-extract-frames-project","tag-opencv-extracting-frames-from-video","tag-opencv-projects","tag-opencv-projects-ideas","tag-opencv-projects-practice","tag-python-opencv-projects"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>OpenCV Project - Extract Frames from a Video - DataFlair<\/title>\n<meta name=\"description\" content=\"Extracting frames from a video using OpenCV in Python can be a useful technique for a variety of applications, such as object detection, motion analysis, or video editing.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/data-flair.training\/blogs\/opencv-extract-frames-from-video\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"OpenCV Project - Extract Frames from a Video - DataFlair\" \/>\n<meta property=\"og:description\" content=\"Extracting frames from a video using OpenCV in Python can be a useful technique for a variety of applications, such as object detection, motion analysis, or video editing.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/data-flair.training\/blogs\/opencv-extract-frames-from-video\/\" \/>\n<meta property=\"og:site_name\" content=\"DataFlair\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DataFlairWS\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-01-08T12:30:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-01T06:51:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/12\/OpenCV-Extract-Frames.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"TechVidvan Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:site\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"TechVidvan Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"OpenCV Project - Extract Frames from a Video - DataFlair","description":"Extracting frames from a video using OpenCV in Python can be a useful technique for a variety of applications, such as object detection, motion analysis, or video editing.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/data-flair.training\/blogs\/opencv-extract-frames-from-video\/","og_locale":"en_US","og_type":"article","og_title":"OpenCV Project - Extract Frames from a Video - DataFlair","og_description":"Extracting frames from a video using OpenCV in Python can be a useful technique for a variety of applications, such as object detection, motion analysis, or video editing.","og_url":"https:\/\/data-flair.training\/blogs\/opencv-extract-frames-from-video\/","og_site_name":"DataFlair","article_publisher":"https:\/\/www.facebook.com\/DataFlairWS\/","article_published_time":"2024-01-08T12:30:39+00:00","article_modified_time":"2026-06-01T06:51:55+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/12\/OpenCV-Extract-Frames.webp","type":"image\/webp"}],"author":"TechVidvan Team","twitter_card":"summary_large_image","twitter_creator":"@DataFlairWS","twitter_site":"@DataFlairWS","twitter_misc":{"Written by":"TechVidvan Team","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/data-flair.training\/blogs\/opencv-extract-frames-from-video\/#article","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/opencv-extract-frames-from-video\/"},"author":{"name":"TechVidvan Team","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/0e594f928e31fc96628ac40f6ae74f49"},"headline":"OpenCV Project &#8211; Extract Frames from a Video","datePublished":"2024-01-08T12:30:39+00:00","dateModified":"2026-06-01T06:51:55+00:00","mainEntityOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/opencv-extract-frames-from-video\/"},"wordCount":1410,"commentCount":0,"publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/opencv-extract-frames-from-video\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/12\/OpenCV-Extract-Frames.webp","keywords":["extracting frames from videos using opencv","opencv extract frames project","opencv extracting frames from video","opencv projects","opencv projects ideas","opencv projects practice","python opencv projects"],"articleSection":["OpenCV Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/data-flair.training\/blogs\/opencv-extract-frames-from-video\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/data-flair.training\/blogs\/opencv-extract-frames-from-video\/","url":"https:\/\/data-flair.training\/blogs\/opencv-extract-frames-from-video\/","name":"OpenCV Project - Extract Frames from a Video - DataFlair","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/opencv-extract-frames-from-video\/#primaryimage"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/opencv-extract-frames-from-video\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/12\/OpenCV-Extract-Frames.webp","datePublished":"2024-01-08T12:30:39+00:00","dateModified":"2026-06-01T06:51:55+00:00","description":"Extracting frames from a video using OpenCV in Python can be a useful technique for a variety of applications, such as object detection, motion analysis, or video editing.","breadcrumb":{"@id":"https:\/\/data-flair.training\/blogs\/opencv-extract-frames-from-video\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/data-flair.training\/blogs\/opencv-extract-frames-from-video\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/opencv-extract-frames-from-video\/#primaryimage","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/12\/OpenCV-Extract-Frames.webp","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/12\/OpenCV-Extract-Frames.webp","width":1200,"height":628,"caption":"OpenCV Extract Frames"},{"@type":"BreadcrumbList","@id":"https:\/\/data-flair.training\/blogs\/opencv-extract-frames-from-video\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog Home","item":"https:\/\/data-flair.training\/blogs\/"},{"@type":"ListItem","position":2,"name":"OpenCV Tutorials","item":"https:\/\/data-flair.training\/blogs\/category\/opencv-tutorials\/"},{"@type":"ListItem","position":3,"name":"OpenCV Project &#8211; Extract Frames from a Video"}]},{"@type":"WebSite","@id":"https:\/\/data-flair.training\/blogs\/#website","url":"https:\/\/data-flair.training\/blogs\/","name":"DataFlair","description":"Learn Today. Lead Tomorrow.","publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/data-flair.training\/blogs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/data-flair.training\/blogs\/#organization","name":"DataFlair","url":"https:\/\/data-flair.training\/blogs\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","width":106,"height":48,"caption":"DataFlair"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/DataFlairWS\/","https:\/\/x.com\/DataFlairWS","https:\/\/www.linkedin.com\/company\/dataflair-web-services-pvt-ltd\/","https:\/\/www.youtube.com\/user\/DataFlairWS"]},{"@type":"Person","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/0e594f928e31fc96628ac40f6ae74f49","name":"TechVidvan Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c89190da3d4010c71ba476b618ab10fdc2335c82cdfa0ad5002d98d0f2473444?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c89190da3d4010c71ba476b618ab10fdc2335c82cdfa0ad5002d98d0f2473444?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c89190da3d4010c71ba476b618ab10fdc2335c82cdfa0ad5002d98d0f2473444?s=96&d=mm&r=g","caption":"TechVidvan Team"},"description":"TechVidvan Team provides high-quality content &amp; courses on AI, ML, Data Science, Data Engineering, Data Analytics, programming, Python, DSA, Android, Flutter, full stack web dev, MERN, and many latest technology.","url":"https:\/\/data-flair.training\/blogs\/author\/test001\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/115246","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/users\/86671"}],"replies":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/comments?post=115246"}],"version-history":[{"count":7,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/115246\/revisions"}],"predecessor-version":[{"id":148605,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/115246\/revisions\/148605"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media\/131954"}],"wp:attachment":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media?parent=115246"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/categories?post=115246"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/tags?post=115246"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}