ekisu / mpv-webm

Simple WebM maker for mpv, with no external dependencies.
MIT License
555 stars 32 forks source link

fps:10 option #139

Open maggotb opened 2 years ago

maggotb commented 2 years ago

Hello, would it be possible to add a "fps:10" option as right now the lowest is 15 ? thanks

OrangeChannel commented 2 years ago

You can edit your script yourself to add this, if you have the latest release go to line 2387

      local fpsOpts = {
        possibleValues = {
          {
            -1,
            "source"
          },
          {
            15
          },
          {
            24
          },

you can either replace the 15 with 10 or just add another section in between like this

      local fpsOpts = {
        possibleValues = {
          {
            -1,
            "source"
          },
          {
            10
          },
          {
            15
          },
          {
            24
          },
maggotb commented 2 years ago

thanks