VideoHelp Forum
+ Reply to Thread
Results 1 to 28 of 28
Thread
  1. Member
    Join Date
    Nov 2020
    Location
    India
    Search Comp PM
    Let me be frank. I understand SoX seems a powerful software. But don't know how to use it being command line program. Tried with sample commands. Nothing works out.Issues as below.

    1) SoX when tried to load just flash off and exit. Even if tried to open 'cmd' window, drag and drop SoX it gets loaded but not works if I try with commands.
    2) One more prog. wget.exe gets installed with SoX but don't know what to do with it?

    My requirement
    1) I have wave stereo Audio named Aayiram Malargale_Saregama in desktop. Want to convert this to 6 monowaves FL,FR,C,RL,RR,LFE. The file itself not getting loaded & SoX throws so many errors. Unable to understand. How to go about it?

    Can someone help?
    Quote Quote  
  2. users currently on my ignore list: deadrats, Stears555
    Quote Quote  
  3. Member
    Join Date
    Nov 2020
    Location
    India
    Search Comp PM
    I already saw that link. Based on that only I tried. Afterwards only my post.In that I don't understand command below front left. I mean what to be filled in --dither something in all those spaces. And whatever I do it does not recognize though my SoX Shortcut & file I want to convert is in Desktop giving some syntax error,file loaction error all those. That's why I gave my file name, exact location so that someone can frame exact command & I can try.
    Quote Quote  
  4. Member
    Join Date
    Nov 2020
    Location
    India
    Search Comp PM
    Not only tried as per above. Also as per below guidelines someone posted in net that too tips taken from this forum only. That too didn't work.So totally confused how to use SoX.upmixing a stereo file to 5.1 audio with sox
    Input: a stereo audio file (L+R)

    Output: a 6-channel audio file in 5.1(side) layout (FL+FR+FC+LFE+SL+SR)

    This is a simplified process, using just sox command line, to generate a 5.1 audio file.

    Step 1: Front left & right channel
    we just copy the left and right channel into the first two channels FR + FL.
    sox input.wav temp_flfr.wav
    Optionally, we could normalize the volume, use 24 bit sampling at 48KHz
    sox input.wav temp_flfr.wav -b 24 -r 48000 gain -n -3 (normalize to -3 dB)
    Step 2: LFE channel (Low frequency/subwoofer)
    we take only the frequencies under 120 Hz for the subwoofer
    sox temp_flfr.wav temp_lfr.wav remix 1,2 lowpass 120
    Step 3: center channel (voice)
    there are sophisticated ways to take only the voice out of a recording, but since we only have sox at our disposal, we will just filter out the human voice frequencies 300-3500 Hz
    sox temp_flfr.wav temp_c.wav remix 1,2 highpass 300 lowpass 3500
    Step 4: surround channels
    the simplest solution is to just use the L+R input but less loud
    sox temp_flfr.wav temp_slsr.wav gain -6
    a more sophisticated version would use a bit of the ‘oops’ effect and add some delay
    sox temp_flfr.wav temp_slsr.wav remix 1v-0.8718,2v0.4898 1v0.4898,2v-0.8718 delay 0.15
    Step 5: merge all channels together
    sox has a very simple merge syntax
    sox -M temp_flfr.wav temp_c.wav temp_lfr.wav temp_slsr.wav output51.wav
    Quote Quote  
  5. Try my Clever Ffmpeg-GUI, load your 2ch wav as source, audio conversion, continue, set as output ac3, 448k, 48kHz, set channels 2 to 5.1, click convert. Done.
    Quote Quote  
  6. Member
    Join Date
    Nov 2020
    Location
    India
    Search Comp PM
    Thank You. Yours will convert to AC3 5.1 DD directly. In case I need to convert to DTS? I think for that also may be some short way.

    But I want first 6 mono files. In that especially in Rear Left & Right I want to totally reduce vocals, boost music & then want to remix all 6 files both in DD & DTS.

    The reason being all direct conversions to AC3 5.1 or DTS except, if you go for high cost paid soft wares (I don't know about yours above let me try) gives almost equal volume in all 5 channels including vocals which is not so pleasing as individually processed ones. In fact vocals should be high only in center which you know.

    So let me give a way first to split stereo to 6 mono (with center vocal boosted & surrounds music boosted) & test their sound quality for upmix to 5.1.
    Quote Quote  
  7. Member
    Join Date
    Nov 2020
    Location
    India
    Search Comp PM
    Originally Posted by ProWo View Post
    Try my Clever Ffmpeg-GUI, load your 2ch wav as source, audio conversion, continue, set as output ac3, 448k, 48kHz, set channels 2 to 5.1, click convert. Done.
    I tried above your software. Shows the attached error & keeps on analysing the file. It is a wave stereo audio file.
    Image Attached Thumbnails Clever Error.pdf  

    Quote Quote  
  8. Post a 10 sec sample of your wav here
    Quote Quote  
  9. Member
    Join Date
    Nov 2020
    Location
    India
    Search Comp PM
    [QUOTE=ProWo;2601318]Post a 10 sec sample of your wav here[/QU

    I have uploaded 15 second sample. Pls.check
    Image Attached Files
    Quote Quote  
  10. Originally Posted by Veda View Post
    Originally Posted by ProWo View Post
    Post a 10 sec sample of your wav here
    I have uploaded 15 second sample. Pls.check
    Opens without issues here. This is the converted sample.
    NB. Your system has .NET 4.6 installed?
    Image Attached Files
    Quote Quote  
  11. Member
    Join Date
    Nov 2020
    Location
    India
    Search Comp PM
    Originally Posted by ProWo View Post
    Originally Posted by Veda View Post
    Originally Posted by ProWo View Post
    Post a 10 sec sample of your wav here
    I have uploaded 15 second sample. Pls.check
    Opens without issues here. This is the converted sample.
    NB. Your system has .NET 4.6 installed?
    Thank You. But do you mean/say NET 4.6 should be installed in my Laptop? Mine Windows 10. Is it required & available for download & install?
    Quote Quote  
  12. Search for Programs & Features, activate or disactivate features (on the left): See, what .NET Framework is listed and if it's activated. If not, check it and activate .net. All versions >= 4.6 are fine.
    Then try to load any mp4/mkv video into clever FFmpeg-GUI. If works, then your system is ok.
    Last edited by ProWo; 17th Nov 2020 at 11:00. Reason: typo
    Quote Quote  
  13. Member
    Join Date
    Nov 2020
    Location
    India
    Search Comp PM
    Originally Posted by ProWo View Post
    Search for Programs & Features, activate or disactivate features (on the left): See, what .NET Framework is listed and if it's activated. If not, check it and activate .net. All versions >= 4.6 are fine.
    Then try to load any mp4/mkv video into clever FFmpeg-GUI. If works, the your system is ok.
    Checked .NET Framework 4.8 installed already.
    Tried to load mp4 file.Same error creeps in. Copied error details and given below. May be it can help youSee the end of this message for details on invoking
    just-in-time (JIT) debugging instead of this dialog box.

    ************** Exception Text **************
    System.ComponentModel.Win32Exception (0x80004005): The system cannot find the file specified
    at System.Diagnostics.Process.StartWithCreateProcess( ProcessStartInfo startInfo)
    at clever_FFmpeg_GUI.Module1.ShowVideoTracks()
    at clever_FFmpeg_GUI.Form2.Show_Tracks()
    at clever_FFmpeg_GUI.Form2.Button2_Click(Object sender, EventArgs e)
    at System.Windows.Forms.Control.OnClick(EventArgs e)
    at System.Windows.Forms.Button.OnClick(EventArgs e)
    at System.Windows.Forms.Button.OnMouseUp(MouseEventAr gs mevent)
    at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
    at System.Windows.Forms.Control.WndProc(Message& m)
    at System.Windows.Forms.ButtonBase.WndProc(Message& m)
    at System.Windows.Forms.Button.WndProc(Message& m)
    at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


    ************** Loaded Assemblies **************
    mscorlib
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.4250.0 built by: NET48REL1LAST_C
    CodeBase: file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/mscorlib.dll
    ----------------------------------------
    clever FFmpeg GUI
    Assembly Version: 1.0.0.0
    Win32 Version: 2.6.8
    CodeBase: file:///C:/Program%20Files%20(x86)/clever%20FFmpeg%20GUI.exe
    ----------------------------------------
    Microsoft.VisualBasic
    Assembly Version: 10.0.0.0
    Win32 Version: 14.8.3752.0 built by: NET48REL1
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualBasic/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll
    ----------------------------------------
    System
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.4200.0 built by: NET48REL1LAST_C
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
    ----------------------------------------
    System.Core
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.4270.0 built by: NET48REL1LAST_C
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
    ----------------------------------------
    System.Windows.Forms
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.4270.0 built by: NET48REL1LAST_C
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
    ----------------------------------------
    System.Drawing
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.3752.0 built by: NET48REL1
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
    ----------------------------------------
    System.Configuration
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.4190.0 built by: NET48REL1LAST_B
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
    ----------------------------------------
    System.Xml
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.3752.0 built by: NET48REL1
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
    ----------------------------------------
    System.Runtime.Remoting
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.3752.0 built by: NET48REL1
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Remoting/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll
    ----------------------------------------

    ************** JIT Debugging **************
    To enable just-in-time (JIT) debugging, the .config file for this
    application or computer (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.

    For example:

    <configuration>
    <system.windows.forms jitDebugging="true" />
    </configuration>

    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the computer
    rather than be handled by this dialog box.
    Quote Quote  
  14. Your system is 32bit or 64bit?
    Do you have the right version of clever FFmpeg-GUI for your system?
    Do you have the right ffmpeg version for your system?
    Delete this folder (it will be created again automatically):
    C:\Users\xxx\AppData\Local\clever_FFmpeg_GUI (where xxx=your user name on windows).
    Then restart clever FFmpeg-GUI.
    Last edited by ProWo; 17th Nov 2020 at 12:18. Reason: typo
    Quote Quote  
  15. Member
    Join Date
    Nov 2020
    Location
    India
    Search Comp PM
    Originally Posted by ProWo View Post
    Your system is 32bit or 64bit?
    Do you have the right version of clever FFmpeg-GUI for your system?
    Do you have the right ffmpeg version for your system?
    Delete this folder (it will be created again automatically):
    C:\Users\xxx\AppData\Local\clever_FFmpeg_GUI (where xxx=your user name on windows).
    The restart clever FFmpeg-GUI.
    My system 64 bit & Installed ffmpeg 4.3.1 for win64 static. But throws same error
    Quote Quote  
  16. You need the Microsoft Visual C++ Redistributable for Visual Studio 2015, 2017 und 2019
    https://aka.ms/vs/16/release/vc_redist.x64.exe

    Download and install it.
    Quote Quote  
  17. Member
    Join Date
    Nov 2020
    Location
    India
    Search Comp PM
    Originally Posted by ProWo View Post
    You need the Microsoft Visual C++ Redistributable for Visual Studio 2015, 2017 und 2019
    https://aka.ms/vs/16/release/vc_redist.x64.exe

    Download and install it.
    See the end of this message for details on invoking
    just-in-time (JIT) debugging instead of this dialog box.

    ************** Exception Text **************
    System.ComponentModel.Win32Exception (0x80004005): The system cannot find the file specified
    at System.Diagnostics.Process.StartWithCreateProcess( ProcessStartInfo startInfo)
    at clever_FFmpeg_GUI.Module1.ShowVideoTracks()
    at clever_FFmpeg_GUI.Form2.Show_Tracks()
    at clever_FFmpeg_GUI.Form2.Button2_Click(Object sender, EventArgs e)
    at System.Windows.Forms.Control.OnClick(EventArgs e)
    at System.Windows.Forms.Button.OnClick(EventArgs e)
    at System.Windows.Forms.Button.OnMouseUp(MouseEventAr gs mevent)
    at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
    at System.Windows.Forms.Control.WndProc(Message& m)
    at System.Windows.Forms.ButtonBase.WndProc(Message& m)
    at System.Windows.Forms.Button.WndProc(Message& m)
    at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


    ************** Loaded Assemblies **************
    mscorlib
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.4250.0 built by: NET48REL1LAST_C
    CodeBase: file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/mscorlib.dll
    ----------------------------------------
    clever FFmpeg GUI
    Assembly Version: 1.0.0.0
    Win32 Version: 2.6.8
    CodeBase: file:///C:/Program%20Files%20(x86)/clever%20FFmpeg%20GUI.exe
    ----------------------------------------
    Microsoft.VisualBasic
    Assembly Version: 10.0.0.0
    Win32 Version: 14.8.3752.0 built by: NET48REL1
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualBasic/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll
    ----------------------------------------
    System
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.4200.0 built by: NET48REL1LAST_C
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
    ----------------------------------------
    System.Core
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.4270.0 built by: NET48REL1LAST_C
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
    ----------------------------------------
    System.Windows.Forms
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.4270.0 built by: NET48REL1LAST_C
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
    ----------------------------------------
    System.Drawing
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.3752.0 built by: NET48REL1
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
    ----------------------------------------
    System.Configuration
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.4190.0 built by: NET48REL1LAST_B
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
    ----------------------------------------
    System.Xml
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.3752.0 built by: NET48REL1
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
    ----------------------------------------
    System.Runtime.Remoting
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.3752.0 built by: NET48REL1
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Remoting/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll
    ----------------------------------------

    ************** JIT Debugging **************
    To enable just-in-time (JIT) debugging, the .config file for this
    application or computer (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.

    For example:

    <configuration>
    <system.windows.forms jitDebugging="true" />
    </configuration>

    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the computer
    rather than be handled by this dialog box.




    After installing above & restarting below is the error details generated.
    Quote Quote  
  18. Member
    Join Date
    Nov 2020
    Location
    India
    Search Comp PM
    Sorry for keep on disturbing you informing not working. I have a feeling it is not working in 64 bit system. You can try out
    Quote Quote  
  19. You are using the 32bit version of clever Ffmpeg-GUI. Use the 64bit version instead.
    Quote Quote  
  20. Member
    Join Date
    Nov 2020
    Location
    India
    Search Comp PM
    Originally Posted by ProWo View Post
    You are using the 32bit version of clever Ffmpeg-GUI. Use the 64bit version instead.
    No. Using only 64 bit. Anyhow since you said removed 32 bit, reinstalled 64 bit & tried. Again same error. Below is error log.

    See the end of this message for details on invoking
    just-in-time (JIT) debugging instead of this dialog box.

    ************** Exception Text **************
    System.ComponentModel.Win32Exception (0x80004005): The system cannot find the file specified
    at System.Diagnostics.Process.StartWithCreateProcess( ProcessStartInfo startInfo)
    at clever_FFmpeg_GUI.Module1.ShowVideoTracks()
    at clever_FFmpeg_GUI.Form2.Show_Tracks()
    at clever_FFmpeg_GUI.Form2.Button2_Click(Object sender, EventArgs e)
    at System.Windows.Forms.Control.OnClick(EventArgs e)
    at System.Windows.Forms.Button.OnClick(EventArgs e)
    at System.Windows.Forms.Button.OnMouseUp(MouseEventAr gs mevent)
    at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
    at System.Windows.Forms.Control.WndProc(Message& m)
    at System.Windows.Forms.ButtonBase.WndProc(Message& m)
    at System.Windows.Forms.Button.WndProc(Message& m)
    at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


    ************** Loaded Assemblies **************
    mscorlib
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.4250.0 built by: NET48REL1LAST_C
    CodeBase: file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/mscorlib.dll
    ----------------------------------------
    clever FFmpeg GUI
    Assembly Version: 1.0.0.0
    Win32 Version: 2.6.8
    CodeBase: file:///C:/Program%20Files/x64/clever%20FFmpeg%20GUI.exe
    ----------------------------------------
    Microsoft.VisualBasic
    Assembly Version: 10.0.0.0
    Win32 Version: 14.8.3752.0 built by: NET48REL1
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualBasic/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll
    ----------------------------------------
    System
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.4200.0 built by: NET48REL1LAST_C
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
    ----------------------------------------
    System.Core
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.4270.0 built by: NET48REL1LAST_C
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
    ----------------------------------------
    System.Windows.Forms
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.4270.0 built by: NET48REL1LAST_C
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
    ----------------------------------------
    System.Drawing
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.3752.0 built by: NET48REL1
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
    ----------------------------------------
    System.Configuration
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.4190.0 built by: NET48REL1LAST_B
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
    ----------------------------------------
    System.Xml
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.3752.0 built by: NET48REL1
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
    ----------------------------------------
    System.Runtime.Remoting
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.3752.0 built by: NET48REL1
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Remoting/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll
    ----------------------------------------

    ************** JIT Debugging **************
    To enable just-in-time (JIT) debugging, the .config file for this
    application or computer (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.

    For example:

    <configuration>
    <system.windows.forms jitDebugging="true" />
    </configuration>

    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the computer
    rather than be handled by this dialog box.


    Anyhow since you said removes 32 bit, reinstalled 64 bit & tried. Again same error. Below is error log.
    Quote Quote  
  21. ************** Loaded Assemblies **************
    mscorlib
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.4250.0 built by: NET48REL1LAST_C
    CodeBase: file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/mscorlib.dll
    ----------------------------------------
    This looks like your system uses a 32bit assembly.
    Are you sure that your computer:
    uses a 64bit CPU (not ARM),
    uses a 64bit Windows 10 operating system?
    Quote Quote  
  22. @Admin
    delete, please
    Quote Quote  
  23. Member
    Join Date
    Nov 2020
    Location
    India
    Search Comp PM
    Originally Posted by ProWo View Post
    ************** Loaded Assemblies **************
    mscorlib
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.4250.0 built by: NET48REL1LAST_C
    CodeBase: file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/mscorlib.dll
    ----------------------------------------
    This looks like your system uses a 32bit assembly.
    Are you sure that your computer:
    uses a 64bit CPU (not ARM),
    uses a 64bit Windows 10 operating system?
    I have attached my system details screen shot. It is 64 bit with 64 bit processor
    Image Attached Thumbnails System Details.pdf  

    Quote Quote  
  24. Member
    Join Date
    Nov 2020
    Location
    India
    Search Comp PM
    Originally Posted by ProWo View Post
    @Admin
    delete, please
    Don't understand. What you want me to delete?
    Quote Quote  
  25. Member
    Join Date
    Nov 2020
    Location
    India
    Search Comp PM
    Originally Posted by ProWo View Post
    After updating/repairing as per above below is error log

    See the end of this message for details on invoking
    just-in-time (JIT) debugging instead of this dialog box.

    ************** Exception Text **************
    System.ComponentModel.Win32Exception (0x80004005): The system cannot find the file specified
    at System.Diagnostics.Process.StartWithCreateProcess( ProcessStartInfo startInfo)
    at clever_FFmpeg_GUI.Module1.ShowVideoTracks()
    at clever_FFmpeg_GUI.Form2.Show_Tracks()
    at clever_FFmpeg_GUI.Form2.Button2_Click(Object sender, EventArgs e)
    at System.Windows.Forms.Control.OnClick(EventArgs e)
    at System.Windows.Forms.Button.OnClick(EventArgs e)
    at System.Windows.Forms.Button.OnMouseUp(MouseEventAr gs mevent)
    at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
    at System.Windows.Forms.Control.WndProc(Message& m)
    at System.Windows.Forms.ButtonBase.WndProc(Message& m)
    at System.Windows.Forms.Button.WndProc(Message& m)
    at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


    ************** Loaded Assemblies **************
    mscorlib
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.4250.0 built by: NET48REL1LAST_C
    CodeBase: file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/mscorlib.dll
    ----------------------------------------
    clever FFmpeg GUI
    Assembly Version: 1.0.0.0
    Win32 Version: 2.6.8
    CodeBase: file:///C:/Program%20Files/x64/clever%20FFmpeg%20GUI.exe
    ----------------------------------------
    Microsoft.VisualBasic
    Assembly Version: 10.0.0.0
    Win32 Version: 14.8.3752.0 built by: NET48REL1
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualBasic/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll
    ----------------------------------------
    System
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.4200.0 built by: NET48REL1LAST_C
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
    ----------------------------------------
    System.Core
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.4270.0 built by: NET48REL1LAST_C
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
    ----------------------------------------
    System.Windows.Forms
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.4270.0 built by: NET48REL1LAST_C
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
    ----------------------------------------
    System.Drawing
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.3752.0 built by: NET48REL1
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
    ----------------------------------------
    System.Configuration
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.4190.0 built by: NET48REL1LAST_B
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
    ----------------------------------------
    System.Xml
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.3752.0 built by: NET48REL1
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
    ----------------------------------------
    System.Runtime.Remoting
    Assembly Version: 4.0.0.0
    Win32 Version: 4.8.3752.0 built by: NET48REL1
    CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Remoting/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll
    ----------------------------------------

    ************** JIT Debugging **************
    To enable just-in-time (JIT) debugging, the .config file for this
    application or computer (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.

    For example:

    <configuration>
    <system.windows.forms jitDebugging="true" />
    </configuration>

    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the computer
    rather than be handled by this dialog box.
    Quote Quote  
  26. Im sorry, no other idea. Maybe you can test it on another computer...
    Quote Quote  
  27. I have done further research. The specified error may occur if the source file is not found. Is the entire path to the file too long? Try moving the source file to a short path (e.g. D:\) and try again.
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!