Skip to content

Commit

Permalink
v3.1.2
Browse files Browse the repository at this point in the history
* New method of calculating per-encode and cumulative disk usage change
* Calculated values are more accurate now - using a 1024 base
instead of 1000
* Closes issue #27
* Removed unnecessary whitespace
  • Loading branch information
BrianDMG authored Oct 25, 2017
1 parent a564cf1 commit e2d238b
Show file tree
Hide file tree
Showing 3 changed files with 157 additions and 157 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ Python version can be found here: <a href="https://github.com/BrianDMG/conv2mp4-

### **[Usage](docs/USAGE.md)**

### **[Scheduled task example](docs/SCHEDULED_TASK.md)**
### **[Scheduled task example](docs/SCHEDULED_TASK.md)**
10 changes: 6 additions & 4 deletions cfg_conv2mp4-ps.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<#======================================================================================================================
cfg_conv2mp4-ps v3.1.1 RELEASE - https://github.com/BrianDMG/conv2mp4-ps
cfg_conv2mp4-ps v3.1.2 RELEASE - https://github.com/BrianDMG/conv2mp4-ps
This script stores user-defined variables for use by conv2mp4-ps.ps1.
========================================================================================================================
Dependencies:
Expand All @@ -20,14 +20,16 @@ $logName = the filename of the log file
$usePlex = If set to $True, Plex settings will be used. Set to $False if Plex feature is not needed
$plexIP = the IP address and port of your Plex server (for the purpose of refreshing its libraries)
$plexToken = your Plex server's token (for the purpose of refreshing its libraries).
NOTE: Plex server token - See https://support.plex.tv/hc/en-us/articles/204059436-Finding-your-account-token-X-Plex-Token. Plex server token is also easy to retrieve with PlexPy, Ombi, Couchpotato, or SickRage.
NOTE: Plex server token - See https://support.plex.tv/hc/en-us/articles/204059436-Finding-your-account-token-X-Plex-Token.
Plex server token is also easy to retrieve with PlexPy, Ombi, Couchpotato, or SickRage.
$ffmpegBinDir = path to ffmpeg bin folder (no trailing "\"). This is the directory containing ffmpeg.exe and ffprobe.exe
$handbrakeDir = path to Handbrake directory (no trailing "\"). This is the directory containing HandBrakeCLI.exe
collectGarbage = $True enables garbage collection. $False disables garbage collection.
$script:garbage = the extensions of the files you want garbage collection to delete in the format "*.ex1", "*.ex2"
$appendLog = $False will clear the log at the beginning of every session, $True will append new session log to old session log.
$keepSubs = $False will discard subtitles from converted files. $True will keep subtitles.
$useOutPath = $False will use $mediaPath as the output folder. $True will output converted files to $outPath
$useOutPath = $False will use $mediaPath as the output folder. $True will output converted files to $outPath.
NOTE: Directory structure is preserved in $outPath
$outPath = If $useOutPath = $True, converted files will be written to this directory (no trailing "\")
-----------------------------------------------------------------------------------------------------------------------#>
$mediaPath = "\\your\path\here"
Expand All @@ -44,4 +46,4 @@ $script:garbage = "*.nfo"
$appendLog = $False
$keepSubs = $False
$useOutPath = $False
$outPath = "\\your\output\path\here"
$outPath = "\\your\output\path\here"
Loading

0 comments on commit e2d238b

Please sign in to comment.