[arch-ports] gnash problem ?
Hi, I installed gnasg-common but I have this error that I havent in previus gnash version Could not find any <gui>-gnash executable under directory /usr/bin, with <gui> in . thankyou sacarde@tiscali.it
The gnash package has been split, please install gnash-gtk or gnash-kde for a gui. Am Freitag, den 14.09.2007, 07:56 +0200 schrieb sacarde:
Hi, I installed gnasg-common but I have this error that I havent in previus gnash version
Could not find any <gui>-gnash executable under directory /usr/bin, with <gui> in .
thankyou
sacarde@tiscali.it
_______________________________________________ arch-ports mailing list arch-ports@archlinux.org http://archlinux.org/mailman/listinfo/arch-ports
Il Friday 14 September 2007 08:23:37 hai scritto:
The gnash package has been split, please install gnash-gtk or gnash-kde for a gui.
I already have them
Am Freitag, den 14.09.2007, 10:04 +0200 schrieb sacarde:
Il Friday 14 September 2007 08:23:37 hai scritto:
The gnash package has been split, please install gnash-gtk or gnash-kde for a gui.
I already have them
└> pacman -Sy gnash-common gnash-gtk (...) └> pacman -Ql gnash-gtk gnash-gtk /opt/mozilla/lib/plugins/libgnashplugin.so gnash-gtk /usr/bin/gtk-gnash └> ls -l /usr/bin/gtk-gnash -rwxr-xr-x 1 root root 692964 13. Sep 15:21 /usr/bin/gtk-gnash └> ls -l /usr/bin/gnash -rwxr-xr-x 1 root root 1459 13. Sep 11:03 /usr/bin/gnash └> gnash Error: no input file was specified. usage: gnash [options] movie_file.swf (...) works for me...
I try this script working in previous gnash version: #! /bin/sh WATCH_URL="$1" if [ $# != 1 ]; then echo "USAGE: $0 \"http://(jp.)youtube.com/watch?v=...\"" exit 1 fi SWF_ARGS=$(wget -q -O - "${WATCH_URL}" | grep "var swfArgs") VIDEO_ID=$(echo ${SWF_ARGS} | cut -d , -f3 | sed -e "s/video_id:'\([^']*\)'/\1/") L=$(echo ${SWF_ARGS} | cut -d , -f4 | sed -e "s/l:'\([^']*\)'/\1/") T=$(echo ${SWF_ARGS} | cut -d , -f5 | sed -e "s/t:'\([^']*\)'/\1/") SK=$(echo ${SWF_ARGS} | cut -d , -f6 | sed -e "s/sk:'\([^']*\)'};/\1/") FLASH_VARS="video_id=${VIDEO_ID}&l=${L}&t=${T}&sk=${SK}" wget -q -N -P /var/tmp/ http://jp.youtube.com/player2.swf gnash -U http://jp.youtube.com -P "FlashVars=${FLASH_VARS}" /var/tmp/player2.swf # swfplay -v ${FLASH_VARS} http://jp.youtube.com/player2.swf
Am Freitag, den 14.09.2007, 10:37 +0200 schrieb sacarde:
I try this script working in previous gnash version:
#! /bin/sh WATCH_URL="$1" if [ $# != 1 ]; then echo "USAGE: $0 \"http://(jp.)youtube.com/watch?v=...\"" exit 1 fi SWF_ARGS=$(wget -q -O - "${WATCH_URL}" | grep "var swfArgs") VIDEO_ID=$(echo ${SWF_ARGS} | cut -d , -f3 | sed -e "s/video_id:'\([^']*\)'/\1/") L=$(echo ${SWF_ARGS} | cut -d , -f4 | sed -e "s/l:'\([^']*\)'/\1/") T=$(echo ${SWF_ARGS} | cut -d , -f5 | sed -e "s/t:'\([^']*\)'/\1/") SK=$(echo ${SWF_ARGS} | cut -d , -f6 | sed -e "s/sk:'\([^']*\)'};/\1/") FLASH_VARS="video_id=${VIDEO_ID}&l=${L}&t=${T}&sk=${SK}" wget -q -N -P /var/tmp/ http://jp.youtube.com/player2.swf gnash -U http://jp.youtube.com -P "FlashVars=${FLASH_VARS}" /var/tmp/player2.swf # swfplay -v ${FLASH_VARS} http://jp.youtube.com/player2.swf
change gnash -U into gtk-gnash -U
participants (2)
-
Armin Luntzer
-
sacarde