Jump to content
AVIC411.com

video specs for f900bt? trying to convert youtube vids.


Recommended Posts

so basically i have so many videos i downloaded of youtube and would like to play it on my f900bt. i've successfully done this already with several videos however i've never gotten one to play full screen. so far all i've been using is automatic converters that basically do all the work. i have several other video editing software and what im trying to find out is if i do this manually what specs do i set the video to so that it plays on my f900bt?

Link to post
Share on other sites
  • 2 weeks later...

you do NOT need any converters, here's how i do it...

 

1) find the youtube video you want, for example: http://www.youtube.com/watch?v=KxKS7t70cUA

 

2) add PWN in front of the youtube, for example: http://www.pwnyoutube.com/watch?v=KxKS7t70cUA

 

3) click on "Download High Quality Video (MP4)" save this with the appropriate name

 

4) open itunes and add the video

 

5) synch your ipod (make sure to synch videos too, i was only set up to synch music)

 

6) connect the ipod to your pioneer unit, plays right away

Link to post
Share on other sites
  • 2 weeks later...

I recall reading somewhere that Full Screen Video is on DVD only and not all units have the DVD player. There is even a setting for it under System. I bought the F90BT because of that fact.

 

Try "Replay Media Catcher" for recording streaming video it works fantastic

Link to post
Share on other sites
  • 3 weeks later...

I found a bash script for Linux users that will batch convert flv files to avi that will play on the avic. I tweaked the options to change the ratio to fit on avic's screens. It can be called on one flv file or a whole list of files. I added a line to remove the flv when done so comment this out if you want to keep it. Uses mencoder

 

usage something like this:

#flv2xvid -xvid *.flv

or

#flv2xvid -xvid video.flv video1.flv video2.flv

 

 

 

 

#!/bin/sh

 

if [ -z "$1" ]; then

echo "Usage: $0 {-divx|-xvid} list_of_flv_files"

exit 1

fi

# video encoding bit rate

V_BITRATE=1000

 

while [ "$1" ]; do

case "$1" in

-divx)

MENC_OPTS="-ovc lavc -lavcopts \

vcodec=mpeg4:vbitrate=$V_BITRATE:mbd=2:v4mv:autoaspect"

;;

-xvid)

MENC_OPTS="-ovc xvid -xvidencopts bitrate=$V_BITRATE:autoaspect"

;;

*)

if file "$1" | grep -q "Macromedia Flash Video"; then

mencoder "$1" $MENC_OPTS -vf scale=640:480 -oac mp3lame \

-lameopts fast:preset=standard -o \

"`basename $1 .flv`.avi"

rm `basename $1`

else

echo "$1 is not Flash Video. Skipping"

fi

;;

esac

shift

done

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...