Transcode video from Explorer context menu?


  1. Posts : 275
    Windows 10
       #1

    Transcode video from Explorer context menu?


    Is there an app available somewhere to transcode video from the Explorer context menu? I could do with one as much to avoid breaking my concentration by being distracted by opening and configuring another app when I am trying to work on something else, as to save time. Typical use would be to save disk space by converting very large video files of low quality to small files of low quality.
      My Computer


  2. Posts : 31,666
    10 Home x64 (22H2) (10 Pro on 2nd pc)
       #2

    If you have an app that can do the transcoding, you can add it to the 'Send to...' context menu.
    You just put a shortcut to it in the %AppData%\Microsoft\Windows\SendTo folder.


    That would at least open it in you preferred app and save some time. If your app accepts command line switches you may even be able to configure the compression setting too - not sure how you'd configure where it would put the output file though. It very much depends on what third-party app you want to use - Windows doesn't have one of its own.
      My Computers


  3. Posts : 42,989
    Win 10 Pro (22H2) (2nd PC is 22H2)
       #3

    File Converter Alternatives and Similar Software - AlternativeTo.net

    Transcode video from Explorer context menu?-1.jpg
    Transcode video from Explorer context menu?-2.jpg
    Transcode video from Explorer context menu?-3.jpg

    However it may not be the fastest- the fastest use CUDA and employ your graphics card too.

    More possibilities here:
    Open Source XMedia Recode Alternatives - AlternativeTo.net
      My Computers


  4. Posts : 31,666
    10 Home x64 (22H2) (10 Pro on 2nd pc)
       #4

    For a 'home made' solution, are you familiar with FFmpeg? It's probably the best open source command line utility for video processing. I use is so much I have added it to my %PATH% environment so I can uses it from anywhere I can open a command prompt.

    I've just written a .bat file with my most commonly use compression settings in it, put in in my 'C:\Program Files\FFmpeg' folder, and added a shortcut to it in the SendTo folder. It will ask you where to save to and what output filename to use, but then it just goes and compresses the video. If it's of use to you, copy and paste this into Notepad and save it as a .bat

    Code:
    @echo off
    echo full path to output folder required . . .
    echo example:  C:\TEMP 
    set /p out_path="path to save to?  : "
    echo Name (no spaces allowed) with an .mp4 extension required . . . 
    example:  my_video.mp4 
    set /p out_file="save as filename? : "
    echo compressing %1 to %out_file% in %out_path%
    choice /m "Continue with this video compression?"
    if ERRORLEVEL 2 goto eof
    ffmpeg -i %1 -crf 28 -preset veryslow -tune film %out_path%\%out_file%
    pause
    Transcode video from Explorer context menu?-custom-sendto.png

    Then type the path, filename, and Y to confirm (or N to abort).

    Transcode video from Explorer context menu?-custom-sendto-2.png

    FFmpeg can accept almost any video format as input, in this example the output must be mp4 because that is what the preconfigured compression options are intended for.
    Last edited by Bree; 24 Oct 2017 at 12:52. Reason: screenshot
      My Computers


  5. Posts : 275
    Windows 10
    Thread Starter
       #5

    Thanks very much for your replies and information!

    Dalchina, File Converter is exactly what I was looking for.
      My Computer


  6. Posts : 42,989
    Win 10 Pro (22H2) (2nd PC is 22H2)
       #6

    You're welcome..
      My Computers


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 14:36.
Find Us




Windows 10 Forums