Home > dvdstyler error > dvdstyler error while parsing header

Dvdstyler Error While Parsing Header

authoring application Brought to you by: ntalex Summary Files Reviews Support Wiki Mailing Lists Tickets ▾ Bugs Feature Requests News Discussion Donate Code Create Ticket View Stats Group common Searches Changes Closed Tickets Open Tickets Help Formatting Help #391 Problem with PCM audio in menu Milestone: common Status: open Owner: Alex Thuering Labels: core (153) Priority: 5 Updated: 2012-11-20 Created: 2011-06-05 Creator: Scott A. Conway Private: No I have discovered a bug in the menu editor that prevents an LPCM (48KHz, 16-bit, big-endian) from being loaded in as background music for the menu. Of course, it works without a problem with both AC3 and MP2, but I get an error whenever I attempt to load the LPCM track in question, and I verified it as a properly formatted file beforehand. I also discovered that, for some reason, it will load a WAV file as well, even though it forces a re-encode to MP2 whenever this is done. Since DVDStyler has the excellent features of allowing the command line to be visible as it runs, and because it can be configured to not delete the intermediate files during DVD creation, I was able to force the LPCM track into the menu by hand using the information from those two features, and the DVD now plays perfectly, both the menu and the body of the video itself...all in proper LPCM audio. However, I'm not so sure others will be as resourceful in forcing a workaround as I was, so I wanted to let you know about the problem. The error message I get when attempting to load the LPCM track is "/oldpink/menu.pcm: Error while parsing header" It appears that at least the menu section of the program is having difficulty in recognizing LPCM and errors out every time. By contrast, when it came to adding the video itself, once again with LPCM as the entire audio track, I did not get any errors at all, and was in fact able to check the "do not remultiplex/transcode" box on the video file itself, allowing a direct DVDAUTHOR build from there. As I said, I can get around this problem on my own in the future, but I figured developers who have created such an excellent program would prefer to have it as close to perfection as possible. It's really pretty damn close to that! Thanks, -Scott Discussion Scott A. Conway - 2011-06-06 Something else just occurred to me about LPCM, which is that MPLEX is sensitive about filename extensions, and I discovered that even a completely valid LPCM file, if given any extension other than ".lpcm," fails to

Package DVDStyler (Revision 443465f4ce84ccb71dbcd304fd20e915) Currently displaying revision 443465f4ce84ccb71dbcd304fd20e915, show latest diff -ur DVDStyler-1.8.3.orig/src/mediaenc_ffmpeg.cpp DVDStyler-1.8.3/src/mediaenc_ffmpeg.cpp --- DVDStyler-1.8.3.orig/src/mediaenc_ffmpeg.cpp 2011-04-02 19:14:55.000000000 +0200 +++ DVDStyler-1.8.3/src/mediaenc_ffmpeg.cpp 2011-06-13 19:29:56.309456580 +0200 @@ -141,7 +141,7 @@ AVCodecContext* c = m_videoStm->codec; c->codec_id = (CodecID) codecId; - c->codec_type = CODEC_TYPE_VIDEO; + c->codec_type = AVMEDIA_TYPE_VIDEO; c->bit_rate = videoBitrate * 1000; wxSize frameSize = GetFrameSize(videoFormat); c->width = frameSize.GetWidth(); @@ https://sourceforge.net/p/dvdstyler/bugs/391/ -176,7 +176,7 @@ AVCodecContext* c = m_audioStm->codec; c->codec_id = (CodecID) codecId; - c->codec_type = CODEC_TYPE_AUDIO; + c->codec_type = AVMEDIA_TYPE_AUDIO; c->bit_rate = 64000; c->sample_rate = 48000; c->sample_fmt = SAMPLE_FMT_S16; @@ -339,7 +339,7 @@ AVCodecContext* c = m_audioStm->codec; pkt.size= avcodec_encode_audio(c, m_audioOutbuf, AUDIO_BUF_SIZE, m_samples); pkt.pts= av_rescale_q(c->coded_frame->pts, c->time_base, https://pmbs.links2linux.org/package/view_file/Multimedia/DVDStyler/DVDStyler-ffmpeg.patch?expand=1&rev=443465f4ce84ccb71dbcd304fd20e915 m_audioStm->time_base); - pkt.flags |= PKT_FLAG_KEY; + pkt.flags |= AV_PKT_FLAG_KEY; pkt.stream_index= m_audioStm->index; pkt.data= m_audioOutbuf; @@ -365,7 +365,7 @@ pkt.pts= av_rescale_q(c->coded_frame->pts, c->time_base, m_videoStm->time_base); if(c->coded_frame->key_frame) - pkt.flags |= PKT_FLAG_KEY; + pkt.flags |= AV_PKT_FLAG_KEY; pkt.stream_index = m_videoStm->index; pkt.data = m_videoOutbuf; pkt.size = out_size; diff -ur DVDStyler-1.8.3.orig/src/mediatrc_ffmpeg.cpp DVDStyler-1.8.3/src/mediatrc_ffmpeg.cpp --- DVDStyler-1.8.3.orig/src/mediatrc_ffmpeg.cpp 2011-03-10 21:08:22.000000000 +0100 +++ DVDStyler-1.8.3/src/mediatrc_ffmpeg.cpp 2011-06-13 22:07:46.959596610 +0200 @@ -411,7 +411,7 @@ frame_rate.num = rfps; frame_rate.den = rfps_base; - enc->rate_emu = rate_emu; + //enc->rate_emu = rate_emu; if (disableVideo) st->discard = AVDISCARD_ALL; break; @@ -508,7 +508,7 @@ /* check filename in case of an image number is expected */ if (oc->oformat->flags & AVFMT_NEEDNUMBER) { if (!av_filename_number_test(oc->filename)) { - PrintError(fileName, AVERROR_NUMEXPECTED); + PrintError(fileName, AVERROR(EINVAL)); return false; } } @@ -542,7 +542,7 @@ void wxFfmpegMediaTranscoder::PrintError(const wxString& msg, int err) { switch (err) { - case AVERROR_NUMEXPECTED: + case AVERROR(E

Package DVDStyler (Revision ed87cdcd6287e55f14eb75fdd8309ebf) Currently displaying revision ed87cdcd6287e55f14eb75fdd8309ebf, show latest diff -Nur DVDStyler-1.8.4.2-orig/src/mediaenc_ffmpeg.cpp DVDStyler-1.8.4.2/src/mediaenc_ffmpeg.cpp --- DVDStyler-1.8.4.2-orig/src/mediaenc_ffmpeg.cpp https://pmbs.links2linux.de/package/view_file/Multimedia/DVDStyler/DVDStyler-ffmpeg.patch?expand=1&rev=ed87cdcd6287e55f14eb75fdd8309ebf 2011-07-26 12:13:43.917132372 +0200 +++ DVDStyler-1.8.4.2/src/mediaenc_ffmpeg.cpp 2011-07-26 12:15:34.357272776 +0200 @@ -321,7 http://www.videoredo.net/msgBoard/archive/index.php/t-3118.html +321,7 @@ return false; } pkt.pts = av_rescale_q(c->coded_frame->pts, c->time_base, m_audioStm->time_base); - pkt.flags |= PKT_FLAG_KEY; + pkt.flags |= AV_PKT_FLAG_KEY; pkt.stream_index = m_audioStm->index; pkt.data = m_audioOutbuf; @@ -350,7 +350,7 @@ pkt.pts = av_rescale_q(c->coded_frame->pts, c->time_base, m_videoStm->time_base); if (c->coded_frame->key_frame) - pkt.flags dvdstyler error |= PKT_FLAG_KEY; + pkt.flags |= AV_PKT_FLAG_KEY; pkt.stream_index = m_videoStm->index; pkt.data = m_videoOutbuf; pkt.size = out_size; diff -Nur DVDStyler-1.8.4.2-orig/src/mediatrc_ffmpeg.cpp DVDStyler-1.8.4.2/src/mediatrc_ffmpeg.cpp --- DVDStyler-1.8.4.2-orig/src/mediatrc_ffmpeg.cpp 2011-07-26 12:13:43.916132360 +0200 +++ DVDStyler-1.8.4.2/src/mediatrc_ffmpeg.cpp 2011-07-26 12:39:25.843785823 +0200 @@ -250,7 +250,7 @@ FFSinkContext *priv = (FFSinkContext*) ctx->priv; int pix_fmts[] = { priv->pix_fmt, PIX_FMT_NONE }; - avfilter_set_common_formats(ctx, avfilter_make_format_list(pix_fmts)); dvdstyler error while + avfilter_set_common_pixel_formats(ctx, avfilter_make_format_list(pix_fmts)); return 0; } @@ -750,7 +750,7 @@ /* check filename in case of an image number is expected */ if (oc->oformat->flags & AVFMT_NEEDNUMBER) { if (!av_filename_number_test(oc->filename)) { - PrintError(fileName, AVERROR_NUMEXPECTED); + PrintError(fileName, AVERROR(EINVAL)); return false; } } @@ -784,7 +784,7 @@ void wxFfmpegMediaTranscoder::PrintError(const wxString& msg, int err) { switch (err) { - case AVERROR_NUMEXPECTED: + case AVERROR(EINVAL): wxLogError(wxT("%s: Incorrect image filename syntax.\n" "Use '%%d' to specify the image number:\n" " for img1.jpg, img2.jpg, ..., use 'img%%d.jpg';\n" @@ -793,7 +793,7 @@ case AVERROR_INVALIDDATA: wxLogError(wxT("%s: Error while parsing header"), msg.c_str()); break; - case AVERROR_NOFMT: + case AVERROR(EILSEQ): wxLogError(wxT("%s: Unknown format"), msg.c_str()); break; case AVERROR(EIO): @@ -821,7 +821,7 @@ } if(*p == -1 && !( st->codec->codec_id==CODEC_ID_MJPEG - && st->codec->strict_std_compliance <= FF_COMPLIANCE_INOFFICIAL + && st->codec->strict_std_compliance <= FF_COMPLIANCE_UNOFFICIAL && ( st->codec->pix_fmt == PIX_FMT_YUV420P || st->codec->pix_fmt == PIX_FMT_YUV422P))) st->codec->pix_fmt = codec->pix_fmts[0]; @@

edited by VRD with a file association of either .vob or .mpeg using DVDStyler ?? When I try to start a new project using DVD styler it does not recognize the .vob or .mpeg formats. I believe it can only work with .xml files or .jpeg. I know on this forum I've heard of a few of you using it to author maybe you can let me in on the secret. Thanks ! zaphod7501October 3rd, 2006, 10:28 PMThe xml are the project files, similar to the vprj in VideoReDo. You add mpegs and vob's from the "Directories" tab or by dragging from Window's Explorer directly to the bar at the bottom. At the most basic level, you'll need a button for each title that "Jumps" to the desired mpeg (title). (right-click for properties on almost everything) There aren't any templates so you have to start from scratch. I created blank setups with generic placeholders for buttons and images so I would have a starting point for TV shows. JeromeOctober 4th, 2006, 03:41 PMI tryed your advice. The TIVO files that were edited by VRD are not recognized by DVDstyler. I only get a blank page when browsing to open a folder with the files for a new project. In other words there is no file association between DVDstyler files and video redo files. I can't drag and drop an MPG file it to the sidebar only to the bottom bar. Once I do that the functionality of adding bottons does not work. I tryed just burning a dvd and it came up with the following errors and the " failed the procedure : Prepare Cleaning temporary directory Create VOB files Fix MPEG-file: C:\Documents and Settings\HP_Owner\My Documents\My TiVo Recordings\Johnny Cash in San Quentin (Recorded Nov 21, 2005, MOMUSIC) Styler.mpg warning: couldn't find any valid system header. I'm continuing anyway DemultiplexingXXX : [audio 01 video 01] [ 0.01%] DemultiplexingXXX : [audio 01 video 01] [ 5.00%] DemultiplexingXXX : [audio 01 video 01] [ 10.00%] DemultiplexingXXX : [audio 01 video 01] [ 15.00%] DemultiplexingXXX : [audio 01 vide

 

Related content

dvdstyler error 42

Dvdstyler Error table id toc tbody tr td div id toctitle Contents div ul li a href Dvdstyler Error Transcoding a li ul td tr tbody table p cross-platform DVD authoring application Brought to you by ntalex Summary Files Reviews Support Wiki Mailing Lists Tickets Bugs Feature Requests News Discussion Donate Code Create relatedl Topic Stats Graph Forums Help Help Formatting Help p h id Dvdstyler Error Transcoding p Subtitles error Forum Help Creator giuseppe Created - - Updated - - giuseppe - - - dvdstyler error transcoding mp During the authorizing DVD styler gives error when it must encode

dvdstyler error creation of menu

Dvdstyler Error Creation Of Menu table id toc tbody tr td div id toctitle Contents div ul li a href Dvdstyler Error Transcoding a li li a href Dvdstyler Menu Does Not Work a li li a href Dvdstyler Menu Templates a li li a href Dvdstyler Chapter Menu a li ul td tr tbody table p cross-platform DVD authoring application Brought to you by ntalex Summary Files Reviews Support Wiki Mailing Lists Tickets Bugs Feature Requests News Discussion Donate Code Create Topic Stats Graph Forums Help relatedl Help Formatting Help Please Help - Confusing Error Message Forum p h

dvdstyler error execution of command

Dvdstyler Error Execution Of Command table id toc tbody tr td div id toctitle Contents div ul li a href Dvdstyler Auto Execute a li ul td tr tbody table p DVD VCD Glossary VideoHelp Forum Index New Posts Today's Posts Rules Register Help Remember Me Lost password username Forum Video Authoring DVD DVD styler error relatedl Reply to Thread Results to of p h id Dvdstyler Auto Execute p DVD styler error Thread Tools Show Printable Version Email this Page Subscribe to this Thread dvdstyler error transcoding Display Linear Mode Switch to Hybrid Mode Switch to Threaded Mode Thread

dvdstyler error correction

Dvdstyler Error Correction table id toc tbody tr td div id toctitle Contents div ul li a href Dvdstyler Error Transcoding a li li a href Dvdstyler Manual a li li a href Dvdstyler Chapter Menu a li li a href Dvdstyler Pre Commands a li ul td tr tbody table p cross-platform DVD authoring application Brought to you by ntalex Summary Files Reviews Support Wiki Mailing Lists relatedl Tickets Bugs Feature Requests News Discussion Donate p h id Dvdstyler Error Transcoding p Code Create Topic Stats Graph Forums Help Help Formatting Help dvdstyler error transcoding mp Error Correction question

dvdstyler error executing

Dvdstyler Error Executing table id toc tbody tr td div id toctitle Contents div ul li a href Dvdstyler Auto Execute a li li a href Dvdstyler Error Transcoding Mp a li li a href Dvdstyler Download a li ul td tr tbody table p cross-platform DVD authoring application Brought to you by ntalex Summary Files Reviews Support Wiki Mailing Lists relatedl Tickets Bugs Feature Requests News Discussion Donate p h id Dvdstyler Auto Execute p Code Create Topic Stats Graph Forums Help Help Formatting Help dvdstyler error transcoding Error executing of command growisofs -V Forum Help Creator Petyton Manning

dvdstyler error mplex

Dvdstyler Error Mplex p cross-platform DVD authoring application Brought to you by ntalex Summary Files Reviews Support Wiki Mailing Lists Tickets Bugs Feature Requests News Discussion Donate Code Create Topic Stats Graph Forums Help relatedl Help Formatting Help MUX STATUS Frame data under-runs detected Forum Help Creator valerio Created - - Updated - - valerio - - - Hello i've this problem MUX STATUS Frame data under-runs detected I create many DVD without problem and in this time I use the same projetc i change only menu audio and video file But i don't know wher's the problem This the

dvdstyler failed with error 2

Dvdstyler Failed With Error table id toc tbody tr td div id toctitle Contents div ul li a href Dvdstyler Failed Burn a li li a href Dvdstyler Error Transcoding Mp a li ul td tr tbody table p cross-platform DVD authoring application Brought to you by ntalex Summary Files Reviews Support Wiki Mailing Lists Tickets Bugs relatedl Feature Requests News Discussion Donate Code Create Topic Stats p h id Dvdstyler Failed Burn p Graph Forums Help Help Formatting Help Mac OS DVD creation failes dvdstyler error transcoding after transcoding Forum Help Creator fboehme Created - - Updated - -

dvdstyler error e42

Dvdstyler Error E table id toc tbody tr td div id toctitle Contents div ul li a href Dvdstyler Ppa a li li a href Dvdstyler Download a li ul td tr tbody table p Importance Assigned to Milestone dvdstyler Ubuntu Edit Fix Released Undecided Unassigned Edit You need to log in to change this relatedl bug's status Affecting dvdstyler Ubuntu Filed here by hectorsales When p h id Dvdstyler Ppa p - - Confirmed - - Started work - - Completed - - Target Distribution Baltix BOSS Juju dvdstyler crashes on burn Charms Collection Elbuntu Guadalinex Guadalinex Edu Kiwi

dvdstyler error text.xml

Dvdstyler Error Text xml p Report a bug on this site p p Fusion Version Vendor RPM Fusion Release fc Build date Wed Jun Group Applications Multimedia Build host buildvm- online rpmfusion net Size a href http packages ubuntu com wily all dvdstyler-data filelist http packages ubuntu com wily all dvdstyler-data filelist a Source RPM dvdstyler- - fc src rpm Packager RPM Fusion Url http www dvdstyler de Summary Cross-platform DVD authoring application DVDStyler is a cross-platform DVD authoring application that makes possible for video enthusiasts to create professional-looking DVDs It a href https www rpmfind net linux RPM rpmfusion

dvdstyler error correction data

Dvdstyler Error Correction Data table id toc tbody tr td div id toctitle Contents div ul li a href Dvdstyler Error Transcoding Mp a li li a href Dvdstyler Tutorial a li li a href Dvdstyler Tutorial Youtube a li ul td tr tbody table p p p protection for CD DVD media Free dvdisaster provides a margin of safety against a href https sourceforge net p dvdstyler discussion thread d e https sourceforge net p dvdstyler discussion thread d e a data loss on CD and DVD media caused by scratches or aging media It creates error correction data

dvdstyler error log

Dvdstyler Error Log table id toc tbody tr td div id toctitle Contents div ul li a href Dvdstyler Error Transcoding Mp a li li a href Dvdstyler Ppa a li ul td tr tbody table p - - Posts Website DVDStyler Error I'm getting the following error when trying to create the ISO in DVDStyler Error executing relatedl of command dvdauthor -o home cconover dvd -x home cconover dvd dvdauthor xml I'm not p h id Dvdstyler Error Transcoding Mp p sure how to resolve this Does DVDStyler keep an error log Here's dvdstyler error opening filters the full