LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
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 07-20-2008, 03:11 AM   #1
nkd
Member
 
Registered: Oct 2006
Location: india
Distribution: fedora 8, ubuntu 10.10
Posts: 318

Rep: Reputation: 34
can someone help out with dvd-slideshow


I am using fedora8 on my acer machine.
I need a software to create slideshows from my pics with special effects like ken burns and audio.
I am trying out dvd-slideshow - the latest version 0.8.0-1 gives a few ffmpeg errors which I haven't been able to resolve, but the old version 0.7.4 works ok. However, the following problem persists :-
I can't see my titles or subtitles ?!?!
If someone can suggest something else or how to get it going, it would be nice
thanks in advance
nishith
 
Old 07-20-2008, 10:10 PM   #2
aus9
LQ 5k Club
 
Registered: Oct 2003
Location: Western Australia
Distribution: Icewm
Posts: 5,842

Rep: Reputation: Disabled
have you considered open office for creating slideshows?
 
Old 07-21-2008, 10:08 PM   #3
nkd
Member
 
Registered: Oct 2006
Location: india
Distribution: fedora 8, ubuntu 10.10
Posts: 318

Original Poster
Rep: Reputation: 34
I didnot know that oo had ken burns effect and audio support for the slideshows.
Probably I couldn't make myself clear enough, actually I would like to create a slideshow complete with titles, subtitles, ken burns effect and audio - similar to movies.
thanks
nishith
 
Old 07-22-2008, 01:45 AM   #4
aus9
LQ 5k Club
 
Registered: Oct 2003
Location: Western Australia
Distribution: Icewm
Posts: 5,842

Rep: Reputation: Disabled
my apols

to fix ffmpeg the developer says do this
http://dvd-slideshow.sourceforge.net/wiki/FAQ_crashing
 
Old 07-24-2008, 05:44 AM   #5
nkd
Member
 
Registered: Oct 2006
Location: india
Distribution: fedora 8, ubuntu 10.10
Posts: 318

Original Poster
Rep: Reputation: 34
thanks
I tried out the FAQ referred by you, it didnot work.
Actually ffmpeg now uses the suffix 'k' for the bit rate settings i.e instead of
audio_bitrate=128
it should now be given as
audio_bitrate=128k

I had to patch the dvd-slideshow script by hand to get it going.
Now all is fine and thanks for your time and patience
bye for now
nishith
 
Old 07-30-2008, 07:35 PM   #6
trillobyte
Member
 
Registered: Apr 2007
Location: USA
Distribution: Slackware, FreeBSD, Trisquel
Posts: 105
Blog Entries: 1

Rep: Reputation: 33
Quote:
Originally Posted by nkd View Post
thanks
I tried out the FAQ referred by you, it didnot work.
Actually ffmpeg now uses the suffix 'k' for the bit rate settings i.e instead of
audio_bitrate=128
it should now be given as
audio_bitrate=128k

I had to patch the dvd-slideshow script by hand to get it going.
Now all is fine and thanks for your time and patience
bye for now
nishith
Can you provide the information on what you did to make it work?
I would really appreciate it, if you could direct me to the steps I should take to patch this and make it work.

Best Regards
 
Old 07-30-2008, 10:19 PM   #7
aus9
LQ 5k Club
 
Registered: Oct 2003
Location: Western Australia
Distribution: Icewm
Posts: 5,842

Rep: Reputation: Disabled
not that I have used it...but based on nkd's answer he means this

with root powers find the executable

Code:
su
find / -name dvd-slideshow
my test install went to /usr/bin but YMMV

2) using root powers open that executable with a text editor or vi

if a text editor like kwrite you can use the find function to locate the lines that mention 128

in mine naughty line is 3997...so a bit of scrolling for you if you do not have a good text editor

offending line reads
audio_bitrate=128

and you amend to 128k

see if that helps?
 
Old 07-31-2008, 05:03 AM   #8
nkd
Member
 
Registered: Oct 2006
Location: india
Distribution: fedora 8, ubuntu 10.10
Posts: 318

Original Poster
Rep: Reputation: 34
patching dvd-slideshow manually -
*******************************
open the script dvd-slideshow with vi and change the occurrences of

audio_bitrate=224 to
audio_bitrate=224k


audio_bitrate=128 to
audio_bitrate=128k


audio_bitrate=192 to
audio_bitrate=192k

These occur around line number 3986 where audio parameters are set.

patching dvd-slideshow with the patch utility :-
************************************************
create a file called try.patch and cut paste the following lines to it :-

--- dvd-slideshow 2007-11-01 11:25:37.000000000 +0100
+++ dvd-slideshow_edit 2007-11-01 11:21:06.000000000 +0100
@@ -4275,7 +4275,7 @@
fi
if [ "$vcd" -eq 1 ] ; then
ac3=0 # force mp2
- audio_bitrate=224
+ audio_bitrate=224k
video_bitrate='1152'
audio_sample_rate=44100
mplex_type=1
@@ -4283,14 +4283,14 @@
mpeg2enc_params="-v 0 -4 2 -2 1 -H -b 1150 -n n -s -f $mplex_type"
elif [ "$svcd" -eq 1 ] ; then
ac3=0 # force mp2
- audio_bitrate=128
+ audio_bitrate=128k
video_bitrate='4500'
audio_sample_rate=44100
mplex_type=4
aspect_ratio="4:3"
mpeg2enc_params="-v 0 -4 2 -2 1 -H -b 2500 -n n -s -f $mplex_type"
else
- audio_bitrate=192
+ audio_bitrate=192k
video_bitrate='3800'
audio_sample_rate=48000
mplex_type=8

now save and exit.
in the terminal window enter the following command patch -p1 < try.patch
when asked which file you wish to patch enter the full path and the file name for the dvd-slideshow script ( which you can locate using the which or locate command)

now execute the dvd-slideshow program and enjoy.
 
Old 07-31-2008, 05:18 PM   #9
trillobyte
Member
 
Registered: Apr 2007
Location: USA
Distribution: Slackware, FreeBSD, Trisquel
Posts: 105
Blog Entries: 1

Rep: Reputation: 33
Thanks for the reply. I will do as instructed.

Best Regards
 
Old 07-31-2008, 05:48 PM   #10
trillobyte
Member
 
Registered: Apr 2007
Location: USA
Distribution: Slackware, FreeBSD, Trisquel
Posts: 105
Blog Entries: 1

Rep: Reputation: 33
Dvd-slideshow is now working. Thanks again for your kind help.

Best regards
 
  


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
dvd-slideshow options issue Calgarian Linux - Software 3 03-02-2008 08:32 AM
Burning DVD with both video and slideshow moxieman99 Linux - Software 2 09-07-2007 11:21 AM
DVD-slideshow are you kidding me? bioalchemist Linux - Software 12 11-04-2006 03:59 PM
problem with dvd slideshow /SuSE9.3 rokka SUSE / openSUSE 7 10-06-2005 02:44 PM
problem with dvd slideshow rokka Linux - Software 1 06-23-2005 07:49 PM

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

All times are GMT -5. The time now is 04:03 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