Downloads:
56,908
Downloads of v 3.6.11.20230204:
653
Last Update:
04 Feb 2023
Package Maintainer(s):
Software Author(s):
- Nikolaj Lynge Olsson
Tags:
subtitleedit admin subtitle editor video ocr sync merge split convertSubtitle Edit
This is not the latest version of Subtitle Edit available.
- 1
- 2
- 3
3.6.11.20230204 | Updated: 04 Feb 2023
Downloads:
56,908
Downloads of v 3.6.11.20230204:
653
Maintainer(s):
Software Author(s):
- Nikolaj Lynge Olsson
Subtitle Edit 3.6.11.20230204
This is not the latest version of Subtitle Edit available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Nikolaj Lynge Olsson. The inclusion of Nikolaj Lynge Olsson trademark(s), if any, upon this webpage is solely to identify Nikolaj Lynge Olsson goods or services and not for commercial purposes.
- 1
- 2
- 3
This Package Contains an Exempted Check
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Subtitle Edit, run the following command from the command line or from PowerShell:
To upgrade Subtitle Edit, run the following command from the command line or from PowerShell:
To uninstall Subtitle Edit, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download subtitleedit --internalize --version=3.6.11.20230204 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade subtitleedit -y --source="'INTERNAL REPO URL'" --version="'3.6.11.20230204'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade subtitleedit -y --source="'INTERNAL REPO URL'" --version="'3.6.11.20230204'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install subtitleedit
win_chocolatey:
name: subtitleedit
version: '3.6.11.20230204'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'subtitleedit' do
action :install
source 'INTERNAL REPO URL'
version '3.6.11.20230204'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller subtitleedit
{
Name = "subtitleedit"
Version = "3.6.11.20230204"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'subtitleedit':
ensure => '3.6.11.20230204',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 04 Feb 2023.
With SE you can easily adjust a subtitle if it is out of sync with the video in several different ways. You can also use SE for making new subtitles from scratch (do use the time-line/waveform/spectrogram) or translating subtitles.
$ErrorActionPreference = 'Stop'
# *** Automatically filled ***
$packageName = 'subtitleedit'
$softwareName = 'Subtitle Edit*'
$fileType = 'exe'
$silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
$validExitCodes = @(0)
# *** Automatically filled ***
[array] $key = Get-UninstallRegistryKey -SoftwareName $softwareName
if ($key.Count -eq 1) {
function Get-File ([string] $path) {
# Remove quotes and trailing arguments if any
if (!$path) { return }
if (Test-Path $path) { return $path }
function Split-CommandLine ([string] $path) { $path }
$path = Invoke-Expression "Split-CommandLine $path"
if (Test-Path $path) { return $path }
}
$key | ForEach-Object {
$file = Get-File $_.UninstallString
if ($file) {
Uninstall-ChocolateyPackage -PackageName $packageName `
-FileType $fileType `
-SilentArgs $silentArgs `
-ValidExitCodes $validExitCodes `
-File $file | Out-Null
} else {
Write-Warning "Unknown uninstaller: $($_.UninstallString)"
}
}
} elseif ($key.Count -eq 0) {
Write-Warning "$packageName has already been uninstalled by other means."
} else {
Write-Warning "$($key.Count) matches found for $packageName!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please contact package maintainer the following keys were matched:"
$key | ForEach-Object { Write-Warning "- $($_.DisplayName)" }
}
Log in or click on link to see number of positives.
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Subtitle Edit 4.0.8 | 2408 | Friday, September 6, 2024 | Approved | |
Subtitle Edit 4.0.7 | 1359 | Monday, July 8, 2024 | Approved | |
Subtitle Edit 4.0.6 | 1158 | Saturday, June 1, 2024 | Approved | |
Subtitle Edit 4.0.5 | 1257 | Saturday, April 13, 2024 | Approved | |
Subtitle Edit 4.0.4 | 949 | Sunday, March 17, 2024 | Approved | |
Subtitle Edit 4.0.3 | 1426 | Saturday, December 23, 2023 | Approved | |
Subtitle Edit 4.0.2 | 1023 | Sunday, November 19, 2023 | Approved | |
Subtitle Edit 4.0.1 | 1344 | Saturday, September 16, 2023 | Approved | |
Subtitle Edit 4.0.0 | 701 | Monday, September 4, 2023 | Approved | |
Subtitle Edit 3.6.13.20230622 | 1491 | Thursday, June 22, 2023 | Approved | |
Subtitle Edit 3.6.13 | 1041 | Sunday, May 14, 2023 | Approved | |
Subtitle Edit 3.6.12 | 1101 | Sunday, March 26, 2023 | Approved | |
Subtitle Edit 3.6.11.20230215 | 1006 | Wednesday, February 15, 2023 | Approved | |
Subtitle Edit 3.6.11.20230214 | 235 | Tuesday, February 14, 2023 | Approved | |
Subtitle Edit 3.6.11.20230204 | 653 | Saturday, February 4, 2023 | Approved | |
Subtitle Edit 3.6.11 | 1348 | Monday, January 30, 2023 | Approved | |
Subtitle Edit 3.6.10 | 1262 | Tuesday, November 22, 2022 | Approved | |
Subtitle Edit 3.6.9 | 296 | Monday, November 21, 2022 | Approved | |
Subtitle Edit 3.6.8 | 971 | Monday, October 24, 2022 | Approved | |
Subtitle Edit 3.6.7 | 1325 | Saturday, August 13, 2022 | Approved | |
Subtitle Edit 3.6.6 | 1300 | Thursday, May 26, 2022 | Approved | |
Subtitle Edit 3.6.5 | 1192 | Saturday, March 19, 2022 | Approved | |
Subtitle Edit 3.6.4 | 1469 | Friday, December 3, 2021 | Approved | |
Subtitle Edit 3.6.3 | 872 | Thursday, November 11, 2021 | Approved | |
Subtitle Edit 3.6.2 | 1356 | Tuesday, August 24, 2021 | Approved | |
Subtitle Edit 3.6.1 | 1546 | Thursday, May 20, 2021 | Approved | |
Subtitle Edit 3.6.0.20210219 | 1162 | Monday, February 22, 2021 | Approved | |
Subtitle Edit 3.5.18 | 1247 | Tuesday, November 10, 2020 | Approved | |
Subtitle Edit 3.5.17 | 788 | Tuesday, October 6, 2020 | Approved | |
Subtitle Edit 3.5.16 | 1310 | Tuesday, June 16, 2020 | Approved | |
Subtitle Edit 3.5.15 | 842 | Friday, May 1, 2020 | Approved | |
Subtitle Edit 3.5.14.20200310 | 843 | Tuesday, March 10, 2020 | Approved | |
Subtitle Edit 3.5.14 | 317 | Sunday, March 8, 2020 | Approved | |
Subtitle Edit 3.5.13 | 774 | Monday, January 20, 2020 | Approved | |
Subtitle Edit 3.5.12 | 163 | Sunday, January 19, 2020 | Approved | |
Subtitle Edit 3.5.11 | 852 | Sunday, October 27, 2019 | Approved | |
Subtitle Edit 3.5.10 | 776 | Sunday, August 18, 2019 | Approved | |
Subtitle Edit 3.5.9 | 1006 | Sunday, February 10, 2019 | Approved | |
Subtitle Edit 3.5.8 | 623 | Thursday, December 20, 2018 | Approved | |
Subtitle Edit 3.5.7 | 689 | Saturday, September 8, 2018 | Approved | |
Subtitle Edit 3.5.6 | 920 | Tuesday, February 27, 2018 | Approved | |
Subtitle Edit 3.5.5 | 556 | Saturday, January 27, 2018 | Approved | |
Subtitle Edit 3.5.4 | 797 | Monday, October 2, 2017 | Approved | |
Subtitle Edit 3.5.3 | 746 | Friday, May 12, 2017 | Approved | |
Subtitle Edit 3.5.2 | 694 | Friday, March 3, 2017 | Approved | |
Subtitle Edit 3.5.1 | 702 | Wednesday, December 14, 2016 | Approved | |
Subtitle Edit 3.5.0 | 449 | Monday, December 12, 2016 | Approved | |
Subtitle Edit 3.4.13 | 669 | Saturday, June 25, 2016 | Approved | |
Subtitle Edit 3.4.12 | 528 | Monday, March 21, 2016 | Approved | |
Subtitle Edit 3.4.11 | 579 | Saturday, February 6, 2016 | Approved | |
Subtitle Edit 3.4.10 | 509 | Thursday, October 15, 2015 | Approved | |
Subtitle Edit 3.4.8 | 458 | Tuesday, August 4, 2015 | Approved | |
Subtitle Edit 3.4.7 | 456 | Saturday, July 25, 2015 | Approved | |
Subtitle Edit 3.4.6 | 477 | Saturday, April 11, 2015 | Approved | |
Subtitle Edit 3.4.4 | 788 | Sunday, November 30, 2014 | Approved | |
Subtitle Edit 3.4.3 | 623 | Saturday, October 11, 2014 | Approved | |
Subtitle Edit 3.4.2 | 568 | Monday, September 8, 2014 | Approved | |
Subtitle Edit 3.4.1 | 551 | Saturday, August 9, 2014 | Approved | |
Subtitle Edit 3.4.0 | 492 | Tuesday, July 15, 2014 | Approved | |
Subtitle Edit 3.3.15 | 555 | Sunday, April 13, 2014 | Approved | |
Subtitle Edit 3.3.14 | 556 | Wednesday, February 26, 2014 | Approved | |
Subtitle Edit 3.3.13 | 490 | Tuesday, February 18, 2014 | Approved | |
Subtitle Edit 3.3.12 | 496 | Sunday, January 12, 2014 | Approved | |
Subtitle Edit 3.3.11 | 512 | Wednesday, January 8, 2014 | Approved | |
Subtitle Edit 3.3.9 | 565 | Saturday, November 9, 2013 | Approved | |
Subtitle Edit 3.3.7 | 585 | Saturday, August 24, 2013 | Approved |
Copyright © Nikse
-
- chocolatey-core.extension (≥ 1.3.3)
- netfx-4.7.2 (≥ 4.7.2.0)
Ground Rules:
- This discussion is only about Subtitle Edit and the Subtitle Edit package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Subtitle Edit, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.