Avidemux Forum

Avidemux => Stable branch (2.5) discussion => Topic started by: Mikhail on July 27, 2012, 03:57:54 PM

Title: Can't convert to DVD from flv
Post by: Mikhail on July 27, 2012, 03:57:54 PM
Good day! I have a problem. The program can't convert to DVD from flv by the options:
Auto→Optical disk→DVD.
The next time an error appears (the log in attachment) and the programm closes.
Can anybody help me?
Title: Re: Can't convert to DVD from flv
Post by: Jan Gruuthuse on July 28, 2012, 05:50:47 AM
If avidemux 2.5.# crashes every time when you open, if that is what your saying, try this:
use windows explorer and copy text below in its address bar: %appdata%\avidemux and delete its contents, It contains all settings the avidemux settings.
Title: Re: Can't convert to DVD from flv
Post by: Mikhail on July 28, 2012, 06:06:37 AM
Quote from: Jan Gruuthuse on July 28, 2012, 05:50:47 AM
If avidemux 2.5.# crashes every time when you open, if that is what your saying, try this:
use windows explorer and copy text below in its address bar: %appdata%\avidemux and delete its contents, It contains all settings the avidemux settings.

I have done this, but thee are no any contens, see attachment...
Title: Re: Can't convert to DVD from flv
Post by: Mikhail on July 28, 2012, 06:07:17 AM
and
Title: Re: Can't convert to DVD from flv
Post by: Mikhail on July 28, 2012, 06:09:10 AM
So the folder "custom" was already empty
Title: Re: Can't convert to DVD from flv
Post by: Jan Gruuthuse on July 28, 2012, 07:50:36 AM
not folder custom, all content of folder Avidemux: config <- delete
When crashing = by opening avidemux  / not while opening/loading video file
flv can have different codecs inside, if this is H.264 video and HE-AAC audio you better use avidemux 2.6. The dvd feature there is not enabled. Take note what dvd setting is doing in 2.5.6 and apply same changes in 2.6. When you have tweaked this setting to work in 2.6. Save as project. Main menu -> Tinypy Project: Save As Project. Edit the saved project an omit the part where video is loaded and markers are set. Delete lines similar to the bold ones

Quote#PY  <- Needed to identify #
#--automatically built--

adm = Avidemux()
adm.loadVideo("/media/DataB_SATA3/ToProcess/1Upstairs/NDR FS HH HD @200040_15JUL2012/NDR FS HH HD @200040_15JUL2012.trp")
adm.appendVideo("/media/DataB_SATA3/ToProcess/1Upstairs/NDR FS HH HD @200040_15JUL2012/NDR FS HH HD @200040_15JUL2012.001")
adm.appendVideo("/media/DataB_SATA3/ToProcess/1Upstairs/NDR FS HH HD @200040_15JUL2012/NDR FS HH HD @200040_15JUL2012.002")
adm.appendVideo("/media/DataB_SATA3/ToProcess/1Upstairs/NDR FS HH HD @200040_15JUL2012/NDR FS HH HD @200040_15JUL2012.003")
adm.appendVideo("/media/DataB_SATA3/ToProcess/1Upstairs/NDR FS HH HD @200040_15JUL2012/NDR FS HH HD @200040_15JUL2012.004")
adm.clearSegments()
adm.addSegment(0, 0, 1269351988)
adm.addSegment(1, 0, 1271280211)
adm.addSegment(2, 0, 1261210000)
adm.addSegment(3, 0, 1272340000)
adm.addSegment(4, 0, 1289607988)
adm.markerA = 451988
adm.markerB = 175491988

you then can call this from main: menu : custom: py: whatever name you gave should show up there.
Title: Re: Can't convert to DVD from flv
Post by: Mikhail on July 30, 2012, 08:15:17 AM
By programm mediainfo I 've known that audio codec of my video is PCM. Other properties see in attachments. Should I update version avidemux to 2.6 ? It is beta, does the 2.5ver   features remined in this case?
Title: Re: Can't convert to DVD from flv
Post by: Jan Gruuthuse on July 30, 2012, 09:02:37 AM
Most of 2.6 stuff is functional, some not, still work in progress, I use it on daily basis and have 2.5.6 to on the computer, have a go at it.
Title: Re: Can't convert to DVD from flv
Post by: Mikhail on July 30, 2012, 04:04:39 PM
I've upgraded  avidemux to 2.5.6. But the crush is still stay. See log file
Title: Re: Can't convert to DVD from flv
Post by: Mikhail on July 30, 2012, 04:40:32 PM
I' ve saved proect as *.js file. Cliced to its icon to edit but the window error appears -
Windows Script Host
22
About
Scenario: E: \ My Documents \ Video \ DVD.js
Line: 5
Symbol: 1
Error: 'Avidemux' - not defined
Code: 800A1391
Source: Microsoft JScript Runtime Error.

Can I edit it by internal windows notepad?
Title: Re: Can't convert to DVD from flv
Post by: Mikhail on July 30, 2012, 04:49:23 PM
This is the text of my project:

//AD  <- Needed to identify//
//--automatically built--
//--Project: E:\ My Documents \ Videos \DVD.js

var app = new Avidemux();

//** Video **
// 01 videos source
app.load("E:/ÐÅ"ои докÃ'Æ'менÃ'‚Ã'‹/Видео Ã' Ã'„оÃ'‚ика/Nastavniki (2006year).avi");
//01 segments
app.clearSegments();
app.addSegment(0,0,1899);
app.markerA=0;
app.markerB=1898;

//** Postproc **
app.video.setPostProc(3,3,0);

app.video.fps1000 = 25000;

//** Filters **

//** Video Codec conf **
app.video.codec("Copy", "CQ=0", "0 ");

//** Audio **
app.audio.reset();
app.audio.codec("copy",2277760,0,"");
app.audio.normalizeMode=0;
app.audio.normalizeValue=0;
app.audio.delay=0;
app.audio.mixer="NONE";
app.setContainer("AVI");
setSuccess(1);
//app.Exit();

//End of script

And there is the lines similar your bold ones?
Title: Re: Can't convert to DVD from flv
Post by: Jan Gruuthuse on July 31, 2012, 05:04:51 AM
should become like this:

//AD  <- Needed to identify//
//--automatically built--
//--Project: E:\ My Documents \ Videos \DVD.js

var app = new Avidemux();

//** Postproc **
app.video.setPostProc(3,3,0);

app.video.fps1000 = 25000;

//** Filters **
app.video.addFilter("mpresize","w=720","h=408","algo=0");
app.video.addFilter("addblack","left=0","right=0","top=84","bottom=84");

//** Video Codec conf **
app.video.codecPlugin("DBAECD8B-CF29-4846-AF57-B596427FE7D3", "mpeg2video", "2PASSBITRATE=6000", "<?xml version='1.0'?><Mpeg2Config><Mpeg2Options><minBitrate>0</minBitrate><maxBitrate>8000</maxBitrate><xvidRateControl>true</xvidRateControl><bufferSize>224</bufferSize><widescreen>false</widescreen><interlaced>none</interlaced><gopSize>12</gopSize></Mpeg2Options></Mpeg2Config>");

//** Audio **
app.audio.reset();
app.audio.codec("copy",0,279,"3c 3f 78 6d 6c 20 76 65 72 73 69 6f 6e 3d 27 31 2e 30 27 3f 3e 3c 4d 70 65 67 32 43 6f 6e 66 69 67 3e 3c 4d 70 65 67 32 4f 70 74 69 6f 6e 73 3e 3c 6d 69 6e 42 69 74 72 61 74 65 3e 30 3c 2f 6d 69 6e 42 69 74 72 61 74 65 3e 3c 6d 61 78 42 69 74 72 61 74 65 3e 38 30 30 30 3c 2f 6d 61 78 42 69 74 72 61 74 65 3e 3c 78 76 69 64 52 61 74 65 43 6f 6e 74 72 6f 6c 3e 74 72 75 65 3c 2f 78 76 69 64 52 61 74 65 43 6f 6e 74 72 6f 6c 3e 3c 62 75 66 66 65 72 53 69 7a 65 3e 32 32 34 3c 2f 62 75 66 66 65 72 53 69 7a 65 3e 3c 77 69 64 65 73 63 72 65 65 6e 3e 66 61 6c 73 65 3c 2f 77 69 64 65 73 63 72 65 65 6e 3e 3c 69 6e 74 65 72 6c 61 63 65 64 3e 6e 6f 6e 65 3c 2f 69 6e 74 65 72 6c 61 63 65 64 3e 3c 67 6f 70 53 69 7a 65 3e 31 32 3c 2f 67 6f 70 53 69 7a 65 3e 3c 2f 4d 70 65 67 32 4f 70 74 69 6f 6e 73 3e 3c 2f 4d 70 65 67 32 43 6f 6e 66 69 67 3e ");
app.audio.normalizeMode=0;
app.audio.normalizeValue=0;
app.audio.delay=0;
app.audio.mixer="NONE";
app.setContainer("PS", "00 00 00 00 00 00 00 00 ");
setSuccess(1);
//app.Exit();

//End of script

If this is still a problem upgrade to 2.6 instead of 2.5.6.
%appdata%\avidemux\custom\

%appdata%\avidemux6\custom\py\Now when you load same type of video, you can now select this from avidemux text menu: Custom and ToDVD should be showing in that menu, click on it.

I don't have a clue why the APPCRASH occurs, just being a avidemux user
QuoteThe name of the module with the error: libADM_vidEnc_avcodec.dll
   Version of the module with the error: 0.0.0.0
Title: Re: Can't convert to DVD from flv
Post by: Mikhail on July 31, 2012, 06:48:43 AM
I have done all you said. I not find the folder "Custom" and "Ty", so I've created its.  But I can't find in menu "Custom". It must be here (see screenshot)?
Title: Re: Can't convert to DVD from flv
Post by: Mikhail on July 31, 2012, 07:04:26 AM
I've find folder appdata and Custom. Created folder Py there and Py file. No chanches followered
Title: Re: Can't convert to DVD from flv
Post by: Jan Gruuthuse on July 31, 2012, 08:19:00 AM
Sorry,  my mistake. Have mixed up 2.5.6 <> 2.6, slightly different procedure
2.5.6:
1st load video, then apply from menu custom: ToDVD
apologies for inconvenience.
Attachment: Main Text Menu: Custom: ToDVD.js (Custom job)
Title: Re: Can't convert to DVD from flv
Post by: Mikhail on July 31, 2012, 12:28:31 PM
I've done this. See my script:

//AD  <- Needed to identify//
//--automatically built--
//--Project: E:\  My Documents \ Videos \ToDVD.js

var app = new Avidemux();

//** Video **
// 01 videos source
app.load("E:/My Documents/Videos/Nastavniki (2006year).avi");
//01 segments
app.clearSegments();
app.addSegment(0,0,1899);
app.markerA=0;
app.markerB=1898;

//** Postproc **
app.video.setPostProc(3,3,0);

app.video.fps1000 = 25000;

//** Filters **
app.video.addFilter("mpresize","w=720","h=408","algo=0");
app.video.addFilter("addblack","left=0","right=0","top=84","bottom=84");

//** Video Codec conf **
app.video.codecPlugin("DBAECD8B-CF29-4846-AF57-B596427FE7D3", "mpeg2video", "2PASSBITRATE=6000", "<?xml version='1.0'?><Mpeg2Config><Mpeg2Options><minBitrate>0</minBitrate><maxBitrate>8000</maxBitrate><xvidRateControl>true</xvidRateControl><bufferSize>224</bufferSize><widescreen>false</widescreen><interlaced>none</interlaced><gopSize>12</gopSize></Mpeg2Options></Mpeg2Config>");

//** Audio **
app.audio.reset();
app.audio.codec("copy",0,279,"3c 3f 78 6d 6c 20 76 65 72 73 69 6f 6e 3d 27 31 2e 30 27 3f 3e 3c 4d 70 65 67 32 43 6f 6e 66 69 67 3e 3c 4d 70 65 67 32 4f 70 74 69 6f 6e 73 3e 3c 6d 69 6e 42 69 74 72 61 74 65 3e 30 3c 2f 6d 69 6e 42 69 74 72 61 74 65 3e 3c 6d 61 78 42 69 74 72 61 74 65 3e 38 30 30 30 3c 2f 6d 61 78 42 69 74 72 61 74 65 3e 3c 78 76 69 64 52 61 74 65 43 6f 6e 74 72 6f 6c 3e 74 72 75 65 3c 2f 78 76 69 64 52 61 74 65 43 6f 6e 74 72 6f 6c 3e 3c 62 75 66 66 65 72 53 69 7a 65 3e 32 32 34 3c 2f 62 75 66 66 65 72 53 69 7a 65 3e 3c 77 69 64 65 73 63 72 65 65 6e 3e 66 61 6c 73 65 3c 2f 77 69 64 65 73 63 72 65 65 6e 3e 3c 69 6e 74 65 72 6c 61 63 65 64 3e 6e 6f 6e 65 3c 2f 69 6e 74 65 72 6c 61 63 65 64 3e 3c 67 6f 70 53 69 7a 65 3e 31 32 3c 2f 67 6f 70 53 69 7a 65 3e 3c 2f 4d 70 65 67 32 4f 70 74 69 6f 6e 73 3e 3c 2f 4d 70 65 67 32 43 6f 6e 66 69 67 3e ");
app.audio.normalizeMode=0;
app.audio.normalizeValue=0;
app.audio.delay=0;
app.audio.mixer="NONE";
app.setContainer("PS", "00 00 00 00 00 00 00 00 ");
setSuccess(1);
//app.Exit();

//End of script


But after clicing to ToDVD аn Error occurs - illegal character. See attachment. There is mistake?
Title: Re: Can't convert to DVD from flv
Post by: Jan Gruuthuse on July 31, 2012, 12:52:23 PM
Don't see what is going wrong? I've attached ToDVD.js. This one works here. If that does not work in your environment???? Windows English versus your localized Windows or Windows <> Linux?

These you need to leave out! Or you can't use the job for other videos!
//** Video **
// 01 videos source
app.load("E:/My Documents/Videos/Nastavniki (2006year).avi");
//01 segments
app.clearSegments();
app.addSegment(0,0,1899);
app.markerA=0;
app.markerB=1898;

Title: Re: Can't convert to DVD from flv
Post by: Mikhail on July 31, 2012, 01:19:46 PM
I've copied your ToDVD.js to mine folder, run Avidemux. Loaded video. Cliced to ToDVD in menu. Then a message pup up "Incompatible audio
For DVD sound should be in the form of 48 kHz MP2, AC3 or LPCM" (transcription from Russian). I have turned Audio to 48 kHz MP2 or AC3 and the result was the same - en error and avidemux was shut down (log file in attachment )
Title: Re: Can't convert to DVD from flv
Post by: Mikhail on July 31, 2012, 01:34:59 PM
Windows of crushind in attachment
Title: Re: Can't convert to DVD from flv
Post by: Jan Gruuthuse on July 31, 2012, 01:41:15 PM
For DVD, audio must be 48 kHz and one of:
If the audio track from the source video is suitable, the best might be to use it and let the audio to Copy. Else select your favorite encoder (for me it would be TwoLAME).
Don't forget to setup the audio filter. Setup downmixing if needed and don't forget that the audio must be 48 kHz. Use a resampling filter if needed.
So for example, you will set downmixing to Dolby Prologic 2, resampling to 48 kHz, TwoLAME encoder at 160 kb/s.
source: Avidemux wiki: Converting to DVD (http://www.avidemux.org/admWiki/doku.php?id=tutorial:converting_to_dvd)

If that fails: can you upload a 5 second sample/size 20 MB original video that you load in avidemux? To Rapidshare (https://www.rapidshare.com/) or similar service? and provide a link for it here?
Title: Re: Can't convert to DVD from flv
Post by: Mikhail on July 31, 2012, 02:16:37 PM
I configured the audio as you said, but fails remind.
I noticed a feature ââ,¬â€œ text in js-files, which are in avidemux as a default, by opening it in notepad is shown as one long line, but not as a column. But your sample scripts, Iââ,¬â,,¢ve copied and pasted from this forum to notepad and saved as js, in js-files was like in your posts - in the column (each entry begins with a new line). Your last ToDVD.js in attachment is shown as a long line in a notepad. Maybe this is the reason? Link for example of muvie https://rapidshare.com/files/226503885/0.avi
See also attachments
Title: Re: Can't convert to DVD from flv
Post by: Jan Gruuthuse on August 01, 2012, 05:04:19 AM
using 2.5.6 with supplied avi and using auto function optical disc dvd, the program rashes here to:
*********** BACKTRACK **************
/usr/lib/libADM_core.so(ADM_backTrack+0x5c) [0x7f12ca6fb4ac]:0:<ADM_backTrack>:-2
/lib/x86_64-linux-gnu/libc.so.6(+0x364c0) [0x7f12c79ef4c0]:1:<>:-2
/lib/x86_64-linux-gnu/libc.so.6(+0x8bfab) [0x7f12c7a44fab]:2:<>:-2
/usr/lib/ADM_plugins/audioEncoders//libADM_ae_twolame.so(twolame_malloc+0x35) [0x7f12afdc2ff5]:3:<twolame_malloc>:-2
/usr/lib/ADM_plugins/audioEncoders//libADM_ae_twolame.so(psycho_3+0x1651) [0x7f12afdc6211]:4:<psycho_3>:-2
/usr/lib/ADM_plugins/audioEncoders//libADM_ae_twolame.so(+0x54ec) [0x7f12afdc14ec]:5:<>:-2
/usr/lib/ADM_plugins/audioEncoders//libADM_ae_twolame.so(twolame_encode_buffer_interleaved+0xdb) [0x7f12afdc2aeb]:6:<twolame_encode_buffer_interleaved>:-2
/usr/lib/ADM_plugins/audioEncoders//libADM_ae_twolame.so(_ZN19AUDMEncoder_Twolame9getPacketEPhPjS1_+0xbb) [0x7f12afdc03fb]:7:<AUDMEncoder_Twolame::getPacket(unsigned char*, unsigned int*, unsigned int*)>:0
/usr/bin/avidemux2_qt4(_Z17defaultAudioSlaveP7muxerMT+0x3a) [0x50446a]:8:<defaultAudioSlave(muxerMT*)>:0
/usr/lib/nvidia-current/libGL.so.1(+0xa7b74) [0x7f12c7531b74]:9:<>:-2
*********** BACKTRACK **************
Title: Re: Can't convert to DVD from flv
Post by: Jan Gruuthuse on August 01, 2012, 05:40:20 AM
With avidemux 2.6 I was able to process the provided video clip.
The end result is uploaded here: https://rapidshare.com/files/1118400/test.mpg
The Tinypy project for it is in attachment.
Hope this is what you wanted
Title: Re: Can't convert to DVD from flv
Post by: Mikhail on August 01, 2012, 07:13:48 PM
Thanks a lot! If I correctly understood you ver 2.5.6. doesn't work. Can you send me a link for Avidemux 2.6. preferably with russian menu?
Title: Re: Can't convert to DVD from flv
Post by: Jan Gruuthuse on August 02, 2012, 04:22:29 AM
Don't know if there is Russian translation available? Russian translation? (http://www.avidemux.org/smf/index.php?topic=3817.0)
Download available:
http://avidemux.org/nightly/
http://avidemux.razorbyte.com.au/
Title: Re: Can't convert to DVD from flv
Post by: Mikhail on August 02, 2012, 06:17:45 AM
There are 2 versions for Win 32 bit - avidemux_r8108_devel_win32.7z and avidemux_r8108_win32.7z,
Which of them I should download?
Title: Re: Can't convert to DVD from flv
Post by: Mikhail on August 02, 2012, 06:24:03 AM
As I right, These programms without installation. How do I use it? Simply unpack the archieve and run avidemux3.exe?
Title: Re: Can't convert to DVD from flv
Post by: Jan Gruuthuse on August 02, 2012, 06:38:51 AM
on the second link you have installer.
Title: Re: Can't convert to DVD from flv
Post by: Mikhail on August 02, 2012, 08:09:59 AM
Thank you very much. It is work with your ToDVD.py file. But there are some troubles:
- internal function Auto-DVD doesn't work. No any responses after clicking to Auto-DVD
- the programm with your ToDVD.py file doesn't work with another flv muvie (for example see its properties below:

Format: Flash Video
File Size: 49.8 MB


Video
Format: AVC
Format / Info: Advanced Video Codec
Viewing Format: Main@L3.0
The parameter format CABAC: Yes
The parameter format ReFrames: 3 frames
GOP format parameter: M = 1, N = 30
Codec ID: 7
Width: 640 pixels
Height: 480 pixels
Aspect ratio: 4:3
Frame rate mode: Constant
Frame rate: 30.000 frames / sec
Color Space: YUV
Saturation subsampling: 4:2:0
Bit Depth: 8 bits
Scan type: Progressive

Audio
Format: AAC
Format / Info: Advanced Audio Codec
Viewing Format: LC
Codec ID: 10
Channels: 2 channels
The location of channels: Front: LR
Frequency: 44.1 kHz
Compression Method: With the loss of

After clicking to Auto-DVD or Run Project-ToDVD.py appears an errors (see attachments), How to solve this problem?
Title: Re: Can't convert to DVD from flv
Post by: Jan Gruuthuse on August 02, 2012, 09:49:53 AM
Quote- internal function Auto-DVD doesn't work. No any responses after clicking to Auto-DVD
Is not activated, don't know when this will be activated by developers.
QuoteWidth: 640 pixels x Height: 480 pixels
The program tells you: this is not up to dvd specification. DVD is very strict!
Match output to Width: 720 x Height: 576 pixels with one of these options in
Video Output: Filters:
Title: Re: Can't convert to DVD from flv
Post by: Mikhail on August 02, 2012, 11:00:52 AM
Errors again. I used Borders filter. A part of muvie has been saved. See errors
Title: Re: Can't convert to DVD from flv
Post by: Mikhail on August 02, 2012, 11:17:59 AM
the same errors appears using swResize Filter
Title: Re: Can't convert to DVD from flv
Post by: Jan Gruuthuse on August 02, 2012, 12:09:10 PM
QuoteFrame rate: 30.000 frames / sec
30 fps is not dvd PAL specification, that could be case?
In Video Output: Filters:
add from Transform: Resample FPS -> [Configure] -> Mode: 25 (PAL)
move this to 1st position in Active Filters.

Title: Re: Can't convert to DVD from flv
Post by: Mikhail on August 02, 2012, 12:49:48 PM
I can't dounload my video in avidemux ver 2.6. After downloading  Еn error and programm shut down:
Problem signature:
   Problem Event Name: APPCRASH
   Application Name: avidemux.exe
   Application Version: 2.6.0.8108
   Application Timestamp: 5018f061
   The name of the module with the error: StackHash_e98d
   Version of the module with the error: 0.0.0.0
   Module Timestamp error: 00000000
   Exception Code: c0000005
   Exception Offset: 013aa411
   OS Version: 6.1.7601.2.1.0.256.1
   Locale ID: 1049
   Additional Information 1: e98d
   Additional Information 2: e98dfca8bcf81bc1740adb135579ad53
   Additional Information 3: 6eab
   Additional Information 4: 6eabdd9e0dc94904be3b39a1c0583635

Read our privacy statement online:
   http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0419

If the privacy statement available on the Internet, read offline:
   D: \ Windows \ system32 \ ru-RU \ erofflps.txt
Title: Re: Can't convert to DVD from flv
Post by: Jan Gruuthuse on August 02, 2012, 01:19:01 PM
Quote from: Mikhail on August 02, 2012, 12:49:48 PM
I can't dounload my video in avidemux ver 2.6.
Same .flv  or .avi  video or new video?
Title: Re: Can't convert to DVD from flv
Post by: Mikhail on August 02, 2012, 01:22:26 PM
same flv
Title: Re: Can't convert to DVD from flv
Post by: Jan Gruuthuse on August 02, 2012, 02:46:21 PM
have no idea. Sometimes on 1st usage this happens here to? remove the .idx2 made for that clip and restart. Most of times this works.
Other issue could be if you have changed default settings in Edit -> Preferences?
Video: video display, don't set to opengl or vdpau if your card is not nvidia.
Threading: use Auto-detect, if using Custom don't count virtual processor as processor: Intel dual core with hyper-threading. Shows up as 4 cpu. Only use 2.
Title: Re: Can't convert to DVD from flv
Post by: Mikhail on August 02, 2012, 03:21:19 PM
You was right - the case was in irregular settings in Edit -> Preferences (to opengl was set). I've fixed it, set filters
Transform: Resample FPS -> [Configure] -> Mode: 25 (PAL)
swResize, vdpau: resize or openGL resize: Resize: W: 720 H:576

And the encoding was done succesfully!
So it possible to write a manual for converting to DVD by Avidemux.
A last question - Does importance the container of  muvie (avi or mpeg or other type) for playback on a DVD player (in my case, company Pioneer). What  container  is best suited for playback videos on the external DVD player?
Title: Re: Can't convert to DVD from flv
Post by: Jan Gruuthuse on August 02, 2012, 04:11:43 PM
Yes, when you want the dvd to behave as dvd then the created videos are good to be used for DVD authoring program like DVDStyler (http://www.dvdstyler.org/ru/) to create DVD that would play in DVD player.
Title: Work arround crashing flv (AVC) video with toDVD.py
Post by: Jan Gruuthuse on August 02, 2012, 04:20:30 PM
If it would ever happen when saving the FLV to DVD mpg this window pops up:
File too short
This workaround may work for you to: Load flv in avidemux 2.6 and save video with these settings:
Load the newly created video.mp4 in avidemux 2.6. Apply custom toDVD.py.
Apply video filter(s) if required: size 720x576, fps 25 and save, the mpg now created should be dvd compliant