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.

 

Go Back   Doom9's Forum > Video Encoding > MPEG-4 Encoder GUIs
Register FAQ Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
Old 16th August 2022, 11:30   #4581  |  Link
Atlantis
Registered User
 
Join Date: Feb 2002
Posts: 758
How can we encode and have 3 audio tracks?

Update: never mind. I see multiple audio tracks are implemented. In the container I thought you could only add and mux audio. But you can actually also encode there. Thank you.

Last edited by Atlantis; 16th August 2022 at 21:58.
Atlantis is offline   Reply With Quote
Old 30th August 2022, 14:08   #4582  |  Link
stax76
Registered User
 
stax76's Avatar
 
Join Date: Jun 2002
Location: On thin ice
Posts: 6,837
Here is a machine translation of a beginner-friendly guide, originally authored by Doom9 member Brother John.

The translation process was easier than a thought it would, but I think the result is already good.

Some things are not yet up-to-date.


Tools used:

https://www.deepl.com/translator

https://github.com/marktext/marktext


Find it here:


website:

https://staxrip.github.io/x265-encoding-tutorial


website repo:

https://github.com/staxrip/x265-encoding-tutorial


I've updated the staxrip wiki, so people can find it. Native speakers helping to update it would be very helpful.

Last edited by stax76; 30th August 2022 at 14:11.
stax76 is offline   Reply With Quote
Old 21st September 2022, 01:58   #4583  |  Link
maupassant
Registered User
 
Join Date: Jun 2017
Posts: 9
Changed PC today, now with Windows 11 instead of Windows 10.

Now, mp4 files re-encoded with VideoRedo won't load in StaxRip.

Any help will be gladly appreciated. Thanks.

Attached Images
 

Last edited by maupassant; 21st September 2022 at 03:50.
maupassant is offline   Reply With Quote
Old 21st September 2022, 07:49   #4584  |  Link
TDS
Formally known as .......
 
TDS's Avatar
 
Join Date: Sep 2021
Location: Down Under.
Posts: 1,003
Quote:
Originally Posted by maupassant View Post
Changed PC today, now with Windows 11 instead of Windows 10.

Now, mp4 files re-encoded with VideoRedo won't load in StaxRip.

Any help will be gladly appreciated. Thanks.

Hi, did you re-install this:-

https://learn.microsoft.com/en-us/cp...?view=msvc-170

After all, that error msg is for this
__________________
Long term RipBot264 user.

RipBot264 modded builds..
TDS is offline   Reply With Quote
Old 21st September 2022, 15:43   #4585  |  Link
maupassant
Registered User
 
Join Date: Jun 2017
Posts: 9
Quote:
Originally Posted by TDS View Post
Hi, did you re-install this:-

https://learn.microsoft.com/en-us/cp...?view=msvc-170

After all, that error msg is for this
Hi TDS,

Yes, I did. All of them.

Last edited by maupassant; 21st September 2022 at 15:54.
maupassant is offline   Reply With Quote
Old 4th November 2022, 01:36   #4586  |  Link
WarnerBrah
DPX -> HEVC@Veryslow
 
WarnerBrah's Avatar
 
Join Date: Oct 2022
Posts: 6
so I have this line loaded into stax vapoursynth

"clip = havsfunc.SMDegrain(clip, tr=2, Str=1.5, pel=1, search=3, prefilter=6, thSAD=180, contrasharp=True, truemotion=False, RefineMotion=True, chroma=False, plane=0)"

what i want is to enter more parameters for the prefilter=6 which is BM3DCUDA.

how do i do that?
WarnerBrah is offline   Reply With Quote
Old 11th November 2022, 02:27   #4587  |  Link
TDS
Formally known as .......
 
TDS's Avatar
 
Join Date: Sep 2021
Location: Down Under.
Posts: 1,003
Quote:
Originally Posted by WarnerBrah View Post
so I have this line loaded into stax vapoursynth

"clip = havsfunc.SMDegrain(clip, tr=2, Str=1.5, pel=1, search=3, prefilter=6, thSAD=180, contrasharp=True, truemotion=False, RefineMotion=True, chroma=False, plane=0)"

what i want is to enter more parameters for the prefilter=6 which is BM3DCUDA.

how do i do that?
I would think it would be as simple as adding what you want to that "call".

eg:-

Code:
(clip,tr=8,thSAD=800,thSADC=400,thSCD1=400,thSCD2=130,contrasharp=true,prefilter=6,str=1.2,refinemotion=true,blksize=8)
__________________
Long term RipBot264 user.

RipBot264 modded builds..
TDS is offline   Reply With Quote
Old 11th November 2022, 21:12   #4588  |  Link
WarnerBrah
DPX -> HEVC@Veryslow
 
WarnerBrah's Avatar
 
Join Date: Oct 2022
Posts: 6
well the call puts the parameters for SMDegrain and not for the prefilter.

the syntax for BM3DCUDA is like this:

BM3D_CUDA (clip, clip "ref", float[] "sigma", int[] "block_step", int[] "bm_range", int "radius", int[] "ps_num", int[] "ps_range", bool "chroma", int "device_id", bool "fast", int "extractor_exp")

but I don't understand how to integrate this parameters into the SMDegrain line.

Examples
DGSource("sample.dgi")
ConvertBits(bits=32)
BM3D_CUDA(sigma=0.5, radius=2)
BM3D_VAggregate(radius=2)
ConvertBits(bits=16)


the example is from http://avisynth.nl/index.php/BM3DCUDA
WarnerBrah is offline   Reply With Quote
Old 16th November 2022, 02:40   #4589  |  Link
TDS
Formally known as .......
 
TDS's Avatar
 
Join Date: Sep 2021
Location: Down Under.
Posts: 1,003
Quote:
Originally Posted by WarnerBrah View Post
well the call puts the parameters for SMDegrain and not for the prefilter.

the syntax for BM3DCUDA is like this:

BM3D_CUDA (clip, clip "ref", float[] "sigma", int[] "block_step", int[] "bm_range", int "radius", int[] "ps_num", int[] "ps_range", bool "chroma", int "device_id", bool "fast", int "extractor_exp")

but I don't understand how to integrate this parameters into the SMDegrain line.

Examples
DGSource("sample.dgi")
ConvertBits(bits=32)
BM3D_CUDA(sigma=0.5, radius=2)
BM3D_VAggregate(radius=2)
ConvertBits(bits=16)


the example is from http://avisynth.nl/index.php/BM3DCUDA
As I don't use Staxrip, I can't relate that well, and there isn't as much help here, these days.

However, maybe you could try something like this :-

Code:
pre=BM3D_CUDA(sigma=5,radius=1)
SMDegrain(tr=4,thSAD=400,thSADC=200,thSCD1=400,thSCD2=130,contrasharp=true,prefilter=pre,str=1.2,refinemotion=true)
__________________
Long term RipBot264 user.

RipBot264 modded builds..
TDS is offline   Reply With Quote
Old 22nd November 2022, 22:31   #4590  |  Link
Magik Mark
Registered User
 
Join Date: Dec 2014
Posts: 666
Stax

Is StaxRIP still being worked on? There are new features in Rigaya NVenc that may need to be incorporated as well as updates on many plugins
__________________
Asus ProArt Z790 - 13th Gen Intel i9 - RTX 3080 - DDR5 64GB Predator - LG OLED C9 - Yamaha A3030 - Windows 11 x64 - PotPlayerr - Lav - MadVR
Magik Mark is offline   Reply With Quote
Old 26th November 2022, 00:45   #4591  |  Link
TDS
Formally known as .......
 
TDS's Avatar
 
Join Date: Sep 2021
Location: Down Under.
Posts: 1,003
Quote:
Originally Posted by Magik Mark View Post
Stax

Is StaxRIP still being worked on? There are new features in Rigaya NVenc that may need to be incorporated as well as updates on many plugins
It almost seems like ongoing development of Staxrip has stalled, there hasn't been a new build for quite some time.

Same goes for Handbrake, last build was way back in Jan '22.

And not that too many seem to use RipBot264, it's also pretty much stalled, too.

Edit:- got a substantial RipBot264 update today
__________________
Long term RipBot264 user.

RipBot264 modded builds..

Last edited by TDS; 26th November 2022 at 01:10.
TDS is offline   Reply With Quote
Old 26th November 2022, 09:45   #4592  |  Link
DMD
Registered User
 
DMD's Avatar
 
Join Date: Jan 2006
Location: Italy
Posts: 260
Good morning
Regarding AV1 encoding will it be implemented on StaxRip?
Thank you
DMD is offline   Reply With Quote
Old 29th November 2022, 11:15   #4593  |  Link
TDS
Formally known as .......
 
TDS's Avatar
 
Join Date: Sep 2021
Location: Down Under.
Posts: 1,003
Quote:
Originally Posted by DMD View Post
Good morning
Regarding AV1 encoding will it be implemented on StaxRip?
Thank you
Have you heard of this ??

https://github.com/cdgriffith/FastFl...ases/tag/5.0.0
__________________
Long term RipBot264 user.

RipBot264 modded builds..
TDS is offline   Reply With Quote
Old 29th November 2022, 23:43   #4594  |  Link
Emulgator
Big Bit Savings Now !
 
Emulgator's Avatar
 
Join Date: Feb 2007
Location: close to the wall
Posts: 1,546
AV1 is already in Staxrip (2.13.0): AOMEnc, Rav1e, SVT-AV1
__________________
"To bypass shortcuts and find suffering...is called QUALity" (Die toten Augen von Friedrichshain)
"Data reduction ? Yep, Sir. We're that issue working on. Synce invntoin uf lingöage..."
Emulgator is offline   Reply With Quote
Old 11th December 2022, 09:18   #4595  |  Link
thomy21
Registered User
 
Join Date: Sep 2012
Posts: 11
Is Staxrip still being further developed?
thomy21 is offline   Reply With Quote
Old 11th December 2022, 16:29   #4596  |  Link
Emulgator
Big Bit Savings Now !
 
Emulgator's Avatar
 
Join Date: Feb 2007
Location: close to the wall
Posts: 1,546
https://github.com/staxrip/staxrip/graphs/contributors
If all are really nice to stax76, Dendraspis, JKyle, and all the others I guess yes ;-)
__________________
"To bypass shortcuts and find suffering...is called QUALity" (Die toten Augen von Friedrichshain)
"Data reduction ? Yep, Sir. We're that issue working on. Synce invntoin uf lingöage..."

Last edited by Emulgator; 11th December 2022 at 16:32.
Emulgator is offline   Reply With Quote
Old 12th December 2022, 05:46   #4597  |  Link
TDS
Formally known as .......
 
TDS's Avatar
 
Join Date: Sep 2021
Location: Down Under.
Posts: 1,003
Quote:
Originally Posted by Emulgator View Post
https://github.com/staxrip/staxrip/graphs/contributors
If all are really nice to stax76, Dendraspis, JKyle, and all the others I guess yes ;-)
Well, JKyle, (who was VERY involved with Staxrip, for a time), his last post on Doom9 was way back in August '21, and the last update for Staxrip was back in May '22, and there has been MANY updates to the components it uses, in that time.

So, unless you are "brave" enough to update it yourself, who knows what's going on, moving forward.

Sad, really, and it's not the only encoding app that seems to be "slipping behind"
__________________
Long term RipBot264 user.

RipBot264 modded builds..
TDS is offline   Reply With Quote
Old 24th December 2022, 12:14   #4598  |  Link
cartman0208
Registered User
 
Join Date: Jun 2010
Location: Germany
Posts: 205
Hi all,
I have some MP4 files that I want to remux into MKV
Mediainfo shows a content description in the General>Comment section in the MP4.
After remuxing that information is gone ...
Is there a way to copy that information over into the MKV with StaxRip?
cartman0208 is offline   Reply With Quote
Old 28th December 2022, 18:53   #4599  |  Link
Ripmann
Registered User
 
Join Date: Nov 2019
Posts: 72
Quote:
Originally Posted by thomy21 View Post
Is Staxrip still being further developed?
I'd really like to know that as well. I took a look at some of its components last week, and a lot of them were outdated. While you can manually update the latest binaries for some stuff like FFMpeg, SVT-AV1, or AOMEnc, there's some stuff that seems to stop working with newer versions. VapourSynth, for example, is already on v61, but updating it manually from v54 seems to break things.

If the development has stopped and the author is no longer interested in (or capable of) updating the tool with new features, perhaps you could at least consider doing occasional across-the-board-component-update maintenance releases from now on, so the more casual users can at least get the performance benefits of encoder updates, newer FFMpeg features, and so on?
Ripmann is offline   Reply With Quote
Old 29th December 2022, 19:38   #4600  |  Link
Nikos
Registered User
 
Join Date: Jun 2002
Location: Greece
Posts: 242
I want to encode a large .avi file (200GB, FICV) to x264.
The auto-selection for the source is FFVideoSource instead of AVISource.
The ffindex build time is too long.

In the case of .avi files is there any advantage to using FFVideoSource?
__________________
Greece PAL User...
Nikos is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 00:00.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.