Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > General > Subtitles
Register FAQ Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
Old 22nd July 2011, 23:06   #1  |  Link
il biggo
Registered User
 
Join Date: Jun 2011
Posts: 6
Avidemux and vertical subtitles

I'm trying to convert a bunch of MKV files to AVI, for viewing on a home theatre system. Avidemux does everything beautifully after a few experiments with pixel ratio, resolution etc.
The MKV files contain A S S subtitles, which Avidemux's Subtitles filter renders with a few differences from the whatever-the-engine-is-that-does-it-in-mplayer. The fonts are a bit thinner, the italics are a bit more slanted, no big deal.
The real problem lies in vertical text: in every mplayer-based player, I can rotate a line of text (\frz-90) and keep the single characters' standard orientation (with the "@fontname" method). The same method doesn't work in Avidemux, i.e. the line AND the fonts are rotated, as you can see in the two captures. I'm not sure if this is a bug in Avidemux, in the Subtitles filter, or if I'm doing something wrong. Any clue?
Attached Images
  
il biggo is offline   Reply With Quote
Old 23rd July 2011, 15:19   #2  |  Link
LoRd_MuldeR
Software Developer
 
LoRd_MuldeR's Avatar
 
Join Date: Jun 2005
Location: Last House on Slunk Street
Posts: 13,248
If Avidemux' "built-in" subtitle filter cannot do the effect you want, maybe you can use Avisynth input and add the subtitles on the Avisyth side, e.g with VSFilter?
__________________
Go to https://standforukraine.com/ to find legitimate Ukrainian Charities 🇺🇦✊
LoRd_MuldeR is offline   Reply With Quote
Old 23rd July 2011, 23:13   #3  |  Link
il biggo
Registered User
 
Join Date: Jun 2011
Posts: 6
I've never used Avisynth but I guess I'll give it a try.
VSFilter definitely will do it right, since single characters rotation should be standard behaviour for A S S subtitles.
Thank you very much, Lord Mulder. I'll post the results for reference.
il biggo is offline   Reply With Quote
Old 28th July 2011, 23:16   #4  |  Link
il biggo
Registered User
 
Join Date: Jun 2011
Posts: 6
Wow. Thanks a lot, Mulder! \o/ The TextSub filter follows A S S standards perfectly.
The result is identical to what I see from the MKV in Mplayer.
(The subtitles are some 10ms late, but I can modify all subs files in Aegisub)
I just hope I can batch-convert a bunch of files [goes back to reading]
il biggo is offline   Reply With Quote
Old 3rd August 2011, 20:40   #5  |  Link
il biggo
Registered User
 
Join Date: Jun 2011
Posts: 6
Avidemux + avsproxy = gray screen

Sorry to bother you (and I don't think this belongs in this thread but I'm not sure where to post it),
but avidemux has stopped responding to the proxy and I'm completely lost. I searched the forums, and the internet for that matter `-´, to no avail.
Be it by means of the "dummy file" (ADAP etc.), via avsproxy_gui, or by using "Connect to avsproxy" from the menu, all I get is a gray screen.
The AviSynth filters are working, i.e. I see subtitles and a black border I added, but it seems like DirectShowSource isn't passing the video data.
It worked a couple days ago (i even burned a few tests on DVD) and I can't understand what's up.

As for the batch conversion, this is my batch file (I'm quite proud of it ^_^) - it loops through all videos in the directory, creates the avs script,
feeds it to the proxy in a separate thread and starts avidemux. "connect2proxy.avi" is the "dummy file".


@echo off
for %%f in (*.mp4) do (

if exist "%%~nf.avs" del "%%~nf.avs"
echo ffmpegsource("%%~pf%%f"^) >"%%~nf.avs" '<--- EDIT (see next message)
echo ConvertAudioTo16bit(^) >>"%%~nf.avs"
echo ConvertToYV12(^) >>"%%~nf.avs"
echo TextSub("%%~pf%%~nf.ass"^) >>"%%~nf.avs"
echo AddBorders(0,0,0,12^) >>"%%~nf.avs"

start "proxy" /D "%%~pf" "C:\Program Files (x86)\Avidemux 2.5\avsproxy.exe" "%%~nf.avs"

echo waiting for proxy...
choice /C x /T 10 /D x
"C:\Program Files (x86)\Avidemux 2.5\avidemux2.exe" --force-alt-h264 --audio-codec AC3 --audio-bitrate 224 --video-codec xvid --codec-conf b2divx --load "connect2proxy.avi" --save "AVI\%%~nf [subITA].avi" --quit

del "%%~nf.avs"
Move "%%f" done\
)

Last edited by il biggo; 3rd August 2011 at 22:16.
il biggo is offline   Reply With Quote
Old 3rd August 2011, 22:12   #6  |  Link
il biggo
Registered User
 
Join Date: Jun 2011
Posts: 6
And obviously, just when I lost all hopes and pestered a knowledgeable fellow (that would be you) about this, I found a "solution".
Ffmpegsource seems to work. I don't know what has happened to DSS, but I'll file this under "windows quirks".
il biggo is offline   Reply With Quote
Old 4th August 2011, 17:31   #7  |  Link
il biggo
Registered User
 
Join Date: Jun 2011
Posts: 6
Avidemux: MKV to AVI with subtitles through avisynth. My journey.

Talking to myself here, sorry 'bout that, let's call it a diary
DirectShowSource was conflicting with the infamous Nero MP4 splitter, wherever did that come O_o. It delivers the video now. No audio. Rats.

I'm using Ffmpegsource2() now, thus reading from the original MKV file instead of the converted .mp4 files (which I had done through HandBrake to have a constant frame rate).
This allowed me to move the YV12 conversion in the first statement of the script together with the framerate adjustment, and to get rid of the ConvertAudio statement.
_________________________________________________________________________________

@echo off
for %%f in (*.mkv) do (

if exist "%%~nf.avs" del "%%~nf.avs"
echo FFmpegSource2("%%~pf%%f",vtrack=-1, atrack=-1, fpsnum=23976, fpsden=1000, width=704, height=480, resizer="LANCZOS", colorspace="YV12"^) >"%%~nf.avs"
echo TextSub("%%~pf%%~nf.ass"^) >>"%%~nf.avs"
echo AddBorders(0,0,0,12^) >>"%%~nf.avs"

start "proxy" /D "%%~pf" "C:\Program Files\Avidemux 2.5\avsproxy.exe" "%%~nf.avs"

echo waiting for proxy...
REM pause to allow ffmpegsource to create the mpeg index
choice /C x /T 30 /D x
"C:\Program Files\Avidemux 2.5\avidemux2.exe" --force-alt-h264 --audio-codec AC3 --audio-bitrate 224 --video-codec xvid --video-conf cq=3 --codec-conf=b2divx.xml --load "connect2proxy.avi" --save "AVI\%%~nf [subITA].avi" --quit

del "%%~nf.avs"
del "%%f.ffindex"
Move "%%f" done\
)
_________________________________________________________________________________

Next challenge: make the "--codec-conf" command work.
I tried putting the configuration file in the video directory - nothing.
I tried stating the full path (Appdata\Local\ etc.) to the original configuration file - nothing.
I searched everywhere for a "tutorial" on how to use "--codec-conf" - nothing. Does this command even exist?
The alternative method would be to put the configuration in an Avidemux script to be "--run" in the CLI. This would be a nightmare: I'm doing a batch conversion, so I would have to generate a different script for each file. Been there, done that, lost my sanity.

Last edited by il biggo; 5th August 2011 at 03:16. Reason: new script added
il biggo is offline   Reply With Quote
Reply

Tags
avidemux, font rotation, japanese, vertical text


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 13:35.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.