Kirjoittaja Aihe: Nokia N800 / N810  (Luettu 179672 kertaa)

Asmo Koskinen

  • Käyttäjä
  • Viestejä: 4443
    • Profiili
Vs: Nokia N800
« Vastaus #100 : 23.04.07 - klo:21.29 »
Osaisiko joku auttaa, kun asentelin tämän MMPC:n ja Ubuntuun MPD:n, niin en saa millään näkymään biisejä N800 näytöllä.. Mikähän voisi olla vialla? Olen katsonut, että MPD löytää tiedostot mpd --update-db -komennolla, mutta N800 ei niitä löydä.

Tämähän piti selvittää  ;D

Seurasin tätä ohjetta: http://ubuntuforums.org/showthread.php?t=320469

1. Ubuntussa tiedosto /etc/mpd.conf

Koodia: [Valitse]
# An example configuration file for MPD
# See the mpd.conf man page for a more detailed description of each parameter.

######################## REQUIRED PATHS ########################
# You can put symlinks in here, if you like. Make sure that
# the user that mpd runs as (see the 'user' config parameter)
# can read the files in this directory.
music_directory "/var/lib/mpd/music" <- Tee symbolinen linkki omiin tiedostoihisi
playlist_directory "/var/lib/mpd/playlists"
db_file "/var/lib/mpd/tag_cache"
log_file "/var/log/mpd/mpd.log"
error_file "/var/log/mpd/errors.log"
pid_file "/var/run/mpd/pid"
################################################################


######################## OPTIONAL PATHS ########################
#
# If specified, MPD will save its current state (playlist,
# current song, playing/paused, etc.) at exit.  This will be
# used to restore the session the next time it is run.
#
state_file "/var/lib/mpd/state"
#
################################################################


######################## DAEMON OPTIONS ########################
#
# If started as root, MPD will drop root privileges and run as
# this user instead.  Otherwise, MPD will run as the user it was
# started by.  If left unspecified, MPD will not drop root
# privileges at all (not recommended).
#
user                            "mpd"
#
# The address and port to listen on.
#
bind_to_address          "192.168.1.102" <- Tässä piti vaihtaa "localhost" pois oikeaan ip-numeroon
port                            "6600"
#
# Controls the amount of information that is logged.  Can be
# "default", "secure", or "verbose".
#
log_level                       "default"
#
################################################################


########################## PERMISSIONS #########################
#
# MPD can require that users specify a password before using it.
# You may specify one ore more here, along with what users who
# log in with that password are allowed to do.
#
#password                        "password@read,add,control,admin"
#
# Specifies what permissions a user who has not logged in with a
# password has.  By default, all users have full access to MPD
# if no password is specified above, or no access if one or
# more passwords are specified.
#
default_permissions             "read,add,control,admin"
#
################################################################


########################## AUDIO OUTPUT ########################
#
# MPD supports many audio output types, as well as playing
# through multiple audio outputs at the same time.  You can
# specify one or more here.  If you don't specify any, MPD will
# automatically scan for a usable audio output.
#
# See <http://mpd.wikia.com/wiki/Configuration#Audio_Outputs>
# for examples of other audio outputs.
#
# An example of an ALSA output:
#
audio_output {                            <- Äänikortti
        type                    "alsa"
        name                    "My ALSA Device"
        device                  "hw:0,0"     # optional
        format                  "44100:16:2" # optional
}
#
# An example of an OSS output:
#
#audio_output {
#        type                    "oss"
#        name                    "My OSS Device"
#        device                  "/dev/dsp"   # optional
#        format                  "44100:16:2" # optional
#}
#
# An example of a shout output (for streaming to Icecast):
#
#audio_output {
#        type                    "shout"
#        name                    "My Shout Stream"
#        host                    "localhost"
#        port                    "8000"
#        mount                   "/mpd.ogg"
#        password                "hackme"
#        quality                 "5.0"
#        bitrate                 "128"
#        format                  "44100:16:1"
#        user                    "source"                # optional
#        description             "My Stream Description" # optional
#        genre                   "jazz"                  # optional
#        public                  "no"                    # optional
#}
#
# Force all decoded audio to be converted to this format before
# being passed to the audio outputs.
#
#audio_output_format             "44100:16:2"
#
################################################################


############################# MIXER ############################
#
# MPD needs to know what mixer settings to change when you
# adjust the volume.  If you don't specify one here, MPD will
# pick one based on which ones it was compiled with support for.
#
# An example for controlling an ALSA mixer:
#
mixer_type                      "alsa"        <- Äänikortti
mixer_device                    "default"
mixer_control                   "PCM"
#
# An example for controlling an OSS mixer:
#
#mixer_type                      "oss"
#mixer_device                    "/dev/mixer"
#mixer_control                   "PCM"
#
# If you want MPD to adjust the volume of audio sent to the
# audio outputs, you can tell it to use the software mixer:
#
#mixer_type                      "software"
#
################################################################


######################### NORMALIZATION ########################
#
# Specifies the type of ReplayGain to use.  Can be "album" or
# "track".  ReplayGain will not be used if not specified.  See
# <http://www.replaygain.org> for more details.
#
#replaygain                      "album"
#
# Sets the pre-amp used for files that have ReplayGain tags.
#
#replaygain_preamp               "0"
#
# Enable on the fly volume normalization.  This will cause the
# volume of all songs played to be adjusted so that they sound
# as though they are of equal loudness.
#
#volume_normalization            "no"
#
################################################################


########################### BUFFERING ##########################
#
# The size of the buffer containing decoded audio.  You probably
# shouldn't change this.
#
#audio_buffer_size               "2048"
#
# How much of the buffer to fill before beginning to play.
#
#buffer_before_play              "0%"
#
# Similar options for the HTTP stream buffer.  If you hear
# skipping while playing HTTP streams, you may wish to increase
# these.
#
#http_buffer_size                "128"
#http_prebuffer_size             "25%"
#
################################################################


########################### HTTP PROXY #########################
#
# Specifies the HTTP proxy to use for playing HTTP streams.
#
#http_proxy_host                 "proxy.isp.com"
#http_proxy_port                 "8080"
#http_proxy_user                 "user"
#http_proxy_password             "password"
#
################################################################


############################# LIMITS ###########################
#
# These are various limits to prevent MPD from using too many
# resources.  You should only change them if they start
# restricting your usage of MPD.
#
#connection_timeout              "60"
#max_connections                 "5"
#max_playlist_length             "16384"
#max_command_list_size           "2048"
#max_output_buffer_size          "8192"
#
################################################################


###################### CHARACTER ENCODINGS #####################
#
# If file or directory names do not display correctly, then you
# may need to change this.  In most cases it should be either
# "ISO-8859-1" or "UTF-8".  You must recreate your database
# after changing this (use mpd --create-db).
#
filesystem_charset              "ISO-8859-1"   <- Ääkköset
#
# The encoding that ID3v1 tags should be converted from.
#
id3v1_encoding                  "ISO-8859-1"   <- Ääkköset
#
################################################################


######################### OTHER OPTIONS ########################
#
# The metadata types MPD will recognize.
#
metadata_to_use                  "artist,album,title,track,name,genre,date,composer,performer,disc"
#
# Enable this if you wish to use your MPD created playlists in
# other music players.
#
#save_absolute_paths_in_playlists "no"
#
################################################################

2. Laitetaan MMPC-ohjelmaan oikea ip-numero ja portti.

http://www.arkki.info/howto/N800/MPD_00.png

3. Kauko-ohjataan Ubuntua.

http://www.arkki.info/howto/N800/MPD_01.png

Ystävällisin terveisin Asmo Koskinen.
« Viimeksi muokattu: 23.04.07 - klo:21.39 kirjoittanut Asmo Koskinen »

Asmo Koskinen

  • Käyttäjä
  • Viestejä: 4443
    • Profiili
Vs: Nokia N800
« Vastaus #101 : 23.04.07 - klo:21.54 »
Seurasin tätä ohjetta: http://ubuntuforums.org/showthread.php?t=320469

Niin ja sama asiakasohjelma löytyy myös Ubuntun työpöydälle (Gnome MPC).

http://www.arkki.info/howto/N800/MPD_03.png

Ystävällisin terveisin Asmo Koskinen.

gozela

  • Käyttäjä
  • Viestejä: 7
    • Profiili
Vs: Nokia N800
« Vastaus #102 : 24.04.07 - klo:10.21 »
Seurasin tätä ohjetta: http://ubuntuforums.org/showthread.php?t=320469

Niin ja sama asiakasohjelma löytyy myös Ubuntun työpöydälle (Gnome MPC).

http://www.arkki.info/howto/N800/MPD_03.png

Ystävällisin terveisin Asmo Koskinen.

Kiitoksia paljon avusta. Tuossa conf-tiedostossa oli muutama kohta, jotka varmasti aiheuttavat sen, ettei biisit näy (esim. linkki musa-kansioon ja se, ettei localhost-riviä kommentoida, kuten jossain ohjeessa mainittiin). Kokeilen tuota ja toivottavasti onnistuu!

Anssi

  • Käyttäjä
  • Viestejä: 1342
    • Profiili
Vs: Nokia N800
« Vastaus #103 : 07.07.07 - klo:12.32 »
http://www.digitoday.fi/page.php?page_id=9&news_id=200716632

nyt saa N800:n flash9 ja skypen jos joku on niitä odottanut.

Asmo Koskinen

  • Käyttäjä
  • Viestejä: 4443
    • Profiili
Vs: Nokia N800
« Vastaus #104 : 07.07.07 - klo:15.22 »
nyt saa N800:n flash9 ja skypen jos joku on niitä odottanut.

Lisäksi tuki isommille korteille.

Ystävällisin terveidin Asmo Koskinen.

[ylläpito on poistanut liitteen]
« Viimeksi muokattu: 07.07.07 - klo:15.24 kirjoittanut Asmo Koskinen »

Asmo Koskinen

  • Käyttäjä
  • Viestejä: 4443
    • Profiili
Vs: Nokia N800
« Vastaus #105 : 09.07.07 - klo:06.54 »
Lisäksi tuki isommille korteille.

Kun ensi kuussa siirrymme virallisesti digiaikaan, niin pitäisi laittaa MythTV-projekti pystyyn ja lisätä siihen tämä ohje:

"The purpose of this HOWTO is to lead you toward setting up MythTV to automatcially transcode and copy programs overnight to an SD card so you can watch on the plane, train or bus."

http://www.mythtv.org/wiki/index.php/Nokia_N800_Tablet_PDA

Ystävällisin terveisin Asmo Koskinen.

Anssi

  • Käyttäjä
  • Viestejä: 1342
    • Profiili
Nokia N800: seuraaja?
« Vastaus #106 : 16.07.07 - klo:11.02 »

Asmo Koskinen

  • Käyttäjä
  • Viestejä: 4443
    • Profiili
Vs: Nokia N800
« Vastaus #107 : 23.07.07 - klo:13.25 »
Lisäksi tuki isommille korteille.

Tilaa tarvitaan esimerkiksi ladatuille videoille:

http://konttoristhoughts.blogspot.com/2007/07/uktube-06-out-ukmp-14-out-in-beta.html

Ystävällisin terveisin Asmo Koskinen.

Asmo Koskinen

  • Käyttäjä
  • Viestejä: 4443
    • Profiili
Vs: Nokia N800
« Vastaus #108 : 26.07.07 - klo:21.20 »
Hankin sitten Saunalahden halvimman kapulan (Nokia 6151), liittymän (PerusPaketti 3G) ja "laajakaistan" (128) ~ 15€/KK. Kapula saapui tänään, tuntuu toimivan ihan asiallisesti - ihan niin kuin se 14k:n modeemi silloin joskus kauan sitten. Tarkoitus on pitää tuota kapulaa taskun pohjalla pelkkänä modeemina, minulla on työpuhelin erikseen.

Kuvia.

http://www.arkki.info/howto/N800/screenshot01.png

http://www.arkki.info/howto/N800/screenshot02.png

http://www.arkki.info/howto/N800/screenshot03.png

http://www.arkki.info/howto/N800/screenshot04.png

http://www.arkki.info/howto/N800/screenshot05.png

http://www.arkki.info/howto/N800/screenshot06.png

http://www.arkki.info/howto/N800/screenshot07.png

http://www.arkki.info/howto/N800/screenshot08.png

http://www.arkki.info/howto/N800/screenshot09.png

http://www.arkki.info/howto/N800/screenshot10.png

Ystävällisin terveisin Asmo Koskinen.
« Viimeksi muokattu: 26.07.07 - klo:21.22 kirjoittanut Asmo Koskinen »

jere82

  • Käyttäjä
  • Viestejä: 67
  • Häh.... en tiiä
    • Profiili
Vs: Nokia N800
« Vastaus #109 : 01.08.07 - klo:08.59 »
Mitäpä elämä ois ilman säätämistä

Asmo Koskinen

  • Käyttäjä
  • Viestejä: 4443
    • Profiili
Vs: Nokia N800
« Vastaus #110 : 25.08.07 - klo:12.20 »
Tämä voisi kiinnostaa muitakin kuin N800:n omistajia.

"It's easy to get a DVD on to the Nokia 770 or Nokia N800."

http://tabletblog.com/2007/08/dvd-to-internet-tablet-in-two-steps.html

Ystävällisin terveisin Asmo Koskinen.

Asmo Koskinen

  • Käyttäjä
  • Viestejä: 4443
    • Profiili
Vs: Nokia N800
« Vastaus #111 : 25.08.07 - klo:12.54 »
http://tabletblog.com/2007/08/dvd-to-internet-tablet-in-two-steps.html

Askel 1. "Title 4" kokonaan.

asmok@ubuntu:~/bin$ ./HandBrakeCLI -t 4 -i /dev/cdrom -o Portishead.mp4 -f mp4
HandBrake 0.9.0 (2007081900) - http://handbrake.m0k.org/
2 CPUs detected
Opening /dev/cdrom...
+ title 4:
  + vts 3, ttn 2, cells 0->0 (208137 blocks)
  + duration: 00:10:16
  + size: 720x576, aspect: 1.33, 25.000 fps
  + autocrop: 2/0/8/10
  + chapters:
    + 1: cells 0->0, 208137 blocks, duration 00:10:16
  + audio tracks:
    + 1, English (AC3) (2.0 ch), 48000Hz, 224000bps
    + 2, English (AC3) (5.1 ch), 48000Hz, 448000bps
  + subtitle tracks:
[mpeg4 @ 0x850b738]removing common factors from framerate
No accelerated IMDCT transform found
Encoding: task 1 of 1, 100.00 % (93.84 fps, avg 94.13 fps, ETA 00h00m00s)
Rip done!
HandBrake has exited.

Askel 2. 30 sekunnin pätkä "Title 4" -MP4-tiedostosta.

asmok@ubuntu:~/bin$ cd Media*
asmok@ubuntu:~/bin/MediaConverterLinux$ java -jar ./MediaConverter.jar

Kuva 1. MC-säädöt.

http://www.arkki.info/howto/N8002/HB_MC_001.png

Kuva 2. Valmis pätkä matkalle mukaan  :)

http://www.arkki.info/howto/N8002/HB_MC_002.png

Ystävällisin terveisin Asmo Koskinen.
« Viimeksi muokattu: 25.08.07 - klo:15.12 kirjoittanut Asmo Koskinen »

Asmo Koskinen

  • Käyttäjä
  • Viestejä: 4443
    • Profiili
Vs: Nokia N800
« Vastaus #112 : 25.08.07 - klo:22.49 »
Kuva 2. Valmis pätkä matkalle mukaan  :)

HandBreak ja MediaConverter ovat varsin tehokas ja suoraviivainen yhdistelmä.  Tein "5th Element"-DVD:stä laadukkaan puristeen N800:n näytölle.

asmok@ubuntu:~/DVD_N800/5thElement$ ls -l
yhteensä 1417112
-rw-r--r-- 1 asmok asmok 1027669792 2007-08-25 20:46 5thElement.mp4
-rw-r--r-- 1 asmok asmok  422020796 2007-08-25 21:22 5thElement.mp4.nokia770.avi
asmok@ubuntu:~/DVD_N800/5thElement$ file 5thElement.mp4
5thElement.mp4: ISO Media, MPEG v4 system, version 2
asmok@ubuntu:~/DVD_N800/5thElement$ file 5thElement.mp4.nokia770.avi
5thElement.mp4.nokia770.avi: RIFF (little-endian) data, AVI, 352 x 208, video: DivX 4, audio: MPEG-1 Layer 3 (stereo, 44100 Hz)
asmok@ubuntu:~/DVD_N800/5thElement$

Tilaa mene siis n. 1/2 gigaa yhdelle n. 2 tunnin mittaiselle elokuvalle.

Aika huima monimedia- ja monifunktiolaite tämä N800. Skaalaa löytyy OpenSSH-palvelimesta ja -asiakasohjelmasta Canolaan.

Ja N800:n näyttö on todella loistava, kirkas ja tarkka. Elokuvan katsominen ei todellakaan ole tihrustamista.

N800 nitoo hienosti yhteen "suomalaista" osaamista - Linuksesta Nokiaan.

Ystävällisin terveisin Asmo Koskinen.
« Viimeksi muokattu: 26.08.07 - klo:01.25 kirjoittanut Asmo Koskinen »

janne

  • Käyttäjä
  • Viestejä: 5150
    • Profiili
Vs: Nokia N800
« Vastaus #113 : 26.08.07 - klo:01.18 »
en jaksanut selata kaikkia sivuja läpi nähdäkseni oliko tästä jo tässä ketjussa, mutta siltä varalta, että ei ollut...

e17 näyttää myös pyörivät n800:lla:
http://www.rasterman.com/
Janne

janne

  • Käyttäjä
  • Viestejä: 5150
    • Profiili
Vs: Nokia N800
« Vastaus #114 : 17.10.07 - klo:20.38 »
e17 näyttää myös pyörivät n800:lla:
http://www.rasterman.com/

ja kohta varmaan myös n810:lla
Janne

piikki

  • Vieras
Vs: Nokia N800
« Vastaus #115 : 17.10.07 - klo:20.44 »

flyier

  • Käyttäjä
  • Viestejä: 13
    • Profiili
Nokia N810
« Vastaus #116 : 17.10.07 - klo:23.40 »
Vihdoinkin uusi N810 internet tablet on julkaistu.. ;D
Lisää aiheesta http://maemo.org/news/planet-maemo/

Risto H. Kurppa

  • Käyttäjä
  • Viestejä: 3024
  • Useita Kubuntuja ajossa.
    • Profiili
    • http://risto.kurppa.fi
Vs: Nokia N810
« Vastaus #117 : 18.10.07 - klo:01.08 »
jep, ja keskustelua N800:sta täällä:
http://forum.ubuntu-fi.org/index.php?topic=7804.0

r

ps. jos joku kykenee järjestämään tuollaisen jollain developer-alennuksella tai on jo kyllästynyt N800:nsa tai haluaa siitä eroon N810:n takia niin pistäkää privaviestiä :)
« Viimeksi muokattu: 18.10.07 - klo:01.30 kirjoittanut Risto H. Kurppa »
UUSI UBUNTUN KÄYTTÄJÄ: SÄÄSTÄ AIKAASI LUKEMALLA  -> TÄMÄ <-

Risto H. Kurppa

  • Käyttäjä
  • Viestejä: 3024
  • Useita Kubuntuja ajossa.
    • Profiili
    • http://risto.kurppa.fi
« Viimeksi muokattu: 18.10.07 - klo:08.49 kirjoittanut Risto H. Kurppa »
UUSI UBUNTUN KÄYTTÄJÄ: SÄÄSTÄ AIKAASI LUKEMALLA  -> TÄMÄ <-

Melmacian

  • Käyttäjä
  • Viestejä: 868
  • Ubuntu Hardy
    • Profiili
Vs: Nokia N810
« Vastaus #119 : 18.10.07 - klo:10.03 »