Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@ Read [Documentation](https://rtmedia.io/docs/transcoder/?utm_source=readme&utm_m

## Changelog ##

#### 1.4.1 [August 22, 2025] ####

* FIXED
* Added validation and sanitization for `[rt_media]` shortcode attributes.
* Graceful fallback when media file is unavailable (prevents broken audio/video players).

#### 1.4.0 [May 30, 2025] ####

* REMOVED
Expand Down
28 changes: 18 additions & 10 deletions languages/transcoder.pot
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: http://community.rtcamp.com/\n"
"POT-Creation-Date: 2025-05-30 17:03:33+00:00\n"
"POT-Creation-Date: 2025-08-22 10:08:44+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
Expand Down Expand Up @@ -439,33 +439,41 @@ msgid ""
"our <a href=\"%s\" target=\"_blank\">GoDAM</a> services."
msgstr ""

#: admin/rt-transcoder-functions.php:87
#: admin/rt-transcoder-functions.php:52
msgid "Invalid attachment ID."
msgstr ""

#: admin/rt-transcoder-functions.php:72 admin/rt-transcoder-functions.php:106
msgid "Media file unavailable."
msgstr ""

#: admin/rt-transcoder-functions.php:132
msgid "Image attachments are not handled by Transcoder plugin."
msgstr ""

#: admin/rt-transcoder-functions.php:92
#: admin/rt-transcoder-functions.php:138
msgid "This file is being transcoded. Please wait."
msgstr ""

#: admin/rt-transcoder-functions.php:463 admin/rt-transcoder-functions.php:728
#: admin/rt-transcoder-functions.php:901
#: admin/rt-transcoder-functions.php:509 admin/rt-transcoder-functions.php:774
#: admin/rt-transcoder-functions.php:947
msgid "Check Status"
msgstr ""

#: admin/rt-transcoder-functions.php:478 admin/rt-transcoder-functions.php:484
#: admin/rt-transcoder-functions.php:924
#: admin/rt-transcoder-functions.php:524 admin/rt-transcoder-functions.php:530
#: admin/rt-transcoder-functions.php:970
msgid "This file is converting. Please refresh the page after some time."
msgstr ""

#: admin/rt-transcoder-functions.php:705
#: admin/rt-transcoder-functions.php:751
msgid "Transcode Status"
msgstr ""

#: admin/rt-transcoder-functions.php:745
#: admin/rt-transcoder-functions.php:791
msgid "File is transcoded."
msgstr ""

#: admin/rt-transcoder-functions.php:919
#: admin/rt-transcoder-functions.php:965
msgid ""
"This file is converting. Please click on check status button to know "
"current status or refresh the page after some time. "
Expand Down
15 changes: 13 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@ Contributors: rtcamp, mangeshp, chandrapatel, manishsongirkar36, bhargavbhandari
Tags: media, multimedia, audio, songs, music, video, ffmpeg, media-node, rtMedia, WordPress, kaltura, transcode, transcoder, encoding, encode
Donate link: https://rtcamp.com/donate/
Requires at least: 4.1
Tested up to: 6.8.1
Stable tag: 1.4.0
Tested up to: 6.8.2
Stable tag: 1.4.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Transcoding services for ANY WordPress website. Convert audio/video files of any format to a web-friendly format (mp3/mp4).

== Description ==
**Transcoder plugin has been discontinued and no longer maintained**, we recommend to use our new video management solution [GoDAM](https://godam.io/?utm_source=readme&utm_medium=plugin&utm_campaign=transcoder) which provides smart transcoding & adaptive bitrate, generate thumbnail, add custom layers, better way to organize media files, serve via CDN and do a lot more. Install the GoDAM plugin from [here](https://wordpress.org/plugins/godam)

Transcoder easily converts all audio and video files uploaded to your website to a web-friendly format.

Transcoder eliminates the need for a dedicated media node- no fiddling with installation, managing dependancies or renting servers! Transcoder also works on shared hosting- just install, subscribe and go!
Expand Down Expand Up @@ -63,6 +65,12 @@ Read [Documentation](https://rtmedia.io/docs/transcoder/?utm_source=readme&utm_m

== Changelog ==

= 1.4.1 [August 22, 2025] =

* FIXED
* Added validation and sanitization for `[rt_media]` shortcode attributes.
* Graceful fallback when media file is unavailable (prevents broken audio/video players).

= 1.4.0 [May 30, 2025]

* REMOVED
Expand Down Expand Up @@ -254,6 +262,9 @@ Initial release

== Upgrade Notice ==

= 1.4.1 =
Transcoder 1.4.1 with improved shortcode security.

= 1.4.0 =
Update to users - Discontinuing the Transcoder service and replacing with GoDAM.

Expand Down
4 changes: 2 additions & 2 deletions rt-transcoder.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Transcoder
* Plugin URI: https://rtmedia.io/transcoder/?utm_source=dashboard&utm_medium=plugin&utm_campaign=transcoder
* Description: Audio & video transcoding services for ANY WordPress website. Allows you to convert audio/video files of any format to a web-friendly format (mp3/mp4).
* Version: 1.4.0
* Version: 1.4.1
* Text Domain: transcoder
* Author: rtCamp
* Author URI: https://rtcamp.com/?utm_source=dashboard&utm_medium=plugin&utm_campaign=transcoder
Expand Down Expand Up @@ -39,7 +39,7 @@
/**
* The version of the plugin
*/
define( 'RT_TRANSCODER_VERSION', '1.4.0' );
define( 'RT_TRANSCODER_VERSION', '1.4.1' );
}

if ( ! defined( 'RT_TRANSCODER_NO_MAIL' ) && defined( 'VIP_GO_APP_ENVIRONMENT' ) ) {
Expand Down