Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2012
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.81 KB | None | 0 0
  1. [Error] Log for job72 (audio, Les Armes Humaines.avi_track_1_.avs -> Les Armes Humaines.avi_track_1__audio.m4a)
  2. -[Information] [23/09/2012 15:57:33] Started handling job
  3. -[Information] [23/09/2012 15:57:33] Preprocessing
  4. -[Information] [23/09/2012 15:57:33] Encoding started
  5. -[Information] [23/09/2012 15:57:33] MediaInfo
  6. --[Information] File: E:\docs\nmgvpkuf.lbp\Les Armes Humaines.avi_track_1_.avs
  7. --[Information] AVS input file detected. Getting media information from AviSynth.
  8. --[Information] General
  9. ---[Information] Format: AVS
  10. ---[Information] FormatString: AviSynth Script
  11. ---[Information] FileSize: 251
  12. ---[Information] PlayTime: 00:45:33.9690000
  13. --[Information] Audio
  14. ---[Information] ID: 0
  15. ---[Information] StreamOrder:
  16. ---[Information] Format: AVS
  17. ---[Information] FormatProfile:
  18. ---[Information] FormatSettingsSBR:
  19. ---[Information] FormatSettingsPS:
  20. ---[Information] SamplingRate: 44100
  21. ---[Information] SamplingRateString: 44100
  22. ---[Information] Channels: 2
  23. ---[Information] ChannelsString: 2 channels
  24. ---[Information] ChannelPositionsString2:
  25. ---[Information] BitRateMode: CBR
  26. ---[Information] Delay: 0
  27. ---[Information] Title:
  28. ---[Information] Language:
  29. ---[Information] LanguageString:
  30. ---[Information] Default:
  31. ---[Information] DefaultString:
  32. ---[Information] Forced:
  33. ---[Information] ForcedString:
  34. -[Information] [23/09/2012 15:57:33] Trying to open the file with Import()
  35. -[Information] [23/09/2012 15:57:34] Successfully opened the file with Import()
  36. -[Information] [23/09/2012 15:57:34] no channel positions found. Downmix result may be wrong.
  37. -[Information] [23/09/2012 15:57:34] ignoring downmix as there are only 2 channels
  38. -[Information] [23/09/2012 15:57:34] Avisynth script
  39. --[NoImage] Import("E:\docs\nmgvpkuf.lbp\Les Armes Humaines.avi_track_1_.avs")
  40. --[NoImage] DelayAudio(71.0/1000.0)
  41. --[NoImage] # detected channels: 2 channels
  42. --[NoImage] Normalize()
  43. --[NoImage] return last
  44. --[NoImage] # 5.1 Channels L,R,C,LFE,SL,SR -> stereo + LFE
  45. --[NoImage] function c6_stereo(clip a)
  46. --[NoImage] {
  47. --[NoImage] fl = GetChannel(a, 1)
  48. --[NoImage] fr = GetChannel(a, 2)
  49. --[NoImage] fc = GetChannel(a, 3)
  50. --[NoImage] lf = GetChannel(a, 4)
  51. --[NoImage] sl = GetChannel(a, 5)
  52. --[NoImage] sr = GetChannel(a, 6)
  53. --[NoImage] fl_sl = MixAudio(fl, sl, 0.2929, 0.2929)
  54. --[NoImage] fr_sr = MixAudio(fr, sr, 0.2929, 0.2929)
  55. --[NoImage] fc_lf = MixAudio(fc, lf, 0.2071, 0.2071)
  56. --[NoImage] l = MixAudio(fl_sl, fc_lf, 1.0, 1.0)
  57. --[NoImage] r = MixAudio(fr_sr, fc_lf, 1.0, 1.0)
  58. --[NoImage] return MergeChannels(l, r)
  59. --[NoImage] }
  60. --[NoImage] # 5 Channels L,R,C,SL,SR or L,R,LFE,SL,SR-> Stereo
  61. --[NoImage] function c5_stereo(clip a)
  62. --[NoImage] {
  63. --[NoImage] fl = GetChannel(a, 1)
  64. --[NoImage] fr = GetChannel(a, 2)
  65. --[NoImage] fc = GetChannel(a, 3)
  66. --[NoImage] sl = GetChannel(a, 4)
  67. --[NoImage] sr = GetChannel(a, 5)
  68. --[NoImage] fl_sl = MixAudio(fl, sl, 0.3694, 0.3694)
  69. --[NoImage] fr_sr = MixAudio(fr, sr, 0.3694, 0.3694)
  70. --[NoImage] l = MixAudio(fl_sl, fc, 1.0, 0.2612)
  71. --[NoImage] r = MixAudio(fr_sr, fc, 1.0, 0.2612)
  72. --[NoImage] return MergeChannels(l, r)
  73. --[NoImage] }
  74. --[NoImage] # 5 Channels L,R,C,LFE,S -> Stereo
  75. --[NoImage] function c52_stereo(clip a)
  76. --[NoImage] {
  77. --[NoImage] fl = GetChannel(a, 1)
  78. --[NoImage] fr = GetChannel(a, 2)
  79. --[NoImage] fc = GetChannel(a, 3)
  80. --[NoImage] lf = GetChannel(a, 4)
  81. --[NoImage] bc = GetChannel(a, 5)
  82. --[NoImage] fl_bc = MixAudio(fl, bc, 0.3205, 0.2265)
  83. --[NoImage] fr_bc = MixAudio(fr, bc, 0.3205, 0.2265)
  84. --[NoImage] fc_lf = MixAudio(fc, lf, 0.2265, 0.2265)
  85. --[NoImage] l = MixAudio(fl_bc, fc_lf, 1.0, 1.0)
  86. --[NoImage] r = MixAudio(fr_bc, fc_lf, 1.0, 1.0)
  87. --[NoImage] return MergeChannels(l, r)
  88. --[NoImage] }
  89. --[NoImage] # 4 Channels Quadro L,R,SL,SR -> Stereo
  90. --[NoImage] function c4_stereo(clip a)
  91. --[NoImage] {
  92. --[NoImage] fl = GetChannel(a, 1)
  93. --[NoImage] fr = GetChannel(a, 2)
  94. --[NoImage] sl = GetChannel(a, 3)
  95. --[NoImage] sr = GetChannel(a, 4)
  96. --[NoImage] l = MixAudio(fl, sl, 0.5, 0.5)
  97. --[NoImage] r = MixAudio(fr, sr, 0.5, 0.5)
  98. --[NoImage] return MergeChannels(l, r)
  99. --[NoImage] }
  100. --[NoImage] # 4 Channels L,R,C,LFE or L,R,S,LFE or L,R,C,S -> Stereo
  101. --[NoImage] function c42_stereo(clip a)
  102. --[NoImage] {
  103. --[NoImage] fl = GetChannel(a, 1)
  104. --[NoImage] fr = GetChannel(a, 2)
  105. --[NoImage] fc = GetChannel(a, 3)
  106. --[NoImage] lf = GetChannel(a, 4)
  107. --[NoImage] fc_lf = MixAudio(fc, lf, 0.2929, 0.2929)
  108. --[NoImage] l = MixAudio(fl, fc_lf, 0.4142, 1.0)
  109. --[NoImage] r = MixAudio(fr, fc_lf, 0.4142, 1.0)
  110. --[NoImage] return MergeChannels(l, r)
  111. --[NoImage] }
  112. --[NoImage] # 3 Channels L,R,C or L,R,S or L,R,LFE -> Stereo
  113. --[NoImage] function c3_stereo(clip a)
  114. --[NoImage] {
  115. --[NoImage] fl = GetChannel(a, 1)
  116. --[NoImage] fr = GetChannel(a, 2)
  117. --[NoImage] fc = GetChannel(a, 3)
  118. --[NoImage] l = MixAudio(fl, fc, 0.5858, 0.4142)
  119. --[NoImage] r = MixAudio(fr, fc, 0.5858, 0.4142)
  120. --[NoImage] return MergeChannels(l, r)
  121. --[NoImage] }
  122. --[NoImage] # 5.1 Channels L,R,C,LFE,SL,SR -> Dolby ProLogic
  123. --[NoImage] function c6_dpl(clip a)
  124. --[NoImage] {
  125. --[NoImage] fl = GetChannel(a, 1)
  126. --[NoImage] fr = GetChannel(a, 2)
  127. --[NoImage] fc = GetChannel(a, 3)
  128. --[NoImage] sl = GetChannel(a, 5)
  129. --[NoImage] sr = GetChannel(a, 6)
  130. --[NoImage] bc = MixAudio(sl, sr, 0.2265, 0.2265)
  131. --[NoImage] fl_fc = MixAudio(fl, fc, 0.3205, 0.2265)
  132. --[NoImage] fr_fc = MixAudio(fr, fc, 0.3205, 0.2265)
  133. --[NoImage] l = MixAudio(fl_fc, bc, 1.0, 1.0)
  134. --[NoImage] r = MixAudio(fr_fc, bc, 1.0, -1.0)
  135. --[NoImage] return MergeChannels(l, r)
  136. --[NoImage] }
  137. --[NoImage] # 5 Channels L,R,C,SL,SR -> Dolby ProLogic
  138. --[NoImage] function c5_dpl(clip a)
  139. --[NoImage] {
  140. --[NoImage] fl = GetChannel(a, 1)
  141. --[NoImage] fr = GetChannel(a, 2)
  142. --[NoImage] fc = GetChannel(a, 3)
  143. --[NoImage] sl = GetChannel(a, 4)
  144. --[NoImage] sr = GetChannel(a, 5)
  145. --[NoImage] bc = MixAudio(sl, sr, 0.2265, 0.2265)
  146. --[NoImage] fl_fc = MixAudio(fl, fc, 0.3205, 0.2265)
  147. --[NoImage] fr_fc = MixAudio(fr, fc, 0.3205, 0.2265)
  148. --[NoImage] l = MixAudio(fl_fc, bc, 1.0, 1.0)
  149. --[NoImage] r = MixAudio(fr_fc, bc, 1.0, -1.0)
  150. --[NoImage] return MergeChannels(l, r)
  151. --[NoImage] }
  152. --[NoImage] # 5 Channels L,R,LFE,SL,SR -> Dolby ProLogic
  153. --[NoImage] function c52_dpl(clip a)
  154. --[NoImage] {
  155. --[NoImage] fl = GetChannel(a, 1)
  156. --[NoImage] fr = GetChannel(a, 2)
  157. --[NoImage] sl = GetChannel(a, 4)
  158. --[NoImage] sr = GetChannel(a, 5)
  159. --[NoImage] bc = MixAudio(sl, sr, 0.2929, 0.2929)
  160. --[NoImage] l = MixAudio(fl, bc, 0.4142, 1.0)
  161. --[NoImage] r = MixAudio(fr, bc, 0.4142, -1.0)
  162. --[NoImage] return MergeChannels(l, r)
  163. --[NoImage] }
  164. --[NoImage] # 5 Channels L,R,C,LFE,S -> Dolby ProLogic
  165. --[NoImage] function c53_dpl(clip a)
  166. --[NoImage] {
  167. --[NoImage] fl = GetChannel(a, 1)
  168. --[NoImage] fr = GetChannel(a, 2)
  169. --[NoImage] fc = GetChannel(a, 3)
  170. --[NoImage] bc = GetChannel(a, 5)
  171. --[NoImage] fl_fc = MixAudio(fl, fc, 0.4142, 0.2929)
  172. --[NoImage] fr_fc = MixAudio(fr, fc, 0.4142, 0.2929)
  173. --[NoImage] l = MixAudio(fl_fc, bc, 1.0, 0.2929)
  174. --[NoImage] r = MixAudio(fr_fc, bc, 1.0, -0.2929)
  175. --[NoImage] return MergeChannels(l, r)
  176. --[NoImage] }
  177. --[NoImage] # 4 Channels Quadro L,R,SL,SR -> Dolby ProLogic
  178. --[NoImage] function c4_dpl(clip a)
  179. --[NoImage] {
  180. --[NoImage] fl = GetChannel(a, 1)
  181. --[NoImage] fr = GetChannel(a, 2)
  182. --[NoImage] sl = GetChannel(a, 3)
  183. --[NoImage] sr = GetChannel(a, 4)
  184. --[NoImage] bc = MixAudio(sl, sr, 0.2929, 0.2929)
  185. --[NoImage] l = MixAudio(fl, bc, 0.4142, 1.0)
  186. --[NoImage] r = MixAudio(fr, bc, 0.4142, -1.0)
  187. --[NoImage] return MergeChannels(l, r)
  188. --[NoImage] }
  189. --[NoImage] # 4 Channels L,R,LFE,S -> Dolby ProLogic
  190. --[NoImage] function c42_dpl(clip a)
  191. --[NoImage] {
  192. --[NoImage] fl = GetChannel(a, 1)
  193. --[NoImage] fr = GetChannel(a, 2)
  194. --[NoImage] bc = GetChannel(a, 4)
  195. --[NoImage] l = MixAudio(fl, bc, 0.5858, 0.4142)
  196. --[NoImage] r = MixAudio(fr, bc, 0.5858, -0.4142)
  197. --[NoImage] return MergeChannels(l, r)
  198. --[NoImage] }
  199. --[NoImage] # 4 Channels L,R,C,S -> Dolby ProLogic
  200. --[NoImage] function c43_dpl(clip a)
  201. --[NoImage] {
  202. --[NoImage] fl = GetChannel(a, 1)
  203. --[NoImage] fr = GetChannel(a, 2)
  204. --[NoImage] fc = GetChannel(a, 3)
  205. --[NoImage] bc = GetChannel(a, 4)
  206. --[NoImage] fl_fc = MixAudio(fl, fc, 0.4142, 0.2929)
  207. --[NoImage] fr_fc = MixAudio(fr, fc, 0.4142, 0.2929)
  208. --[NoImage] l = MixAudio(fl_fc, bc, 1.0, 0.2929)
  209. --[NoImage] r = MixAudio(fr_fc, bc, 1.0, -0.2929)
  210. --[NoImage] return MergeChannels(l, r)
  211. --[NoImage] }
  212. --[NoImage] # 3 Channels L,R,S -> Dolby ProLogic
  213. --[NoImage] function c3_dpl(clip a)
  214. --[NoImage] {
  215. --[NoImage] fl = GetChannel(a, 1)
  216. --[NoImage] fr = GetChannel(a, 2)
  217. --[NoImage] bc = GetChannel(a, 3)
  218. --[NoImage] l = MixAudio(fl, bc, 0.5858, 0.4142)
  219. --[NoImage] r = MixAudio(fr, bc, 0.5858, -0.4142)
  220. --[NoImage] return MergeChannels(l, r)
  221. --[NoImage] }
  222. --[NoImage] # 5.1 Channels L,R,C,LFE,SL,SR -> Dolby ProLogic II
  223. --[NoImage] function c6_dpl2(clip a)
  224. --[NoImage] {
  225. --[NoImage] fl = GetChannel(a, 1)
  226. --[NoImage] fr = GetChannel(a, 2)
  227. --[NoImage] fc = GetChannel(a, 3)
  228. --[NoImage] sl = GetChannel(a, 5)
  229. --[NoImage] sr = GetChannel(a, 6)
  230. --[NoImage] ssl = MixAudio(sl, sr, 0.2818, 0.1627)
  231. --[NoImage] ssr = MixAudio(sl, sr, -0.1627, -0.2818)
  232. --[NoImage] fl_fc = MixAudio(fl, fc, 0.3254, 0.2301)
  233. --[NoImage] fr_fc = MixAudio(fr, fc, 0.3254, 0.2301)
  234. --[NoImage] l = MixAudio(fl_fc, ssl, 1.0, 1.0)
  235. --[NoImage] r = MixAudio(fr_fc, ssr, 1.0, 1.0)
  236. --[NoImage] return MergeChannels(l, r)
  237. --[NoImage] }
  238. --[NoImage] # 5 Channels L,R,C,SL,SR -> Dolby ProLogic II
  239. --[NoImage] function c5_dpl2(clip a)
  240. --[NoImage] {
  241. --[NoImage] fl = GetChannel(a, 1)
  242. --[NoImage] fr = GetChannel(a, 2)
  243. --[NoImage] fc = GetChannel(a, 3)
  244. --[NoImage] sl = GetChannel(a, 4)
  245. --[NoImage] sr = GetChannel(a, 5)
  246. --[NoImage] ssl = MixAudio(sl, sr, 0.2818, 0.1627)
  247. --[NoImage] ssr = MixAudio(sl, sr, -0.1627, -0.2818)
  248. --[NoImage] fl_fc = MixAudio(fl, fc, 0.3254, 0.2301)
  249. --[NoImage] fr_fc = MixAudio(fr, fc, 0.3254, 0.2301)
  250. --[NoImage] l = MixAudio(fl_fc, ssl, 1.0, 1.0)
  251. --[NoImage] r = MixAudio(fr_fc, ssr, 1.0, 1.0)
  252. --[NoImage] return MergeChannels(l, r)
  253. --[NoImage] }
  254. --[NoImage] # 5 Channels L,R,LFE,SL,SR -> Dolby ProLogic II
  255. --[NoImage] function c52_dpl2(clip a)
  256. --[NoImage] {
  257. --[NoImage] fl = GetChannel(a, 1)
  258. --[NoImage] fr = GetChannel(a, 2)
  259. --[NoImage] sl = GetChannel(a, 4)
  260. --[NoImage] sr = GetChannel(a, 5)
  261. --[NoImage] ssl = MixAudio(sl, sr, 0.3714, 0.2144)
  262. --[NoImage] ssr = MixAudio(sl, sr, -0.2144, -0.3714)
  263. --[NoImage] l = MixAudio(fl, ssl, 0.4142, 1.0)
  264. --[NoImage] r = MixAudio(fr, ssr, 0.4142, 1.0)
  265. --[NoImage] return MergeChannels(l, r)
  266. --[NoImage] }
  267. --[NoImage] # 4 Channels Quadro L,R,SL,SR -> Dolby ProLogic II
  268. --[NoImage] function c4_dpl2(clip a)
  269. --[NoImage] {
  270. --[NoImage] fl = GetChannel(a, 1)
  271. --[NoImage] fr = GetChannel(a, 2)
  272. --[NoImage] sl = GetChannel(a, 3)
  273. --[NoImage] sr = GetChannel(a, 4)
  274. --[NoImage] ssl = MixAudio(sl, sr, 0.3714, 0.2144)
  275. --[NoImage] ssr = MixAudio(sl, sr, -0.2144, -0.3714)
  276. --[NoImage] l = MixAudio(fl, ssl, 0.4142, 1.0)
  277. --[NoImage] r = MixAudio(fr, ssr, 0.4142, 1.0)
  278. --[NoImage] return MergeChannels(l, r)
  279. --[NoImage] }
  280. -[Information] [23/09/2012 15:57:34] Commandline used: -ignorelength -lc -br 64000 -if - -of "{0}"
  281. -[Information] [23/09/2012 15:57:34] Avisynth script environment opened
  282. -[Information] [23/09/2012 15:57:34] Script loaded
  283. -[Information] Output Decoder
  284. --[Information] [23/09/2012 15:57:34] Channels: 2
  285. --[Information] [23/09/2012 15:57:35] Bits per sample: 16
  286. --[Information] [23/09/2012 15:57:35] Sample rate: 44100
  287. -[Information] [23/09/2012 15:57:35] Commandline: C:\Program Files (x86)\MeGUI\tools\eac3to\neroAacEnc.exe -ignorelength -lc -br 64000 -if - -of "E:\docs\nmgvpkuf.lbp\Les Armes Humaines.avi_track_1__audio.m4a"
  288. -[Information] [23/09/2012 15:57:35] Encoder process started
  289. -[Error] [23/09/2012 15:58:07] An error occurred
  290. --[Error] [23/09/2012 15:58:07] Exception message: FFAudioSource: Seeking is severely broken
  291. --[Error] [23/09/2012 15:58:07] Stacktrace: à MeGUI.AviSynthAudioEncoder.encode()
  292. --[Error] [23/09/2012 15:58:07] Inner exception: null
  293. -[Information] [23/09/2012 15:58:07] Job completed
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement