NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Other Clients Old Stuff (legacy) MVP & NMT v
« Previous 1 … 31 32 33 34 35 … 115 Next »
Why can't I resume a stopped AVI stream?

 
  • 0 Vote(s) - 0 Average
Why can't I resume a stopped AVI stream?
goobie
Offline

Junior Member

Posts: 24
Threads: 7
Joined: Feb 2007
#1
2007-10-17, 05:44 PM
So I did a search and read all the posts about enabling "prompt for resume" under the "misc" tab, but still I cannot get an AVI stream to resume from where I pressed the MVP's stop button. Each I time I stopped it and pressed play again it starts all over.

Please somebody enlighten me, how do I do it so that I do not have to wait for the transcode to reach the last point watched and then have to skip all the way forward to that point and then pray that the audio and video is sync'ed!?

I'm using Ver 1.00.16. Much appreciated. Thank you.
HtV
Offline

Posting Freak

Posts: 3,470
Threads: 46
Joined: Dec 2005
#2
2007-10-17, 05:50 PM
It transcodes to a tempfile wich is deleted if you stop watching.
I added a MPG transcode profile to config.xml. Now I can transcode an avi or whatever to mpg (in videolibrary), it won't be deleted when you stop watching.
AMD Athlon 64 3000, HDD: 80, 120, 200 GB, Hauppauge 350 + 150, MVP, Asus 6000L Laptop client, Asus X50sl client,
Fritz!box 7140 modem/router, GBPVR 1.3.7.
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,686
Threads: 767
Joined: Nov 2003
#3
2007-10-17, 05:55 PM
Sorry, its just a limitation you'll need to live with when you're using files that need transcoding.
stu8080
Offline

Senior Member

Posts: 639
Threads: 52
Joined: Aug 2004
#4
2007-10-20, 12:21 PM
HtV - I tried a similair thing. Using the command line settings for the MVP transcode didnt work, nor did adding some arguments from the FFMPEG documentation. What arguments have you used to convert Avi to MPEG?
GBPVR: A64 X2 6000+, ASUS M2A-VM HDMI, 4GB ram, 8800GT GFX, 2x Nova-T DVB-T, 1x D-Box2 Cable reciever, 2x Wired MVP's, 1.0.16. Vista.
Plugins: MusicLibrary2, Weather, Int Cinema Listings, Burn DVDX2, D-Box2 Plugin, DVD Ripper.
HtV
Offline

Posting Freak

Posts: 3,470
Threads: 46
Joined: Dec 2005
#5
2007-10-21, 08:29 AM
hi Stu,
I'm not at home at the moment, I'll look for you tonight. PM me if I forget.

cya Hans
AMD Athlon 64 3000, HDD: 80, 120, 200 GB, Hauppauge 350 + 150, MVP, Asus 6000L Laptop client, Asus X50sl client,
Fritz!box 7140 modem/router, GBPVR 1.3.7.
stu8080
Offline

Senior Member

Posts: 639
Threads: 52
Joined: Aug 2004
#6
2007-10-21, 11:09 AM
Thanks... video encoding is a mysterious art to me! lol
GBPVR: A64 X2 6000+, ASUS M2A-VM HDMI, 4GB ram, 8800GT GFX, 2x Nova-T DVB-T, 1x D-Box2 Cable reciever, 2x Wired MVP's, 1.0.16. Vista.
Plugins: MusicLibrary2, Weather, Int Cinema Listings, Burn DVDX2, D-Box2 Plugin, DVD Ripper.
HtV
Offline

Posting Freak

Posts: 3,470
Threads: 46
Joined: Dec 2005
#7
2007-10-21, 07:01 PM
Ok here we go,

As you can see I made 2 profiles, one for 4:3 and one for 16:9. If you want to edit the lines you can find the ffmpeg info here: http://ffmpeg.mplayerhq.hu/documentation.html

This are the lines I added to <CustomFFmpegConversions> in config.xml

Code:
<Conversion name="MPG-MVP 16:9" cmd="-y -i {SOURCE_FILE} -target pal-dvd -b 5000k -aspect 16:9 -s 720x576 -acodec mp2 -ab 224 -ac 2 -mbd 2 -qmin 2 -async 1 {DEST_FILE}" targetExtension="mpeg.mpg" />
    <Conversion name="MPG-MVP 4:3" cmd="-y -i {SOURCE_FILE} -target pal-dvd -b 5000k -aspect 4:3 -s 720x576 -acodec mp2 -ab 224 -ac 2 -mbd 2 -qmin 2 -async 1 {DEST_FILE}" targetExtension="mpeg.mpg" />
    <Conversion name="Wave" cmd="-y -i {SOURCE_FILE} -vn  -y  {DEST_FILE}" targetExtension=".wav" />
    <Conversion name="Mp3" cmd="-y -i {SOURCE_FILE} -vn -acodec mp3 -ac 2 -ab 160 -y  {DEST_FILE}" targetExtension=".mp3" />

The last 2 lines are for ripping the audio from a file, to wave or to mp3.

Good luck
AMD Athlon 64 3000, HDD: 80, 120, 200 GB, Hauppauge 350 + 150, MVP, Asus 6000L Laptop client, Asus X50sl client,
Fritz!box 7140 modem/router, GBPVR 1.3.7.
stu8080
Offline

Senior Member

Posts: 639
Threads: 52
Joined: Aug 2004
#8
2007-10-22, 06:02 PM
Cool, thank you.
By comparisson i was specifying a SVCD quality at only 2400kbps against your 5000 and also the wrong resolution, plus a handful of other variables ive not seen in the documentation.

Plus, your mp3 idea gives me an instant soundtrack! saves me scouring the internet for a song i hear on TV! Nice idea!
GBPVR: A64 X2 6000+, ASUS M2A-VM HDMI, 4GB ram, 8800GT GFX, 2x Nova-T DVB-T, 1x D-Box2 Cable reciever, 2x Wired MVP's, 1.0.16. Vista.
Plugins: MusicLibrary2, Weather, Int Cinema Listings, Burn DVDX2, D-Box2 Plugin, DVD Ripper.
HtV
Offline

Posting Freak

Posts: 3,470
Threads: 46
Joined: Dec 2005
#9
2007-10-22, 09:26 PM
Glad you like it.Smile
AMD Athlon 64 3000, HDD: 80, 120, 200 GB, Hauppauge 350 + 150, MVP, Asus 6000L Laptop client, Asus X50sl client,
Fritz!box 7140 modem/router, GBPVR 1.3.7.
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)



Possibly Related Threads…
Thread Author Replies Views Last Post
  MVP server binds to 127.0.0.1 after resume from standby alibert 2 5,550 2016-03-21, 09:21 AM
Last Post: alibert
  NMT A100 stopped playing video srhutch 12 5,424 2011-04-30, 02:14 PM
Last Post: srhutch
  MVP suddenly stopped working kfhickel 3 2,103 2011-01-10, 11:00 PM
Last Post: mvallevand
  resume on h.264 ts recordings steveum 14 5,115 2010-02-14, 04:23 AM
Last Post: mvallevand
  MVP Stopped Behaving With Live TV DVB-S steeb 16 4,585 2008-10-19, 10:55 PM
Last Post: steeb
  No Resume Option When Restarting Playback johnnyb 2 1,647 2008-10-15, 07:18 PM
Last Post: johnnyb
  recordings, videos and fotos stopped working HtV 13 3,591 2007-10-06, 10:11 PM
Last Post: sub
  v1.0.16: Auto-resume not working on MVP jch 2 1,323 2007-09-21, 08:24 PM
Last Post: martint123
  MVP "no network" logo after resume from standby ro76 6 1,941 2007-08-25, 05:37 PM
Last Post: HarryH3
  Able to stream x264? flipz 2 1,445 2007-06-01, 04:53 PM
Last Post: flipz

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode