Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - RiCON

Pages: [1] 2 3
1
Avisynth Development / Re: FFMS2 (The Fabulous FM Source 2)
« on: February 26, 2012, 11:02:22 AM »
At least on Windows, using a fullpath (cachefile="J:\cache.ffindex") worked fine for me.

2
Avisynth Usage / Re: DeDup filter ??
« on: January 09, 2012, 03:19:56 AM »
Doesn't x264 compensate for VFR?

3
H.264/AVC / Re: Getting the latest x264
« on: December 15, 2011, 08:51:51 AM »
JEEB's patched builds still come with audio support.

4
H.264/AVC / Re: [SCRIPT] my FRAPS Encoding batch :)
« on: December 08, 2011, 03:07:27 PM »
There're a few of redundant options you're using on x264 and mkvmerge that you don't really need to.

Here's a version without them for vanilla x264 and another for those who use JEEB's patched builds.

Disclaimer: Haven't tried these scripts (not on Windows atm) so I don't know if I made any mistakes for now, but you should get the gist of it.

5
Avisynth Development / Re: FFMS2 (The Fabulous FM Source 2)
« on: December 06, 2011, 06:12:06 AM »
I'd guess using ffmpegsource's official issue tracker would be a faster way of being noticed.

6
H.264/AVC / Re: 10bit x264 - What is the bitrate benefit?
« on: August 16, 2011, 06:10:46 AM »
By looking at it with your eyes, I'd say.

7
Subtitles / Re: Batch converting SSA/ASS to SRT?
« on: March 14, 2011, 10:33:19 AM »
John's script (poorly) converted to Python 3.

8
Video Editing / Re: Is it possible to split matroska accurately?
« on: February 17, 2011, 12:39:24 PM »
In Aegisub, the bar with the frame/time information turns blue.

Using ffms and Avisynth and the included ffms.avsi, FFInfo prints subtitles to the video showing frame number, frame type, cfr time and vfr time.
Using AvsP or VirtualDub, look for the begin/end frames and take note of their vfr time.

9
Video Editing / Re: Is it possible to split matroska accurately?
« on: February 17, 2011, 07:27:08 AM »
Aegisub/FFmpegsource to look for the beginning I frame and end frame times and then use those in mkvmerge is what I usually do.

10
Avisynth Usage / Re: STAMPEDE : My new Degraining filter
« on: January 15, 2011, 08:07:04 PM »
Lol, not spam this time.

Seems to be not for denoising at all, the difference between the shots is minimal, both visually and filesize-wise.

I'll try it on some grainy sources later today.

11
H.264/AVC / Re: ffms [info]: 1920x1080 1:1 @ 24000/1001 fps (vfr)
« on: January 14, 2011, 10:34:44 AM »
If you're inputting a natively vfr container (mkv, mp4, wmv), it'll always be "vfr", even if it's meant to be cfr.

12
H.264/AVC / Re: 4:2:2 input to x264?
« on: January 13, 2011, 05:46:04 PM »
You'll probably need ffms with libswscale support compiled into x264 for colorspace conversion to work

13
H.264/AVC / Re: Compiling x264 on 32 & 64 Bit Windows - Guide.
« on: January 11, 2011, 05:24:26 AM »
In version.sh, there seems to be a typo.

Line 5 should be
Code: [Select]
    VER=`git rev-list origin | sort | join config.git-hash - | wc -l | awk '{print $1}'`

14
H.264/AVC / Re: How to disable AQ (Adaptive Quantization) in x264 CLI
« on: January 03, 2011, 06:40:11 AM »
From --tune film:
--deblock -1:-1 --psy-rd <unset>:0.15

This tells you that the developers of x264 consider these settings good for keeping details. If you need more, just raise these values. Use deblock -2:-2, use higher psy-trellis, etc.

There's also --tune grain, which settings should tell you that random spatial-only(?) details are also kept:
--aq-strength 0.5 --no-dct-decimate --deadzone-inter 6 --deadzone-intra 6 --deblock -2:-2 --ipratio 1.1 --pbratio 1.1 --psy-rd <unset>:0.25 --qcomp 0.8

As you can see, it's still using AQ. It's also using lower --deblock and higher psy-trellis than "film". The other settings I presume are meant more for grain-like details. If you use a patched build like JEEB's, you can also use --fgo (film grain optimization) to keep more grain.

Even if you don't use the --tunes, you can certainly learn more from them than random experimenting on settings which will probably do more harm than good.

15
H.264/AVC / Re: How to disable AQ (Adaptive Quantization) in x264 CLI
« on: January 02, 2011, 11:29:03 AM »
Use psy-rd and negative values of deblock instead. Or just use --tune film. That's what it was made for.

16
Audio Encoding / Re: Create silent AAC sample?
« on: December 08, 2010, 10:19:56 AM »
Wavi comes with a silence.exe which should be what you want.

In Unix I googled this script:
Code: [Select]
NrChannels=2
 SampleRate=48000
 NrSeconds=1
 # above parameters can be changed as appropriate
 ffmpeg -ar $SampleRate -acodec pcm_s16le -f s16le -ac $NrChannels \
    -i <(dd if=/dev/zero bs=$(($SampleRate * $NrChannels * 2)) count=$NrSeconds) \
    silence.wav

17
General Discussion / Re: What is UniqueID?
« on: November 24, 2010, 12:18:11 PM »
It refers to the Segment UID of that file.

That metadata is useful for segment linking/ordered chapters.

Only noticed that feature now, but should be useful for me. Until now, the only way to obtain the Segment UID would be by writing it yourself upon muxing or using mkvinfo/mmg header editor.

18
Newbies / Re: VBR re-encoding script for Japan Cartoons
« on: November 02, 2010, 03:28:04 AM »
If you want a certain filesize, use 2-pass.

19
Newbies / Re: Comparing Video
« on: October 12, 2010, 04:00:24 AM »
Or you can even crop each video by half and then stack it together.
Code: [Select]
a=directshowsource("file1")
b=directshowsource("file2")
w=a.width
h=a.height
stackhorizontal(a.crop(0,0,w/-2,0),b.crop(w/-2,0,0,0))

20
Newbies / Re: Some question about the speed on multi-core systems
« on: October 12, 2010, 01:34:53 AM »
what that result mean?
What it means is that you don't really need to set --threads or --thread-input, because x264 itself detects those automatically.

21
H.264/AVC / Re: Differences in the output of x264 32 and 64bit?
« on: September 29, 2010, 01:17:31 PM »
Maybe it doesn't like VFR?

22
General Discussion / Re: A nifty interactive chapter editor
« on: September 20, 2010, 03:35:14 AM »
There is, MeGUI has a graphical tool for chapter making, iirc. No idea if it outputs XML or OGM.

23
General Discussion / Re: A nifty interactive chapter editor
« on: September 19, 2010, 04:08:48 PM »
If all you want are simple chapters, there's no need for XML. OGM chapters also allow naming of each chapter.

I can modify this to export to OGM chapters instead of a QPFile, maybe. You'd just have to use AvsPmod to mark the bookmarks (ctrl+b) where you want the chapters and then use the macro/script to convert each bookmark to a chapter.

24
This is not a question of egos. It's a question of neuron2 doing a shitty job as a moderator, turning the experience of being a member in Doom9 shit if he somehow finds some bone to grind with you or if you rub him the wrong way.

I don't know if this is exact, but what I feel about neuron2 is that if you somehow disagree with him, and are pretty resolute about your arguments, he isn't the slightest bit open-minded enough to accept that it is, in fact, your opinion and that he should respect it, and if it's an opinion about something of his own, he'll protect his property furiously. A 5-year old does that, not a grown man.

25
Quote
if the admin stabs his own people in the back the first time they make a mistake.
( ゚∀゚)アハハ八八ノヽノヽノヽノ \ / \/ \

26
Avisynth Usage / Re: RemoveGrainHD or TemporalRemoveGrainHD, which is BEST?
« on: September 07, 2010, 08:37:43 AM »
One is a spatial denoiser, the other is a spatio-temporal denoiser. You can't tell if one is better than the other because they apply to different cases.

27
Encoder GUIs / Re: StaxRip support
« on: August 31, 2010, 04:53:31 PM »
thanks again!

one more question. is it possible to have x264 output to .mp4? i don't see it anywhere. since mp4box is still broken muxing raw avc, even with the patch trahald just posted on d9.
Yes it can, use builds with L-SMASH patched onto them, like Jeeb's.

28
Avisynth Usage / Re: Convert CFR to VFR
« on: August 26, 2010, 12:02:40 PM »
AnimeIVTC uses TDecimate, iirc.

29
Avisynth Usage / Re: Convert CFR to VFR
« on: August 22, 2010, 04:16:32 PM »

30
H.264/AVC / Re: Using pipe in 2 pass mode with ETA
« on: August 20, 2010, 09:32:57 AM »
If x264 doesn't know the number of frames it can't tell the ETA. Create some kind of script that reads the first line from avs2yuv output and then inputs the number of frames to a "--frames" option in x264.

For example, first tell avs2yuv to only output 1 frame (-frames 1), then read the one line of text that gets output to stdout.
avs2yuv output:
script.avs: 720x480, 24000/1001 fps, 9001 frames
"(\d+) frames" in regex, I guess.
Then put that number of frames into --frames 9001 in x264.

Pages: [1] 2 3