Skip to content

Commit 5ee5c18

Browse files
committed
v1.9.4.1 Setup
1 parent 11301b0 commit 5ee5c18

File tree

12 files changed

+17
-9
lines changed

12 files changed

+17
-9
lines changed

Form1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ private void MultiTransRow()
203203
case "mkv": //if extension is MKV, output will be MP4
204204
str_extension = "1.mp4";
205205
break;
206-
default: //default extension is MKV, altough more correct would be to skip!!!!
206+
default: //default extension is MP4
207207
str_extension = "1.mp4";
208208
break;
209209
}

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
# v1.9.4
1+
# v1.9.4.1
22
- **Added 2 fields to enter start and end time to copy (or convert) to output. Use Checkbox to control if it is used or not.**
33
- **Bear in mind that window is crowded now, so THIS OPTION WORKS FOR BOTH Convert and Transcode**
44
- **If you set it in Transcode tab, it will affect the Convert as well**
55
- **Also, IT WILL BE USED IF MULTIPLE FILES ARE SELECTED, so use check box to control it**
6+
- **It is now possible to select avi files in Transcode tab - default output is mp4**
67

78

89
### You can download binaries and source code from Sourceforge:
@@ -114,11 +115,12 @@ Please contact me via discussion board if you want to collaborate or send me an
114115

115116
### Change log
116117

117-
# v1.9.4
118-
- **option to select time span (from time --> to time) to copy to output file**
119-
- **bear in mind that window is crowded now, so THIS OPTION IS VALID FOR BOTH Convert and Transcode**
118+
# v1.9.4.1
119+
- **Added 2 fields to enter start and end time to copy (or convert) to output. Use Checkbox to control if it is used or not.**
120+
- **Bear in mind that window is crowded now, so THIS OPTION WORKS FOR BOTH Convert and Transcode**
120121
- **If you set it in Transcode tab, it will affect the Convert as well**
121122
- **Also, IT WILL BE USED IF MULTIPLE FILES ARE SELECTED, so use check box to control it**
123+
- **It is now possible to select avi files in Transcode tab - default output is mp4**
122124

123125
# v1.9.3.4
124126
- **fixed issue with rotate video; used new ffmpeg video filter -vf "rotate="

bin/Debug/VCT.exe

0 Bytes
Binary file not shown.

bin/Debug/VCT.exe.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
6363
</dsig:Transforms>
6464
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
65-
<dsig:DigestValue>PdwqMrfQf2VdqwLB8zCMqr3lRxw=</dsig:DigestValue>
65+
<dsig:DigestValue>n9+zQHaSd6/+0CLwlSyJGH7We5s=</dsig:DigestValue>
6666
</hash>
6767
</dependentAssembly>
6868
</dependency>

bin/Debug/VCT.pdb

0 Bytes
Binary file not shown.

bin/Debug/app.publish/VCT.exe

0 Bytes
Binary file not shown.

ffmpeg.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,3 +124,9 @@ ffmpeg -threads 64 -y -i "C:\downloads\ff\h265.mkv" -map 0:0 -map 0:1? -c:v copy
124124
C:\Programi\ffmpeg>ffmpeg -threads 3 -y -i "C:\downloads\ff\Seven Samurai (1954).mp4" -map 0:0 -map
125125
0:1? -map 0:2 -c:v hevc_qsv -load_plugin hevc_hw -preset fast -crf 28 -c:a copy -c:s copy "C:\downlo
126126
ads\ff\Seven Samurai (1954).h265.mp4"
127+
128+
# copy first 30 seconds to output
129+
ffmpeg -ss 00:00:00 -i input.mp4 -t 00:00:30 ouput.mp4
130+
131+
# downmix 5.1 or 7.1 audio to stereo
132+
ffmpeg -i "input.mp4" -map 0:0 -map 0:1? -c:v libx264 -preset veryfast -crf 23 -ac 2 -c:a aac -b:a 128k "output.mp4"

obj/Debug/VCT.application

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
1616
</dsig:Transforms>
1717
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
18-
<dsig:DigestValue>SVzEijAVmFS1jD5uI/VlesDoVBo=</dsig:DigestValue>
18+
<dsig:DigestValue>+CCCP2Ef09u8w2hxYx1w392z42U=</dsig:DigestValue>
1919
</hash>
2020
</dependentAssembly>
2121
</dependency>

obj/Debug/VCT.exe

0 Bytes
Binary file not shown.

obj/Debug/VCT.exe.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
6363
</dsig:Transforms>
6464
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
65-
<dsig:DigestValue>PdwqMrfQf2VdqwLB8zCMqr3lRxw=</dsig:DigestValue>
65+
<dsig:DigestValue>n9+zQHaSd6/+0CLwlSyJGH7We5s=</dsig:DigestValue>
6666
</hash>
6767
</dependentAssembly>
6868
</dependency>

0 commit comments

Comments
 (0)