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. |
2nd October 2013, 08:28 | #24 | Link |
German doom9/Gleitz SuMo
Join Date: Oct 2001
Location: Germany, rural Altmark
Posts: 7,095
|
@ Kurtnoise:
I thought zerowalker asked for any comparison screenshots, not specifically from the test above. That's why I continued thinking about its general sense in the current stage of development... Apart from other working features, there is also some need for useful default values. From my experience so far, a default quantizer of 32 in x265 is not really a sensible value. |
2nd October 2013, 09:17 | #26 | Link |
German doom9/Gleitz SuMo
Join Date: Oct 2001
Location: Germany, rural Altmark
Posts: 7,095
|
The Osmo4 player in the GPAC Nightly Builds (Win32) can play it (muxed as MP4 with e.g. MP4Box in this package, or a current L-SMASH).
The HM reference decoder (ver. 12.0 currently?) can decode it to Y4M. JEEB's build (TAppDecoder.exe). Last edited by LigH; 2nd October 2013 at 09:21. |
14th October 2013, 13:53 | #32 | Link |
German doom9/Gleitz SuMo
Join Date: Oct 2001
Location: Germany, rural Altmark
Posts: 7,095
|
Apart from that, x265 is not yet available for users, only for testers with sound background knowledge in video coding algorithms, and working with CLI encoders (at least by editing a batch file) is the least issue in the current stage of development.
There is no complete feature implementation yet. There is no stabe set of command line options yet. How often do you expect a GUI to follow sudden and unexpected changes in the set of encoder options? And yes: There is not even support for streaming video sources (pipe / AviSynth) yet. GUIs could not efficiently serve frames to such an encoder. |
14th October 2013, 17:48 | #34 | Link |
もこたんインしたお!
Join Date: Jan 2008
Location: Finland / Japan
Posts: 512
|
Daemon404's test encodes are available in the directory.
__________________
[I'm human, no debug]
|
15th October 2013, 08:30 | #36 | Link |
German doom9/Gleitz SuMo
Join Date: Oct 2001
Location: Germany, rural Altmark
Posts: 7,095
|
Here are also a few of mine.
Also there are some new builds, compiled with MSys/MinGW GCC for x86 or with MSVC11 for x86 and AMD64 (latter may have a minimum requirement of Windows 7 and the MSVC 2012 Redistributable; a CPU with AVX support and 8 GB RAM are reommended): https://x265.cc/ Last edited by LigH; 15th October 2013 at 10:13. |
15th October 2013, 10:48 | #37 | Link | |
Swallowed in the Sea
Join Date: Oct 2002
Location: Aix-en-Provence, France
Posts: 5,191
|
Quote:
For MSVC builds, it's quite easy to support XP platforms and remove the c++ runtime. I'll create a patch if needed. |
|
15th October 2013, 10:56 | #38 | Link |
German doom9/Gleitz SuMo
Join Date: Oct 2001
Location: Germany, rural Altmark
Posts: 7,095
|
The user registered with the nick "x265.cc" in the VideoHelp forum; I don't know if he is related to the development team.
|
16th October 2013, 00:10 | #39 | Link | |
Guest
Posts: n/a
|
Quote:
Tom MulticoreWare |
|
16th October 2013, 05:48 | #40 | Link |
Swallowed in the Sea
Join Date: Oct 2002
Location: Aix-en-Provence, France
Posts: 5,191
|
Here is the patch:
Code:
# HG changeset patch # User Kurtnoise <kurtnoise@free.fr> # Date 1381898006 -7200 # Wed Oct 16 06:33:26 2013 +0200 # Node ID 723e554191e14e6289342043225e485e656c27d7 # Parent a998daed845922b3b880b48c0cafa32c422c941e Add Windows XP support in MSVC11 builds. This requires CMake 2.8.11 or later. diff -r a998daed8459 -r 723e554191e1 build/vc11-x86/make-solutions.bat --- a/build/vc11-x86/make-solutions.bat Tue Oct 15 20:57:47 2013 -0500 +++ b/build/vc11-x86/make-solutions.bat Wed Oct 16 06:33:26 2013 +0200 @@ -3,4 +3,4 @@ :: run this batch file to create a Visual Studion solution file for this project. :: See the cmake documentation for other generator targets :: -cmake -G "Visual Studio 11" ..\..\source && cmake-gui ..\..\source +cmake -G "Visual Studio 11" -T "v110_xp" ..\..\source && cmake-gui ..\..\source diff -r a998daed8459 -r 723e554191e1 build/vc11-x86_64/make-solutions.bat --- a/build/vc11-x86_64/make-solutions.bat Tue Oct 15 20:57:47 2013 -0500 +++ b/build/vc11-x86_64/make-solutions.bat Wed Oct 16 06:33:26 2013 +0200 @@ -3,4 +3,4 @@ :: run this batch file to create a Visual Studion solution file for this project. :: See the cmake documentation for other generator targets :: -cmake -G "Visual Studio 11 Win64" ..\..\source && cmake-gui ..\..\source +cmake -G "Visual Studio 11 Win64" -T "v110_xp" ..\..\source && cmake-gui ..\..\source diff -r a998daed8459 -r 723e554191e1 source/CMakeLists.txt --- a/source/CMakeLists.txt Tue Oct 15 20:57:47 2013 -0500 +++ b/source/CMakeLists.txt Wed Oct 16 06:33:26 2013 +0200 @@ -7,7 +7,7 @@ endif() project (x265) -cmake_minimum_required (VERSION 2.8.8) # OBJECT libraries require 2.8.8 +cmake_minimum_required (VERSION 2.8.11) # OBJECT libraries require 2.8.11 # X265_BUILD must be incremented each time the public API is changed set(X265_BUILD 1) This patch requires CMake 2.8.11 because the flag dedicated to the toolset has been fixed in this version. |
Thread Tools | Search this Thread |
Display Modes | |
|
|