...
 
Commits (7)
    https://gitcode.net/jobily/ScreenToGif/-/commit/ba7f4b78b9d7eb8625156be3466aa81096d07e49 add strings to zh-hant 2023-08-06T11:28:58-03:00 5idereal nelson22768384@gmail.com https://gitcode.net/jobily/ScreenToGif/-/commit/42d284cd9e40ca85b78e353c8e6ced19afd68441 update zh-hant translation 2023-08-06T11:28:58-03:00 5idereal nelson22768384@gmail.com https://gitcode.net/jobily/ScreenToGif/-/commit/cad6c5bd8b47835cd7a9a2925c1e497308aa2be9 Add minimal AV1 support for MP4 container 2023-08-06T11:32:50-03:00 Tatsunori Uchino tats.u@live.jp https://gitcode.net/jobily/ScreenToGif/-/commit/72f2cd2655c263fffda5f4d97b6a9666066485c5 Completed Ukrainian localization 2023-08-06T11:32:51-03:00 Nemesh prevter@gmail.com Synchronized all lines using Translator app and translated every single line https://gitcode.net/jobily/ScreenToGif/-/commit/dd5fde1a3bf9c2089827639c6a52943727f6e934 XXXX - Ukrainian translation author added. 2023-08-06T11:32:51-03:00 Nicke Manarin nicke@outlook.com.br https://gitcode.net/jobily/ScreenToGif/-/commit/de9bfde47d144ad9baa40faf4c95e38148e33d21 up to date pt-PT localization 2023-08-06T11:32:51-03:00 edum18 edu.miguel95@hotmail.com https://gitcode.net/jobily/ScreenToGif/-/commit/d213416de84dba4dd990efd9f75a2a2a7e5ace34 Merge branch 'dev' 2023-08-06T11:33:23-03:00 Nicke Manarin nicke@outlook.com.br
因为 它太大了无法显示 source diff 。你可以改为 查看blob
因为 它太大了无法显示 source diff 。你可以改为 查看blob
......@@ -580,7 +580,6 @@ public partial class ExportPanel : UserControl, IPanel
break;
}
case ExportFormats.Mov:
case ExportFormats.Mp4:
{
if (videoPreset.HardwareAcceleration == HardwareAccelerationModes.On)
{
......@@ -607,6 +606,39 @@ public partial class ExportPanel : UserControl, IPanel
break;
}
case ExportFormats.Mp4:
{
if (videoPreset.HardwareAcceleration == HardwareAccelerationModes.On)
{
FfmpegCodecComboBox.ItemsSource = new List<VideoCodec>
{
new X264(),
new H264Amf(),
new H264Nvenc(),
new H264Qsv(),
new X265(),
new HevcAmf(),
new HevcNvenc(),
new HevcQsv(),
new LibAom(),
new SvtAv1(),
new Rav1E()
};
}
else
{
FfmpegCodecComboBox.ItemsSource = new List<VideoCodec>
{
new X264(),
new X265(),
new LibAom(),
new SvtAv1(),
new Rav1E()
};
}
break;
}
case ExportFormats.Webm:
{
FfmpegCodecComboBox.ItemsSource = new List<VideoCodec>
......
......@@ -1189,7 +1189,7 @@
<n:ExtendedListBoxItem Image="{StaticResource Flag.Brazil}" Tag="pt" Content="Portuguese / Português" Author="Nicke Manarin"
ContentWidth="25" ContentHeight="25" IsSelected="{Binding LanguageCode, ConverterParameter=pt, Converter={StaticResource TagToSelection}}"/>
<n:ExtendedListBoxItem Image="{StaticResource Flag.Portugal}" Tag="pt-PT" Content="Portuguese (Portugal) / Português (Portugal)" Author="Duarte Ramos"
<n:ExtendedListBoxItem Image="{StaticResource Flag.Portugal}" Tag="pt-PT" Content="Portuguese (Portugal) / Português (Portugal)" Author="Eduardo Godinho, Duarte Ramos"
ContentWidth="25" ContentHeight="25" IsSelected="{Binding LanguageCode, ConverterParameter=pt-PT, Converter={StaticResource TagToSelection}}"/>
<n:ExtendedListBoxItem Image="{StaticResource Flag.Turkey}" Tag="tr" Content="Turkish / Türkçe" Author="g-u-r-k-a-n, Volkan Dağdelen, seferciogluecce, Omer Mollamehmetoglu, Bekir"
......@@ -1210,7 +1210,7 @@
<n:ExtendedListBoxItem Image="{StaticResource Flag.Russia}" Tag="ru" Content="Russian / Русский" Author="wvxwxvw, Zoltanleo, Qwitriy, ralienpp, Nivalis, Yuri Komar, Vadim Velezhenko"
ContentWidth="25" ContentHeight="25" IsSelected="{Binding LanguageCode, ConverterParameter=ru, Converter={StaticResource TagToSelection}}"/>
<n:ExtendedListBoxItem Image="{StaticResource Flag.Ukraine}" Tag="uk" Content="Ukrainian / українська" Author="Andrey Ìlečko"
<n:ExtendedListBoxItem Image="{StaticResource Flag.Ukraine}" Tag="uk" Content="Ukrainian / Українська" Author="Prevter, Andrey Ìlečko"
ContentWidth="25" ContentHeight="25" IsSelected="{Binding LanguageCode, ConverterParameter=uk, Converter={StaticResource TagToSelection}}"/>
<n:ExtendedListBoxItem Image="{StaticResource Flag.Vietnam}" Tag="vi" Content="Vietnamese / Tiếng Việt" Author="Đỗ Quang Hưng"
......