This app has REVOLUTIONIZED my productivity... - pyWinContext Tutorial [WINDOWS 10 Context Menu]

แชร์
ฝัง
  • เผยแพร่เมื่อ 6 ต.ค. 2024

ความคิดเห็น • 80

  • @EposVox
    @EposVox  6 ปีที่แล้ว +16

    I'm an idiot and didn't put the commands in the description. They're there now, but also here:
    ★★ FFMPEG COMMANDS★★
    H265 Nvenc conversion 420
    ffmpeg -i "%~1" -c:v hevc_nvenc -pix_fmt yuv420p -c:a aac -b:v 100000k -maxrate:v 200000k -b:a 320k "%~dnp1.mp4"
    VP9 Transcode
    ffmpeg -i "%~1" -c:v libvpx-vp9 -b:v 4000k -c:a libopus -b:a 320k "%~dnp1.webm"
    ProRes 60FPS Lock
    ffmpeg -i "%~1" -vf fps=60 -c:v prores -profile:v 2 -c:a pcm_s16le "%~dnp1.mov"
    ProRes 30FPS lock
    ffmpeg -i "%~1" -vf fps=30 -c:v prores -profile:v 2 -c:a pcm_s16le "%~dnp1.mov"
    Remux MKV/FLV to MP4
    ffmpeg -i "%~1" -map 0 -codec copy "%~dnp1.mp4"
    Convert to GIF
    ffmpeg -i "%~1" -vf "fps=30,palettegen" -y "%~dnp1-palette.png"
    ffmpeg -i "%~1" -i "%~dnp1-palette.png" -lavfi "fps=30 [x]; [x][1:v] paletteuse" -y "%~dnp1.gif"
    del "%~dnp1-palette.png"

    • @nightcaferadio6443
      @nightcaferadio6443 5 ปีที่แล้ว

      to fix the 15 file limitation use this support.microsoft.com/en-au/help/2022295/context-menus-are-shortened-when-more-than-15-files-are-selected

  • @MordecaiWalfish
    @MordecaiWalfish 5 ปีที่แล้ว +2

    That is a super-handy little tool, even for those of us who don't do video editing regularly. Thanks for sharing!

  • @TheMainCharacter
    @TheMainCharacter 6 ปีที่แล้ว +17

    DUDE Taran from Ltt needs to see this

    • @EposVox
      @EposVox  6 ปีที่แล้ว +1

      Send it to him!

  • @Jixaw.
    @Jixaw. 2 ปีที่แล้ว

    thank you for this, what a great tool. cheers!

  • @CoalitionGaming
    @CoalitionGaming 6 ปีที่แล้ว +3

    Had variable framerate issues all the time with working with cell phone recorded footage. For a while, my Galaxy S9e was the only "good" camera I had, and when a VFR would cause problems it was such a pain since I used an adapter to record my standalone mic directly to the smartphone footage (even manually set to 1080p60). Handbrake didn't always seem to fix the issue. This tool will be great not just for what you show it for, but for those using their smartphone cameras for their content too! Good stuff.

    • @JeffBourke
      @JeffBourke 2 ปีที่แล้ว

      smartphone VFR footage is the most demon curse known to man since the days of the dreaded INTERLACED video!!!! lol

  • @acarboni
    @acarboni 6 ปีที่แล้ว

    YEESSSSSSS. I spent so much time looking for a quick and easy way to batch remux mkvs last week. This is wonderful. 🙏🙏🙏

    • @EposVox
      @EposVox  6 ปีที่แล้ว

      :D :D

  • @TheHaggardNerd
    @TheHaggardNerd 6 ปีที่แล้ว +2

    OMG YES this is EXACTLY what I need. Thanks so much for sharing! :-D

    • @EposVox
      @EposVox  6 ปีที่แล้ว +1

      Thanks for watching!

  • @UrikKane
    @UrikKane 6 ปีที่แล้ว +1

    Super handy that I stumbled onto this (actually, it was a never video of yours which mentioned this tool so then I eventually found this one). Been slowly learning some batch tricks and ffmpeg usage for the past year, but so far I just used the "drag and drop onto batch file" method and "send to" menu. Will defo give this a try.
    By the way, %1 and "%~1" is the same, the ~ in %~1 removed the surrounding " " marks, so if %1 is "E:\myvideo.mp4" then %~1 becomes E:\myvideo.mp4 (which is no good if there are spaces in the path; hence the need for quotes). d, n and p are idioms that extract disk letter, name and path from the string, those things can be useful for changing something in the string, in your case, it gets rid of the extension (because x is omitted there, with extension it would be ~dpnx) so that fixed extension is added.

  • @TechnicalGamingChannel
    @TechnicalGamingChannel 6 ปีที่แล้ว +1

    Preset files that add various commands and stuff would be a fantastic addition to this. This could be the OBS of context menus, lol.

  • @variananora
    @variananora 6 ปีที่แล้ว +2

    WOAAHHH! This is gonna change my life.

    • @EposVox
      @EposVox  6 ปีที่แล้ว

      YEAH!

  • @bloodywolftr
    @bloodywolftr 2 ปีที่แล้ว

    Very useful thanks for the review

  • @MovieMation
    @MovieMation 6 ปีที่แล้ว +1

    This is great, thanks for sharing it!

  • @zinsy23
    @zinsy23 6 ปีที่แล้ว +1

    I've seen that 15 file limitation for other things in Windows. I think that's a limitation within explorer itself. I'm sure you'll notice that with other things in the context menu besides that, like open with, using the same file type for example.
    BTW, I didn't know that FFmpeg had that much functionality with the command line. I've only used it to open MP4 audio with audacity, thanks for showing me this! I'm going to see what I can come up with and I'll let you know if I find something really useful that I think you'll like!

    • @EposVox
      @EposVox  6 ปีที่แล้ว +1

      It's just weird that some context menu items stay but others don't.
      But please do share!

  • @PMK94
    @PMK94 6 ปีที่แล้ว

    Really cool little tool there. I've taken to making a bash script for whatever codec I need to transcode to (prores and HEVC mostly), but it'd still be nice to have something like this on Linux.
    Hell, if I knew more about coding, it's something I'd look into doing myself.

    • @PMK94
      @PMK94 6 ปีที่แล้ว

      I remembered shortly after posting that WinFF is a thing. Might actually work well enough for those on Linux

  • @workbirdygaming
    @workbirdygaming 6 ปีที่แล้ว

    Your ch is amazing thank you so much!!

    • @EposVox
      @EposVox  6 ปีที่แล้ว +1

      Thanks!

  • @MeiteiReviews
    @MeiteiReviews 6 ปีที่แล้ว

    Love it, thx 4 sharing :)!

    • @EposVox
      @EposVox  6 ปีที่แล้ว +1

      Thanks for watching!

  • @n1kobg
    @n1kobg 6 ปีที่แล้ว +1

    THERE IS A TWEAK THAT YOU CAN USE MORE THAN 15 FILES. SEARCH GOOGLE FOR REGISTRY TWEAKS. Its Windows limitation. I have it somewhere in my files. Ill post it if i remember to find it. Cool App

  • @PreferableLife
    @PreferableLife 5 ปีที่แล้ว

    Baller!

  • @DVZNMedia
    @DVZNMedia 6 ปีที่แล้ว

    downloading this now

  • @DarthXionGames
    @DarthXionGames 6 ปีที่แล้ว +1

    I tried this out earlier for remuxing mkv>mp4, it looks like a godsend. Unfortunately I'm struggling to get it to work. Any suggestions would be very much appreciated.
    The option is there when I right click, but nothing actually happens, (I did remember to put the command in)! In the brief moment when Command Prompt is open, there is nothing there, which I would guess is the problem, but as i am totally out of my depth here, I have no idea what to do about it!

    • @alexcrane7198
      @alexcrane7198 5 ปีที่แล้ว

      Same, did you figure it out?

    • @richardlighthouse5328
      @richardlighthouse5328 5 ปีที่แล้ว

      After you added command, add another line and add pause
      This way the command prompt will be open and be able to see error message.

  • @Danszerlied
    @Danszerlied ปีที่แล้ว +1

    It won't create the files.

  • @elvizlopezcastro7188
    @elvizlopezcastro7188 6 ปีที่แล้ว

    I love you man

  • @jenks_TV
    @jenks_TV 9 หลายเดือนก่อน

    Remux MKV to MP4 only works for me if there’s not a space in the filename or directory. I thought the quotes around “%~1” would address that. Removing the ~ doesn’t fix it either. Any ideas? For now I’m just avoiding spaces in filenames.

  • @pealock
    @pealock 6 ปีที่แล้ว +1

    How did you get ProRes for Windows?? I’ve looked all around and have had very little luck. Thanks for the video!!

    • @EposVox
      @EposVox  6 ปีที่แล้ว +2

      FFMPEG can encode/decode ProRes, I'm using FFMPEG commands there.

    • @pealock
      @pealock 6 ปีที่แล้ว

      Have you tried AfterCodecs? I have been using it and it works very well. Gives you a workaround to do native ProRes exports from Adobe.

  • @haloboy456
    @haloboy456 5 ปีที่แล้ว

    Hey Epos VOx. Great video, but quick question. I'm on a EVGA 980 w/ 4790K on Coolermaster AOI water, no overclock. When using ProsRes transcoded footage in a project, do you notice a significant slow down in projects? Especially the tracking of adjustment layers while dragging along the timeline, saving the project, or switching editing and color panes. I know you're busy, but many hours on the phone+in chat with Adobe, plus windows reinstall and PPro fresh install doesn't seem to solve the problem, and working with images and adjustment can really slow me down. Any thoughts? I'd literally pay to get your eyes on this as it's impacting my client workflow severely. Mnay thanks, a loyal Epos Voxer

  • @JeffBourke
    @JeffBourke 2 ปีที่แล้ว

    the "%~1" doesn't work for me. command prompt just opens and closes isntantly. If i run ffmpeg from command prompt normally, it works but none of this intergration works

  • @thecringyyoutuber3857
    @thecringyyoutuber3857 4 ปีที่แล้ว

    I have been trying to remux MKV to MP4s for so long, but nothing I do works. It will usually give me the option to remux, yet it does nothing. Pls. Help me.

  • @shankarnatarajan1527
    @shankarnatarajan1527 5 ปีที่แล้ว

    Great info!!! I am looking to convert a jpg sequence in a folder to mov...any suggestions???

  • @peterg6860
    @peterg6860 5 ปีที่แล้ว

    I thought I'd give pyWinContext a try and I've run into a problem when I attempt to use "Convert to GIF" a command prompt opens for less than a second and then closes... and no GIF :( I do have ffmpeg installed I am on the latest build of Windows 1903.
    Any help would be much appreciated.

  • @JeffBourke
    @JeffBourke 2 ปีที่แล้ว

    BUT can you remux to another drive? remuxing to the same drive is...... not correct

    • @EposVox
      @EposVox  2 ปีที่แล้ว

      You CAN yes. There's nothing wrong with remuxing on same drive.

  • @alexcrane7198
    @alexcrane7198 5 ปีที่แล้ว

    Does this still work? I am new to FFMPEG and most of this stuff, used your FLV/MKV preset and I get 0 bytes as a result. Using ffmpeg version 4.1 version.
    Metadata:
    COMPATIBLE_BRANDS: isomiso2avc1mp41
    MAJOR_BRAND : isom
    MINOR_VERSION : 512
    ENCODER : IDMmkvlib0.1
    LANGUAGE : und
    HANDLER_NAME : AudioHandler
    Input #0, matroska,webm, from 'Y:\1.mkv.mkv': Stream #0:0: Video: vp9 (Profile 0), yuv420p(tv, bt709/unknown/unknown), 3840x2160, SAR 1:1 DAR 16:9, 29.97 fps, 29.97 tbr, 1k tbn, 1k tbc (default)
    Stream #0:1: Audio: opus, 48000 Hz, stereo, fltp (default)

    • @EposVox
      @EposVox  5 ปีที่แล้ว

      Sounds like an error somewhere happening. Still works, I use it daily

  • @SianaGearz
    @SianaGearz 6 ปีที่แล้ว +1

    I thought the title would be clickbait or that it would be something entirely irrelevant to me.
    But i guess i should know better by now.

  • @N0N0111
    @N0N0111 6 ปีที่แล้ว

    Can HEVC(H.265) already get main stream ugghh.
    Well AV1 seems to come soon which is loyalty free.

  • @NFForce
    @NFForce 6 ปีที่แล้ว

    hey would you know why when i make the fps lock to 60 my files get way bigger. like my 1.5 gb file turned into 15 gb and went from 40,000 bit rate to like 400,000. Also since i have my mic to export apart from the game audio in shadowplay only one track comes out. Also i get errors and idk what they are. here are the errors imgur.com/a/w2qAc3E. thanks

  • @MeiteiReviews
    @MeiteiReviews 6 ปีที่แล้ว

    When I convert to ProRes 30FPS nothing happens I don't get a new file, and is there a way I can get a mp4? When I add mp4 instead of mov the file has 0KB

    • @EposVox
      @EposVox  6 ปีที่แล้ว +1

      ProRes can't go to a MP4, no. Do you have FFMPEG installed?

    • @MeiteiReviews
      @MeiteiReviews 6 ปีที่แล้ว

      Yes, I have it installed.
      I will look for a way to convert it back to mp4 then, once the commands work for me.
      Or would that cause a quality loss?

    • @MeiteiReviews
      @MeiteiReviews 6 ปีที่แล้ว

      Btw the remux from mkv to mp4 works perfectly for me

  • @TheLTGamer
    @TheLTGamer 6 ปีที่แล้ว

    My .reg file isn't being created. How do I add the features to windows if they don't create the .reg file?

    • @EposVox
      @EposVox  6 ปีที่แล้ว +1

      Direct edit goest direct to the registry. In file edit mode you have to hit file save

    • @TheLTGamer
      @TheLTGamer 6 ปีที่แล้ว

      Thanks yeah that worked! It didn't work before but idk why it did now, xD

  • @thatsabadkitty8975
    @thatsabadkitty8975 6 ปีที่แล้ว

    A shortcut to take a screenshot from a video file might be useful

    • @EposVox
      @EposVox  6 ปีที่แล้ว

      There are commands for that

  • @LoqiCS
    @LoqiCS 6 ปีที่แล้ว

    is 321 video player the best to use?

    • @LoqiCS
      @LoqiCS 6 ปีที่แล้ว

      Also how do u get the video information on the side of the folder at 1:34

  • @perigosu8449
    @perigosu8449 6 ปีที่แล้ว

    mm yea I don't think I speak this language Q_Q is there a way to NOT have variable frame rate to begin with? lol

    • @EposVox
      @EposVox  6 ปีที่แล้ว

      most recording methods aren't VFR, but phone recordings, Nvidia Shadowplay, and native webcam recordings are frequently VFR and nothing can be done about it

    • @perigosu8449
      @perigosu8449 6 ปีที่แล้ว

      EposVox :(

  • @akmal_rafye
    @akmal_rafye 6 ปีที่แล้ว

    Could you please give me tip how to cool down a Graphics Card?
    Hope so, you will reply...
    Thanks

    • @EposVox
      @EposVox  6 ปีที่แล้ว

      Uh. Make sure nothing is blocking its fans? Clean out the dust?

    • @akmal_rafye
      @akmal_rafye 6 ปีที่แล้ว

      Dear, nothing is blocking fans and I used a blower to clear dust.
      I'm using AMD RX 580 8gb Sapphire Nitro+. Its temp while playing Far Cry 5 is 84 Celsius because it couldn't go beyond due to the limit of temp. I think you know about that. So, please tell me how to do that. My ambient temp is about 35-40 Celsius.
      Thanks

    • @EposVox
      @EposVox  6 ปีที่แล้ว

      There's not much to do - unless you've manually lowered fan speed on the GPU somehow, just optimizing airflow in your case is all that one does to keep a graphics card cool. Taking off your side panel could help, heh.
      I mean, you could fully pull off the cooler and remove the old thermal paste, apply new paste, etc. but

    • @akmal_rafye
      @akmal_rafye 6 ปีที่แล้ว

      But?

    • @EposVox
      @EposVox  6 ปีที่แล้ว

      That's more advanced and not something I'm comfortable blindly recommending to someone who has to ask for it as there's always the risk of killing your card

  • @Kaylathebutt
    @Kaylathebutt 6 ปีที่แล้ว

    this is amazing.