Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

48,662

Downloads of v 3.4.10:

470

Last Update:

15 Oct 2015

Package Maintainer(s):

Software Author(s):

  • Nikolaj Lynge Olsson

Tags:

subtitleedit subtitle editor video ocr sync merge split convert

Subtitle Edit

This is not the latest version of Subtitle Edit available.

  • 1
  • 2
  • 3

3.4.10 | Updated: 15 Oct 2015

Downloads:

48,662

Downloads of v 3.4.10:

470

Maintainer(s):

Software Author(s):

  • Nikolaj Lynge Olsson

Subtitle Edit 3.4.10

This is not the latest version of Subtitle Edit available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

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:

NOTE

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

  • 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

3. Copy Your Script

choco upgrade subtitleedit -y --source="'INTERNAL REPO URL'" --version="'3.4.10'" [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.4.10'" 
$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.4.10'
    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.4.10'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller subtitleedit
{
    Name     = "subtitleedit"
    Version  = "3.4.10"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'subtitleedit':
  ensure   => '3.4.10',
  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.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved by moderator doc on 20 Dec 2015.

Description

Subtitle Edit is a free (open source) editor for video subtitles - a subtitle editor :)


tools\chocolateyInstall.ps1
#Install-ChocolateyPackage 'subtitleedit' 'exe' '/verysilent' 'https://subtitleedit.googlecode.com/files/SubtitleEdit-3.4.10-Setup.zip'
try {
    $url = 'https://github.com/SubtitleEdit/subtitleedit/releases/download/3.4.10/SubtitleEdit-3.4.10-Setup.zip'
    $installer = 'SubtitleEdit-3.4.10-Setup.exe'
    $tempDir = Join-Path $env:TEMP 'chocolatey'
    $tempDir = Join-Path $tempDir 'subtitleedit'
    Install-ChocolateyZipPackage 'subtitleedit' "$url" "$tempDir"
    $file = Join-Path $tempDir "$installer"
    Install-ChocolateyInstallPackage 'subtitleedit' 'exe' '/VERYSILENT' "$file"
    Write-ChocolateySuccess 'subtitleedit'
} catch {
    Write-ChocolateyFailure 'subtitleedit' "$($_.Exception.Message)"
    throw 
}
tools\chocolateyUninstall.ps1
try {
  $processor = Get-WmiObject Win32_Processor
  $is64bit = $processor.AddressWidth -eq 64
  if ($is64bit) {
    $unpath = "${Env:ProgramFiles(x86)}\Subtitle Edit\unins000.exe"
  } else {
    $unpath = "${Env:ProgramFiles}\Subtitle Edit\unins000.exe"
  }
  Uninstall-ChocolateyPackage 'subtitleedit' 'EXE' '/VERYSILENT' "$unpath" -validExitCodes @(0)
  
  # the following is all part of error handling
  Write-ChocolateySuccess 'subtitleedit'
} catch {
  Write-ChocolateyFailure 'subtitleedit' "$($_.Exception.Message)"
  throw
}

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.3 1405 Saturday, December 23, 2023 Approved
Subtitle Edit 4.0.2 998 Sunday, November 19, 2023 Approved
Subtitle Edit 4.0.1 1300 Saturday, September 16, 2023 Approved
Subtitle Edit 4.0.0 678 Monday, September 4, 2023 Approved
Subtitle Edit 3.6.13.20230622 1446 Thursday, June 22, 2023 Approved
Subtitle Edit 3.6.13 1024 Sunday, May 14, 2023 Approved
Subtitle Edit 3.6.12 1080 Sunday, March 26, 2023 Approved
Subtitle Edit 3.6.11.20230215 987 Wednesday, February 15, 2023 Approved
Subtitle Edit 3.6.11.20230214 212 Tuesday, February 14, 2023 Approved
Subtitle Edit 3.6.11.20230204 628 Saturday, February 4, 2023 Approved
Subtitle Edit 3.6.11 1326 Monday, January 30, 2023 Approved
Subtitle Edit 3.6.10 1234 Tuesday, November 22, 2022 Approved
Subtitle Edit 3.6.9 272 Monday, November 21, 2022 Approved
Subtitle Edit 3.6.8 952 Monday, October 24, 2022 Approved
Subtitle Edit 3.6.7 1303 Saturday, August 13, 2022 Approved
Subtitle Edit 3.6.6 1271 Thursday, May 26, 2022 Approved
Subtitle Edit 3.6.5 1169 Saturday, March 19, 2022 Approved
Subtitle Edit 3.6.4 1438 Friday, December 3, 2021 Approved
Subtitle Edit 3.6.3 848 Thursday, November 11, 2021 Approved
Subtitle Edit 3.6.2 1326 Tuesday, August 24, 2021 Approved
Subtitle Edit 3.6.1 1515 Thursday, May 20, 2021 Approved
Subtitle Edit 3.6.0.20210219 1138 Monday, February 22, 2021 Approved
Subtitle Edit 3.5.18 1217 Tuesday, November 10, 2020 Approved
Subtitle Edit 3.5.17 749 Tuesday, October 6, 2020 Approved
Subtitle Edit 3.5.16 1284 Tuesday, June 16, 2020 Approved
Subtitle Edit 3.5.15 806 Friday, May 1, 2020 Approved
Subtitle Edit 3.5.14.20200310 818 Tuesday, March 10, 2020 Approved
Subtitle Edit 3.5.14 289 Sunday, March 8, 2020 Approved
Subtitle Edit 3.5.13 748 Monday, January 20, 2020 Approved
Subtitle Edit 3.5.12 138 Sunday, January 19, 2020 Approved
Subtitle Edit 3.5.11 825 Sunday, October 27, 2019 Approved
Subtitle Edit 3.5.10 735 Sunday, August 18, 2019 Approved
Subtitle Edit 3.5.9 958 Sunday, February 10, 2019 Approved
Subtitle Edit 3.5.8 592 Thursday, December 20, 2018 Approved
Subtitle Edit 3.5.7 661 Saturday, September 8, 2018 Approved
Subtitle Edit 3.5.6 894 Tuesday, February 27, 2018 Approved
Subtitle Edit 3.5.5 535 Saturday, January 27, 2018 Approved
Subtitle Edit 3.5.4 743 Monday, October 2, 2017 Approved
Subtitle Edit 3.5.3 721 Friday, May 12, 2017 Approved
Subtitle Edit 3.5.2 660 Friday, March 3, 2017 Approved
Subtitle Edit 3.5.1 656 Wednesday, December 14, 2016 Approved
Subtitle Edit 3.5.0 420 Monday, December 12, 2016 Approved
Subtitle Edit 3.4.13 624 Saturday, June 25, 2016 Approved
Subtitle Edit 3.4.12 499 Monday, March 21, 2016 Approved
Subtitle Edit 3.4.11 534 Saturday, February 6, 2016 Approved
Subtitle Edit 3.4.10 470 Thursday, October 15, 2015 Approved
Subtitle Edit 3.4.8 436 Tuesday, August 4, 2015 Approved
Subtitle Edit 3.4.7 425 Saturday, July 25, 2015 Approved
Subtitle Edit 3.4.6 457 Saturday, April 11, 2015 Approved
Subtitle Edit 3.4.4 759 Sunday, November 30, 2014 Approved
Subtitle Edit 3.4.3 593 Saturday, October 11, 2014 Approved
Subtitle Edit 3.4.2 556 Monday, September 8, 2014 Approved
Subtitle Edit 3.4.1 512 Saturday, August 9, 2014 Approved
Subtitle Edit 3.4.0 466 Tuesday, July 15, 2014 Approved
Subtitle Edit 3.3.15 526 Sunday, April 13, 2014 Approved
Subtitle Edit 3.3.14 516 Wednesday, February 26, 2014 Approved
Subtitle Edit 3.3.13 461 Tuesday, February 18, 2014 Approved
Subtitle Edit 3.3.12 473 Sunday, January 12, 2014 Approved
Subtitle Edit 3.3.11 486 Wednesday, January 8, 2014 Approved
Subtitle Edit 3.3.9 546 Saturday, November 9, 2013 Approved
Subtitle Edit 3.3.7 562 Saturday, August 24, 2013 Approved

Current Version of Subtitle Edit is 3.4.10
See all - http://www.nikse.dk/subtitleedit

Features
- Create/adjust/sync/translate subtitle lines
- Convert between SubRib, MicroDVD, Advanced Sub Station Alpha, Sub Station Alpha, D-Cinema, SAMI, youtube sbv, and many more (170+ different formats!)
- Cool audio visualizer control - can display wave form and/or spectrogram
- Video player uses DirectShow, VLC media player, or MPlayer
- Visually sync/adjust a subtitle (start/end position and speed)
- Auto Translation via Google translate
- Rip subtitles from a (decrypted) dvd
- Import and OCR VobSub sub/idx binary subtitles (can use Tesseract)
- Import and OCR Blu-ray .sup files (can use Tesseract - bd sup reading is based on Java code from BDSup2Sub by 0xdeadbeef)
- Can open subtitles embedded inside matroska files
- Can open subtitles (text, closed captions, vobsub) embedded inside mp4/mv4 files
- Can open/OCR XSub subtitles embedded inside divx/avi files
- Can read and write both UTF-8 and other unicode files and ANSI (support for all languages/encodings on the pc!)
- Sync: Show texts earlier/later + point synchronization + synchronization via other subtitle
- Merge/split subtitles
- Adjust display time
- Fix common errors wizard
- Spell checking via Open Office dictionaries/NHunspell (many dictionaries available)
- Remove text for hear impaired (HI)
- Renumbering
- Swedish to Danish translation built-in (via Multi Translator Online)
- Effects: Typewriter and karaoke
- History/undo manager (Undo=Ctrl+z, Redo=Ctrl+y)
- Compare subtitles
- Multiple search and replace
- Change casing using names dictionary
- Merge short lines/split long lines
- Export to PNG images (+bdn xml), Adobe Encore FAB image script, VobSub, Blu-ray sup, EBU stl, PAC, and plain text


This package has no dependencies.

Discussion for the Subtitle Edit Package

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.
comments powered by Disqus