Author Topic: Tutorial: x264 .mp4 Render  (Read 13810 times)

0 Members and 1 Guest are viewing this topic.

Offline brandon6199

  • V.I.P. Member
  • Posts: 4019
    • View Profile
Tutorial: x264 .mp4 Render
« Reply #45 on: June 08, 2007, 09:45:49 AM »
k

[attachment=5082:makemp4.zip]
« Last Edit: June 08, 2007, 09:46:46 AM by brandon6199 »

Offline Juan

  • Veteran Member
  • Posts: 5956
  • TMS
    • View Profile
Tutorial: x264 .mp4 Render
« Reply #46 on: June 08, 2007, 09:58:52 AM »
What res are the clips in?

Offline brandon6199

  • V.I.P. Member
  • Posts: 4019
    • View Profile
Tutorial: x264 .mp4 Render
« Reply #47 on: June 08, 2007, 10:00:43 AM »
1280x720

Offline Juan

  • Veteran Member
  • Posts: 5956
  • TMS
    • View Profile
Tutorial: x264 .mp4 Render
« Reply #48 on: June 08, 2007, 10:03:12 AM »
Do you have avi synth installed, if you do its likely that you rendered the avi incorrectly or something.

Offline brandon6199

  • V.I.P. Member
  • Posts: 4019
    • View Profile
Tutorial: x264 .mp4 Render
« Reply #49 on: June 08, 2007, 10:04:47 AM »
Yes i do, and when i click the bat file this happens:

it renders the music portion, and then the MY_MOVIE.avs appears in the C:x264 folder, then when i start getting errors, it goes away...

ugh ill re render i guess

EDIT: rerendered the video and audio again, and reinstalled EVERYTING, and did everything exactly right, and still not working....

i guess ill settle with the XviD HQ until someone can help me..
« Last Edit: June 08, 2007, 10:27:01 AM by brandon6199 »

Offline VaNilla

  • next week m9
  • Veteran Member
  • Posts: 3809
    • View Profile
    • YouTube
Tutorial: x264 .mp4 Render
« Reply #50 on: June 26, 2007, 03:14:17 AM »
Hmmm I have a problem, im trying to render a video and every time it gets to second or third pass it says '2pass curve failed to converge' or something like that, heelp .
EDIT - After that the MP4 comes out at around 5mb and when you view you get at the top of the screen 'CAVIStreamSynth: System Exception - Acess Violation at 0x0, reading from 0x0'  .
« Last Edit: June 26, 2007, 03:39:59 AM by Shadowsniper »

Offline Juan

  • Veteran Member
  • Posts: 5956
  • TMS
    • View Profile
Tutorial: x264 .mp4 Render
« Reply #51 on: June 26, 2007, 01:50:04 PM »
Like it says try reducing the bitrate.

Offline VaNilla

  • next week m9
  • Veteran Member
  • Posts: 3809
    • View Profile
    • YouTube
Tutorial: x264 .mp4 Render
« Reply #52 on: June 27, 2007, 02:58:42 AM »
I've already done that, doesn't work .

Offline Odd

  • Veteran Member
  • Posts: 353
    • View Profile
Tutorial: x264 .mp4 Render
« Reply #53 on: July 04, 2007, 06:49:46 AM »
hi

I've a problem... see the screen, i havn't find solutions
ps : this not 500, but 2500 bitrate




(sorry for my english, he is very bad^^)

Offline brandon6199

  • V.I.P. Member
  • Posts: 4019
    • View Profile
Tutorial: x264 .mp4 Render
« Reply #54 on: July 04, 2007, 11:23:18 AM »
I wish I could get mine working as well

Can anyone post a .bat file that they sucessfully encoded with?

Offline Juan

  • Veteran Member
  • Posts: 5956
  • TMS
    • View Profile
Tutorial: x264 .mp4 Render
« Reply #55 on: July 04, 2007, 11:27:00 AM »
Quote from: Odd
hi

I've a problem... see the screen, i havn't find solutions
ps : this not 500, but 2500 bitrate

(sorry for my english, he is very bad^^)
post your bat file, i think you just screwed it up.

Offline Odd

  • Veteran Member
  • Posts: 353
    • View Profile
Tutorial: x264 .mp4 Render
« Reply #56 on: July 04, 2007, 12:33:22 PM »
http://rapidshare.com/files/41024061/makemp4.bat.html for the bat

the path is just, i have verified

Offline KillaMarci

  • <3
  • Veteran Member
  • Posts: 8702
  • Don't you remember the monsters?
    • View Profile
Tutorial: x264 .mp4 Render
« Reply #57 on: July 04, 2007, 03:52:51 PM »
I can't record in 1280x720 , i can just record in 1280x768  And i don't want to record in 800x600 , so does 1280x768 work aswell?

Offline Juan

  • Veteran Member
  • Posts: 5956
  • TMS
    • View Profile
Tutorial: x264 .mp4 Render
« Reply #58 on: July 04, 2007, 08:49:18 PM »
Quote from: Odd
http://rapidshare.com/files/41024061/makemp4.bat.html for the bat

the path is just, i have verified
Make sure your bat file looks like this:
[codebox]@echo off
:-------------------
: Original from http://wiki.meaz.org/index.php?title=Codecs:x264 check for updates
: Updated 06.05.15 to latest x264 (v523) codec and switched from AAC to MP3 audio codec by Daemon
:-------------------

:START
:-------------------
: Start Configuration
:-------------------
: You need to export your movie as an avi with a filename.
: You need to export your movie sound as a wav with the same filename.
: Set the filename you will use on here.

set mymovie=mymovie

:-------------------
:set the path to your files here (no \ at the end)
:-------------------

set mypath=D:\Documents and Settings\anthony.1046864403176\Bureau\mes telechargements\x264(2)\x264

:-------------------
:set the audio bitrate to use here
:-------------------

set myabitrate=128

:-------------------
:set the video bitrate to use here
:-------------------

set myvbitrate=2500

:-------------------
:set the video frame rate you used here
:-------------------

set myfps=30

:-------------------
:End Configuration
:-------------------


mkdir %mypath%\temp
cls

echo AVISource("%mypath%\%mymovie%.avi") > "%mypath%\%mymovie%.avs"
echo Crop(0,0,-0,-0) >> "%D:\Documents and Settings\anthony.1046864403176\Bureau\mes telechargements\x264(2)\x264%\%mymovie%.avs"
echo ConvertToYV12() >> "%D:\Documents and Settings\anthony.1046864403176\Bureau\mes telechargements\x264(2)\x264%\%mymovie%.avs"

echo ======Encoding MP3 audio======[/codebox]

Offline Juan

  • Veteran Member
  • Posts: 5956
  • TMS
    • View Profile
Tutorial: x264 .mp4 Render
« Reply #59 on: July 04, 2007, 08:51:53 PM »
Quote from: KillaMarci
I can't record in 1280x720 , i can just record in 1280x768  And i don't want to record in 800x600 , so does 1280x768 work aswell?
SA doesnt have 1280x720 res, closest to it is 1280x768 and that works with this tut too.

 

SimplePortal 2.3.7 © 2008-2025, SimplePortal