Skip to content

Commit 65d86d0

Browse files
committed
- fix incorrect unpacking of new ffmpeg binaries
1 parent bb15b26 commit 65d86d0

File tree

1 file changed

+21
-3
lines changed

1 file changed

+21
-3
lines changed

pom.xml

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -741,10 +741,28 @@
741741
<goal>wget</goal>
742742
</goals>
743743
<configuration>
744-
<url>https://s3.mvorg.de/res/dev/windows/64/bin/ffmpeg.zip</url>
744+
<url>https://s3.mvorg.de/res/dev/windows/64/bin/ffmpeg_new.zip</url>
745745
<unpack>true</unpack>
746-
<outputDirectory>${project.build.directory}/res/bin</outputDirectory>
747-
<md5>2727f5d3c676cd9d2968199d773f44ca</md5>
746+
<outputDirectory>${project.build.directory}/res</outputDirectory>
747+
<md5>ef173fd7a3b684c71e445702a8f510f3</md5>
748+
</configuration>
749+
</execution>
750+
</executions>
751+
</plugin>
752+
<plugin>
753+
<groupId>com.coderplus.maven.plugins</groupId>
754+
<artifactId>copy-rename-maven-plugin</artifactId>
755+
<version>1.0</version>
756+
<executions>
757+
<execution>
758+
<id>rename-file</id>
759+
<phase>package</phase>
760+
<goals>
761+
<goal>rename</goal>
762+
</goals>
763+
<configuration>
764+
<sourceFile>${project.build.directory}/res/ffmpeg/</sourceFile>
765+
<destinationFile>${project.build.directory}/res/bin/</destinationFile>
748766
</configuration>
749767
</execution>
750768
</executions>

0 commit comments

Comments
 (0)