#159695 - chishm - Fri Jul 04, 2008 2:37 pm
New release, with contributions from Robin Watts (building on work from Sophie Wilson & Paul Gardiner), Costas, and ecurtz (building on work from Thoduv).
This release has stereo MP3 support, faster colour space conversion, and actually allows vertical heights less than 192 rows.
As usual, it is available at the Tuna-viDS homepage.
_________________
http://chishm.drunkencoders.com
http://dldi.drunkencoders.com
#159746 - spinal_cord - Sun Jul 06, 2008 1:07 am
Why are there no comments on this?
It works well, i like it.
_________________
I'm not a boring person, it's just that boring things keep happening to me.
Homepage
#159748 - chishm - Sun Jul 06, 2008 2:52 am
spinal_cord wrote: |
Why are there no comments on this? |
Because everyone uses DPG ;-)
If you want to push it, you can get 15fps at full resolution by dropping the video bitrate to 160kbps. You can easily get 15fps by encoding it for 16:9 wide screen (256x144), even at 192kbps.
_________________
http://chishm.drunkencoders.com
http://dldi.drunkencoders.com
#159760 - silent_code - Sun Jul 06, 2008 11:30 am
Wonderful! 1^D
_________________
July 5th 08: "Volumetric Shadow Demo" 1.6.0 (final) source released
June 5th 08: "Zombie NDS" WIP released!
It's all on my page, just click WWW below.
#159784 - DiscoStew - Sun Jul 06, 2008 5:53 pm
I'll do some conversions of my videos, and see how they turn out. Although I prefer DPG, I just hate converting to that format. It takes so long to convert (for me anyways).
_________________
DS - It's all about DiscoStew
#159788 - Sephiroth1n6 - Sun Jul 06, 2008 7:57 pm
I'm having problems converting, when I convert there's no sound at all (0KBps is what's shown), I have the k-lite codec pack (full) installed. Also, if I try to play the video I'll get an error saying that it couldn't allocate buffer or something.
#159795 - silent_code - Sun Jul 06, 2008 10:20 pm
Use Super to convert videos. It's a bit "tricky" to get through to the download (it's like three times scrolling down a page and clicking), but worth it all. ;^)
_________________
July 5th 08: "Volumetric Shadow Demo" 1.6.0 (final) source released
June 5th 08: "Zombie NDS" WIP released!
It's all on my page, just click WWW below.
#159846 - spinal_cord - Mon Jul 07, 2008 12:53 pm
Could someone possibly recompile the source for me? I would like a minor change made as my devkitpro/arm is way out of date.
Simpley, i would like to use tunavids in a similar way as intended, but i can not use arg[1].
anyway, could someone replace
Code: |
// Get file name
if (argc >= 2) {
aviFileName = argv[1];
} else {
aviFileName = DEFAULTFILE;
}
|
with
Code: |
// Get file name
if (argc >= 2) {
aviFileName = argv[1];
} else {
FILE * configFile = fopen("fat:/tuna.cfg", "rb");
fread(aviFileName, 512, 1, configFile);
fclose(configFile);
}
|
and assuming my brain works, i could use it by just putting the filename in fat:/tuna.cfg.
can someone find it in their heart to do this?
_________________
I'm not a boring person, it's just that boring things keep happening to me.
Homepage
#159860 - Sephiroth1n6 - Mon Jul 07, 2008 6:54 pm
silent_code wrote: |
Use Super to convert videos. It's a bit "tricky" to get through to the download (it's like three times scrolling down a page and clicking), but worth it all. ;^) |
I used to have super, getting the download was a real pain, since the connection keep dying on their side and getting to the link was a little troublesome, I guess I'll try to get it now
edit: downloading at a mere 20KBps, they need a dedicated server
#159876 - silent_code - Mon Jul 07, 2008 9:43 pm
@ spinal_cord: I have an up to date (all stable releases) setup, so I could do it for you. Just PM me a link to the source files ready for compilation and I will send you a link to the binary asap. :^)
_________________
July 5th 08: "Volumetric Shadow Demo" 1.6.0 (final) source released
June 5th 08: "Zombie NDS" WIP released!
It's all on my page, just click WWW below.
#160083 - HyperHacker - Thu Jul 10, 2008 8:01 am
So when I try to run the FFmpeg command at the bottom of the page to encode a video in Xubuntu, I get this message a crapload of times: Quote: |
[aac @ 0xb7e8c9a8]FAAD library: cannot resolve faacDecGetErrorMessage in libfaad.so.0! |
And then: Quote: |
Unknown codec 'libxvid' |
Any ideas?
_________________
I'm a PSP hacker now, but I still <3 DS.
#160097 - thedopefish - Thu Jul 10, 2008 2:52 pm
HyperHacker wrote: |
So when I try to run the FFmpeg command at the bottom of the page to encode a video in Xubuntu, I get this message a crapload of times: Quote: | [aac @ 0xb7e8c9a8]FAAD library: cannot resolve faacDecGetErrorMessage in libfaad.so.0! | And then: Quote: | Unknown codec 'libxvid' | Any ideas? |
Debian's/Ubuntu's stock ffmpeg packages are compiled without XviD or FAAD support, for one reason or another. You could try installing an unofficial build, or compiling it yourself. Or, use mencoder instead--I've had success with something like:
Code: |
mencoder <in_file> -ovc xvid -oac mp3lame -xvidencopts bitrate=192 -vf scale=256:192 -ofps 10 -af resample=32000 -lameopts mode=3:br=96 -o <out_file> |
_________________
#include <sig.h>
#160152 - another world - Thu Jul 10, 2008 10:36 pm
any VDub users care to comment on how to encode?
i've been experimenting for the past 2 days but can't seem to get any files to open on my r4, just a white screen ontop. i encoded to the specs required and muxed back the cbr mp3 (using vdubmod) with no luck. i'm using the deinterlace and resize filters when encoding.
so far i'm using the xvid 1.01 build and ffdshow's xvid codec with no luck.
mpc output:
Video: XVID 256x192 12.00fps 190Kbps [Video 0]
Audio: MPEG Audio Layer 3 32000Hz stereo 96Kbps [Audio 1]
my video seems to be going to the "nearist neighbor" which isn't staying constant at 192 (could be my problem). this is a bit odd as i have the ffdshow xvid codec set at 1-pass cbr.
cheers,
-another world
#160353 - chishm - Mon Jul 14, 2008 2:46 pm
HyperHacker wrote: |
So when I try to run the FFmpeg command at the bottom of the page to encode a video in Xubuntu, I get this message a crapload of times: Quote: | [aac @ 0xb7e8c9a8]FAAD library: cannot resolve faacDecGetErrorMessage in libfaad.so.0! | And then: Quote: | Unknown codec 'libxvid' | Any ideas? |
To get mp3 working, I followed the instructions here. Use mpeg4 instead of libxvid for the video codec if you want, since Xvid is just an implementation of the mpeg4 video specs.
_________________
http://chishm.drunkencoders.com
http://dldi.drunkencoders.com
#161566 - pas - Wed Aug 06, 2008 12:48 pm
BTW, chishm, I just wanted to tell you the 2 main reasons why ppl are using DPG over your Player (since you seem to care about it ):
1. Your Player only allows one file to be played , without the ability to go back to the filebrowser, which is quite annoying, since watching series or other things that consist of multiple videofiles are quite a pain to watch that way.
2. There isn't a resume function that allows to automatically play the last played video file that was running before the DS was shut down.
This sound like a gimmicky feature, but indeed is really useful.
I want to ask you if you could implement these above or write a plugin for moonshell so we can fully enjoy Tuna-vids.
It is really a great achivement, and I was in no way trying to offend, you, I just try to make some suggestions to improve, if you have grown tired of people telling you things is your own decision.
_________________
Starcraft DS ?
#161770 - dantheman - Wed Aug 13, 2008 8:18 pm
Excellent release. I've been enjoying my marching band videos in-sync for the first time on the DS for a while now (every attempt to convert to DPG always made things go out of sync). 12 fps isn't really all that bad when you've got high-quality fullscreen video.
Anyone know about how high the mp3 bitrate can go, in either mono or stereo?
#171985 - iainprice - Wed Jan 06, 2010 7:41 pm
This is a great little program but I can't get sound working when i compile.... I have had to change the arm7 slightly to make it compile but don't know how I have broken it :(
Anyone got it compiling and working with a fairly new release of devkit?
#171994 - RobinWatts - Thu Jan 07, 2010 12:01 pm
iainprice wrote: |
Anyone got it compiling and working with a fairly new release of devkit? |
What counts as fairly new? I have it compiling under devkitARM version 26.
Robin
#171997 - iainprice - Thu Jan 07, 2010 7:36 pm
It the IPC stuff that needs changing for my setup...
#172009 - RobinWatts - Fri Jan 08, 2010 11:23 am
iainprice wrote: |
It the IPC stuff that needs changing for my setup... |
Yes, ISTR having to make changes there.
I've zipped up the source from my harddrive to:
http://www.wss.co.uk/nds/
The two tuna...zip archives there are the ones you want.
I *hope* it's in a compilable state, but I hack on it periodically, so there is all sorts of stuff in there...
Robin
#172011 - iainprice - Fri Jan 08, 2010 5:21 pm
Ahhhh perfect, many thanks.