-
Get Started
-
Website
-
Embeddables
-
Courses
-
Bundles
-
Batch
-
Code
-
Product Settings
-
Product Pricing
-
Mock test
-
Test Series
-
Ebooks
-
Podcasts
-
Webinars
-
Digital Products
-
Free Resource
-
Telegram
-
Learner Management
-
Quiz & Assessment
-
Question Pool
-
Test Evaluation
-
Reports
-
Marketing
-
Forms
-
Workflows
-
CTA
-
Campaign
-
Integrations
-
Roles and Permissions
-
School Settings
-
Sub School
-
Ratings and Reviews
-
Learner Discussion
-
Mobile Apps
-
Zoom integration
-
Newsfeed
-
FAQs
-
Troubleshooting
-
Support
-
Content Security
-
Legacy Website Builder
How to add silent audio track to videos
If you upload a video without an audio file, it will not get processed. For the video to get processed, you need to add a dummy silent audio track. To add a dummy silent audio track to a video you can follow the below steps:
-
Download ffmpeg software from https://www.ffmpeg.org/download.html depending on the OS (Operating System) you are using.
-
Install the ffmpeg software.
-
Use this command to add silent track:
Download ffmpeg software from https://www.ffmpeg.org/download.html depending on the OS (Operating System) you are using.
Install the ffmpeg software.
Use this command to add silent track:
ffmpeg -i input.mp4 -f lavfi -i anullsrc -c:v copy -c:a aac -shortest output.mp4
Wherein,
input.mp4->This is input file without audio track in .mp4 format.
output.mp4->This is output file containing silent audio track in .mp4 format.