LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 08-29-2019, 06:32 PM   #1
mike acker
Member
 
Registered: Feb 2014
Location: Michigan
Distribution: Debian 10
Posts: 199

Rep: Reputation: Disabled
K3B unable to burn Video DVD


( Debian-10 )

When I try to burn a video DVD using K3B I get kicked out. Message just states that I don't have all the necessary files.

Is there any known resolution for this ?
 
Old 08-30-2019, 08:29 AM   #2
rkelsen
Senior Member
 
Registered: Sep 2004
Distribution: slackware
Posts: 4,448
Blog Entries: 7

Rep: Reputation: 2553Reputation: 2553Reputation: 2553Reputation: 2553Reputation: 2553Reputation: 2553Reputation: 2553Reputation: 2553Reputation: 2553Reputation: 2553Reputation: 2553
K3B unable to burn Video DVD

Get the necessary files.
 
Old 09-01-2019, 05:33 AM   #3
mike acker
Member
 
Registered: Feb 2014
Location: Michigan
Distribution: Debian 10
Posts: 199

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by rkelsen View Post
Get the necessary files.
Thanks!! I'll get right on it!
 
Old 09-02-2019, 05:35 AM   #4
zeebra
Senior Member
 
Registered: Dec 2011
Distribution: Slackware
Posts: 1,830
Blog Entries: 17

Rep: Reputation: 638Reputation: 638Reputation: 638Reputation: 638Reputation: 638Reputation: 638
Quote:
Originally Posted by mike acker View Post
( Debian-10 )

When I try to burn a video DVD using K3B I get kicked out. Message just states that I don't have all the necessary files.

Is there any known resolution for this ?
Perhaps try to start K3b from a terminal window and see if it gives any messages beyond what you have. It should throw alot of messages at you.

Last edited by zeebra; 09-02-2019 at 05:36 AM.
 
Old 09-03-2019, 08:13 AM   #5
mike acker
Member
 
Registered: Feb 2014
Location: Michigan
Distribution: Debian 10
Posts: 199

Original Poster
Rep: Reputation: Disabled
It appears that a "DVD" Video requires special formatting: The video has to be as "Video Objects" ( .VOB ) and stored in the VIDEO_TS directory on the DVD disc

The trouble arises in getting -- e.g. .mp4 video converted into this format so that a "DVD Player" will accept it.

The basic/intro program for doing this appears to be "DeVeDe" -- which I found in the Debian-10 Repos

My test disc plays OK in my HDMI attached player; it still remains to be seen if it will auto-start properly in the old-style TV that has a built-in DVD player -- which may not have a START key

I'll update this, later.
 
1 members found this post helpful.
Old 09-03-2019, 04:18 PM   #6
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,137
Blog Entries: 6

Rep: Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826
Quote:
It appears that a "DVD" Video requires special formatting:
Yes, it has to be mpeg2 video. ac3 audio. Been a while since I made one. In case k3b won't do what you wish.

From my notes.

Make mpeg2/ac3 video example:
Code:
ffmpeg -i file.avi -c:a ac3 -c:v mpeg2video -target ntsc-dvd -b:v 1200k test.mpg
Then make the DVD structure (everyting goes into ~/mydvd)
Code:
export VIDEO_FORMAT=NTSC
dvdauthor -t -o mydvd -f test.mpg
Then to make the VMG info
Code:
dvdauthor -T -o mydvd/

ls -l ~/mydvd/VIDEO_TS
total 12640
-rw-r--r-- ...     6144 Dec  2 08:50 VIDEO_TS.BUP
-rw-r--r-- ...     6144 Dec  2 08:50 VIDEO_TS.IFO
-rw-r--r-- ...    12288 Dec  2 08:49 VTS_01_0.BUP
-rw-r--r-- ...    12288 Dec  2 08:49 VTS_01_0.IFO
-rw-r--r-- ... 12900352 Dec  2 08:49 VTS_01_1.VOB
Make a menu example:
Grab a screenshot 720x480
Code:
ffmpeg -f x11grab -video_size 720x480 -i $DISPLAY -vframes 1 1.png
Make video out of it
Code:
jpeg2yuv -n 50 -I p -f 29.97 -j 1.jpg | mpeg2enc -n n -f 8 -o menu.m2v
Make 1 sec blank audio
Code:
ffmpeg -f lavfi -i anullsrc=channel_layout=5.1:sample_rate=48000 -t 1 menu.mp2
Merge them
Code:
mplex -f 8 -o menu.mpg menu.m2v menu.mp2
make menu.xml
Code:
spumux menu.xml < menu.mpg > menu_final.mpg
You don't have to have a menu.
 
Old 09-04-2019, 07:58 AM   #7
mike acker
Member
 
Registered: Feb 2014
Location: Michigan
Distribution: Debian 10
Posts: 199

Original Poster
Rep: Reputation: Disabled
Quote:
Yes, it has to be mpeg2 video. ac3 audio. Been a while since I made one. In case k3b won't do what you wish.

From my notes.
Thanks for the notes!! I wasn't able to get K3B to load a video DVD properly. I think it'a because K3B is a "Burner" ONLY: it's not an edit or rendering tool. i.e. I need a properly formatted VIDEO_TS track -- before I can call K3B.

After a number of google searches though I did find a recommendation for DeVeDe -- and -- I found the DeVeDe program in the repos on my D-10 system. Generally I do not download/install software that is not from the repos for obvious reasons.

It appears that the DeVeDe program provides BOTH the re-rendering into VIDEO_TS format AND the BURNER option.

It appears kdenlive can render video as .vob format -- but -- I think the other VIDEO_TS files may still be needed -- the .IFO and .BUP -- dunno. Being rather frustrated by this I'm a little disinclined to pursue that approach when the DeVeDe solution looks like it's going to work out.

We'll find out -- hopefully today: my daughter will be testing the DVD at the presentation site later today. There is ONLY a "TV" with a built-in "DVD Player" -- that is bolted to the wall -- no HDMI or any other connections allowed: DVD or stay home. This is understandable in the venue where this is located.

Last edited by mike acker; 09-04-2019 at 08:06 AM.
 
Old 09-08-2019, 12:36 PM   #8
Soadyheid
Senior Member
 
Registered: Aug 2010
Location: Near Edinburgh, Scotland
Distribution: Cinnamon Mint 20.1 (Laptop) and 20.2 (Desktop)
Posts: 1,672

Rep: Reputation: 486Reputation: 486Reputation: 486Reputation: 486Reputation: 486
Couple of applications I've used in the past, Handbrake (Which can be used for ripping DVDs if you have the CODECS) and Transmageddon Video Transcoder (Which allows you to generate video in differing formats if I remember properly.) Both possibly in your Repos. I'm using Mint 18.3.

I haven't used either in ages so can't remember how to set them up. I used them to rip some DVDs I'd bought down to .m4v and .mkv formats which I loaded onto my phone. Useful for short haul flights!
You can no doubt Google how to use them.

Play Bonny!

 
Old 09-12-2019, 05:36 PM   #9
mike acker
Member
 
Registered: Feb 2014
Location: Michigan
Distribution: Debian 10
Posts: 199

Original Poster
Rep: Reputation: Disabled
the DeVeDe DVD worked properly.


End
 
Old 09-14-2019, 04:04 AM   #10
Shadow_7
Senior Member
 
Registered: Feb 2003
Distribution: debian
Posts: 4,137
Blog Entries: 1

Rep: Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874
Brasero can create said DVD images. I did it the hard way long ago with DVDauthor and friends. DVDs are horrible though, the compression is quite aggressive to meet the minimum common denominator. NTSC or PAL differences and whatnot. And the iso format cannot have any single file > 4GB, even though the resulting image can exceed that limit. MPEG2 video, a few options from audio, but mp3 is only in the PAL spec. But does work on a few NTSC players. And what used to be a pretty good DVD player with menu support in linux (ogle) kind of vanished.
 
Old 09-14-2019, 12:14 PM   #11
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,137
Blog Entries: 6

Rep: Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826
Quote:
And what used to be a pretty good DVD player with menu support in linux (ogle) kind of vanished.
mpv dropped dvd menu support a few years back. mplayer still has it.
Code:
mplayer dvdnav:// -mouse-movements
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Unable to Burn .ISO File to DVD With K3B tb75252 Slackware 18 11-04-2020 10:03 AM
DVD burner don't burn dvd anymore (but burn cd without problem) 0kage0 Linux - Software 4 11-29-2010 12:55 AM
unable to burn dvd using k3b or gnome-baker dreamerchawla Linux - Software 18 02-01-2008 11:56 PM
k3b won't burn CD-R's but does burn DVDs. Livino Linux - Newbie 6 03-18-2006 05:51 PM
k3b error with audio cd burn (no prob with iso burn) bluem Linux - Newbie 1 04-16-2004 08:05 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 11:16 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration