Skip to content

Commit

Permalink
improve
Browse files Browse the repository at this point in the history
  • Loading branch information
Anime4000 committed Oct 19, 2015
1 parent 9efec7f commit 1c1d51e
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
2 changes: 2 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@

[new] Allow user to save encoded file either same source folder or given path
[added] Language: Italian
[added] Allow user to add FFmpeg arguments/command-line
[fixed] Downloader & Updater engine improved!
[fixed] Temp folder will clear after finished encoding, open & close program
[fixed] HEVC video passthrough not properly save
[fixed] Linux plugin is now statically linked (portable), thanks to darealshinji
[fixed] Invalid MKV language id (told by Nikolai Lyskov)
[fixed] Prevent copy audio tracks cause MKV chapter begin copied

Version 5.1 (FLUORITE DIARY)
-----------
Expand Down
2 changes: 1 addition & 1 deletion ifme/MediaEncoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public static void Audio(string filereal, Queue item)
if (DropCurrentAudio(audio.ID, item))
continue;

TaskManager.Run($"\"{Plugin.LIBAV}\" -i \"{filereal}\" -map {audio.ID} -acodec copy {ffcmd} -y audio{counter++:0000}_{audio.Lang}.{audio.Format}");
TaskManager.Run($"\"{Plugin.LIBAV}\" -i \"{filereal}\" -dn -vn -sn -map {audio.ID} -acodec copy {ffcmd} -y audio{counter++:0000}_{audio.Lang}.{audio.Format}");
}

// check if got any unsupported codec
Expand Down
4 changes: 2 additions & 2 deletions ifme/frmMain.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 11 additions & 2 deletions ifme/frmMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -142,16 +142,25 @@ private void frmMain_Shown(object sender, EventArgs e)

QueueListFile(ObjectIO.FileName);

// should fix ballon position: http://stackoverflow.com/a/4646021
tipUpdate.Show(null, pbxRight, 0);
tipUpdate.IsBalloon = true;

// Tell user there are new version can be downloaded
if (Global.App.NewRelease)
{
InvokeLog("New version available, visit: https://x265.github.io/");
tipUpdate.Show(null, pbxRight, 0); // should fix ballon position: http://stackoverflow.com/a/4646021

tipUpdate.IsBalloon = true;
tipUpdate.ToolTipTitle = Language.TipUpdateTitle;
tipUpdate.Show(Language.TipUpdateMessage, pbxRight, 488, pbxRight.Height / 2, 30000);
}
else
{
#if !STEAM
tipUpdate.ToolTipTitle = "Hi";
tipUpdate.Show("Support & Donate to IFME Project", btnDonate, btnDonate.Width / 2, btnDonate.Height / 2, 30000);
#endif
}
}

private void frmMain_FormClosing(object sender, FormClosingEventArgs e)
Expand Down

0 comments on commit 1c1d51e

Please sign in to comment.