Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7777153
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T18:03:57+00:00 2026-06-01T18:03:57+00:00

I am looking for some library or code that will allow me to convert

  • 0

I am looking for some library or code that will allow me to convert mp4 video to mp3.
I want it to be for free and compatible with the latest .NET framework (4).

Also, if possible, I am looking for a free ffmpeg wrapper than I can have in my vb.net application without trial or messageboxes.

If there is no free ffmpeg wrapper, can someone show me how to perform the conversion from mp4 to mp3 using command line and ffmpeg ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T18:03:58+00:00Added an answer on June 1, 2026 at 6:03 pm

    You can use the following code to process / execute ffmpeg command in vb.net.

     Dim _out As String = ""
     Dim _process As New Process()
     _process.StartInfo.UseShellExecute = False
     _process.StartInfo.RedirectStandardInput = True
     _process.StartInfo.RedirectStandardOutput = True
     _process.StartInfo.RedirectStandardError = True
     _process.StartInfo.CreateNoWindow = True
     _process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden
     _process.StartInfo.FileName = "ffmpeg";
     _process.StartInfo.Arguments = " -i input.mp4 -vn -f mp3 -ab 192k output.mp3";
     _process.Start()
     _process.StandardOutput.ReadToEnd()
     _out = _process.StandardError.ReadToEnd()
     _process.WaitForExit()
     If Not _process.HasExited Then
        _process.Kill()
     End If
     Return _out
    

    In result you will receive ffmpeg output and mp3 audio file. For better encoding performance and parsing ffmpeg output i recommend using ffmpeg wrapper http://www.mediasoftpro.com/media-handler-pro.html

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm looking for a library that will disassemble x86 code into some sort of
I'm looking for a library that will do some pre-validation functions on my input
I've spent some time today looking for a pure ruby library that will parse
I am looking for a free .NET OCR library that will be able to
What I'm looking for specifically is some code in Java that will take a
I'm looking for a class or a library or anything that will allow me
I am looking for a library/API that has some out of the box data
I'm cleaning up some pretty complicated code that I didn't write and I'm looking
I am looking at some JS ViewModel code that uses this pattern to be
I'm looking for some stand alone library to access NFS shares. I am not

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.