SShortSingh.
Back to feed

Browser-Based Tool Offers Editable, Multilingual Video Subtitle Workflow

0
·2 views

A developer has built a browser-first tool called Video Translator that streamlines the creation of multilingual video subtitles without requiring local software beyond a browser. The workflow treats transcription as structured data, assigning each segment a start time, end time, and editable source sentence to allow corrections before translation begins. Translated subtitles are kept editable until final export, preventing premature or irreversible changes to the video. The tool supports multiple output formats, including original, translated, or bilingual SRT files, as well as MP4 rendering for immediate sharing. The design prioritizes readability and reusability by splitting long translated lines at natural pauses and keeping different output types separate.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Cordless v0.6 Launches CLI-First Terminal Dashboard with QR Pairing and Self-Contained Binary

Cordless, a tool for managing remote terminal and coding-agent sessions on mobile, has released version 0.6 with a redesigned CLI-first approach. Running the app now opens a full-screen terminal dashboard that immediately displays a pairing QR code, eliminating the need to run a separate pairing command. The update ships as a single self-contained binary bundling its own Node.js runtime and node-pty, removing any prior installation requirements. Security has also been tightened, with pairing codes now issued exclusively through an authenticated WebSocket call restricted to loopback connections, making remote device enrollment impossible. The persistent daemon architecture ensures that closing the dashboard never interrupts active sessions or phone connections.

0
ProgrammingDEV Community ·

Common jq Pitfalls in Shell Scripts and How to Handle Them

Developers and sysadmins using jq to process JSON in shell scripts often encounter edge cases that work in testing but fail in production. Key issues include improper null handling and unexpected behavior when querying missing or empty fields. Using flags like -r for raw string output and -e to detect null results with exit code 5 can help catch these problems early. Defensive scripting patterns, such as explicit null checks and error exits, are recommended to avoid hard-to-debug production failures. These are not flaws in jq itself but rather subtleties that arise when combining shell scripting with real-world JSON data processing.

0
ProgrammingDEV Community ·

SOLID Principles Explained: Five Rules for Cleaner, Scalable Software Design

SOLID is a set of five software design principles aimed at improving code quality, scalability, and maintainability. The Single Responsibility Principle states that each class should have only one reason to change, avoiding so-called 'God Classes' that handle multiple concerns at once. The Open/Closed Principle advises that code should be open for extension but closed for modification, reducing reliance on conditional logic when adding new features. The Liskov Substitution Principle requires that child classes can replace parent classes without breaking the application, encouraging more careful inheritance planning. The Interface Segregation Principle holds that no class should be forced to depend on methods it does not need, favoring smaller, purpose-specific interfaces over large, all-encompassing ones.