USA Linux Users Group Forum Index
Log in Register FAQ Memberlist Search USA Linux Users Group Forum Index Album

Adobe Flashplugin 9.0.124.9 Released with DRM

 
Post new topic   Reply to topic   printer-friendly view    USA Linux Users Group Forum Index » Application News and Releases
View previous topic :: View next topic  
Author Message
jada
Linux Guru


Joined: 13 May 2024
Posts: 3064
Location: Sun City, CA 92585

PostPosted: Thu Apr 10, 2024 2:10 am    Post subject: Adobe Flashplugin 9.0.124.9 Released with DRM Reply with quote

Adobe Flashplugin 9.0.124.9 Released with DRM

Today Adobe released the new Flashplugin's with DRM.



_________________
openSUSE 11.1 Desktop KDE 4.3.1 buildservice Factory
Linux Mint 7 Desktop Gnome
Back to top
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger
platinummonkey
Advanced Member


Joined: 01 Mar 2024
Posts: 732
Location: Texas

PostPosted: Thu Apr 10, 2024 3:38 am    Post subject: Reply with quote

but does it work on 64-bit machines? Wink

unfortunately no Sad [checked the installer, only supports 32-bit still x.x 64 bits will be utterly rejected]



_________________
desktop - FreeBSD 7.2
laptop & server - Archlinux i686 kernel26 2.6.32.10-1
- TAMULinux-2.0.2-ALPHA
USB Boot - Archlinux i686 kernel26 2.6.32.10-1 USB boot
Back to top
View user's profile Send private message Visit poster's website AIM Address
jada
Linux Guru


Joined: 13 May 2024
Posts: 3064
Location: Sun City, CA 92585

PostPosted: Thu Apr 10, 2024 2:05 pm    Post subject: Reply with quote

platinummonkey wrote:
but does it work on 64-bit machines? Wink

unfortunately no Sad [checked the installer, only supports 32-bit still x.x 64 bits will be utterly rejected]


Adobe Philosopy.
under 10% not worse to do it.
In fact, does it work with Opera?
We are happy that it now works with Linux Wink

and how are using 64bit? If you go in a Shop and ask there for a new Computer with a 64bit Windows, they looking at you with the same stupid faces us if you ask for Linux.



_________________
openSUSE 11.1 Desktop KDE 4.3.1 buildservice Factory
Linux Mint 7 Desktop Gnome
Back to top
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger
Vorian Grey
New Member


Joined: 22 Mar 2024
Posts: 47

PostPosted: Fri Apr 11, 2024 2:53 am    Post subject: Reply with quote

It might be time to check out gnash.



_________________
debian testing
Back to top
View user's profile Send private message
jada
Linux Guru


Joined: 13 May 2024
Posts: 3064
Location: Sun City, CA 92585

PostPosted: Fri Apr 11, 2024 3:07 am    Post subject: Reply with quote

Vorian Grey wrote:
It might be time to check out gnash.


Gnash Full compatible up to Flash 5.
Compatible up to Flash 7

The Standart at the moment Flash 9 at YouTube, MySpace, Google, Yahoo, etc ...



_________________
openSUSE 11.1 Desktop KDE 4.3.1 buildservice Factory
Linux Mint 7 Desktop Gnome
Back to top
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger
platinummonkey
Advanced Member


Joined: 01 Mar 2024
Posts: 732
Location: Texas

PostPosted: Fri Apr 11, 2024 4:21 am    Post subject: Reply with quote

lol, i am using gnash, but it doesnt fully support everything Wink dynamic loading is shotty at best... (im talking about when it trys to load more than one external item into the movie, single loads seem to go smoothly)



_________________
desktop - FreeBSD 7.2
laptop & server - Archlinux i686 kernel26 2.6.32.10-1
- TAMULinux-2.0.2-ALPHA
USB Boot - Archlinux i686 kernel26 2.6.32.10-1 USB boot
Back to top
View user's profile Send private message Visit poster's website AIM Address
inactive
Sr. Member


Joined: 29 Aug 2024
Posts: 1207

PostPosted: Fri Apr 11, 2024 12:57 pm    Post subject: Reply with quote

jada wrote:
Vorian Grey wrote:
It might be time to check out gnash.


Gnash Full compatible up to Flash 5.
Compatible up to Flash 7

The Standart at the moment Flash 9 at YouTube, MySpace, Google, Yahoo, etc ...

See here <snips>:
Quote:
Gnash is capable of reading up to SWF v9 files and opcodes, but primarily supports SWF v7, with better SWF v8 and v9 support under heavy development. With the 0.8.2 release, Gnash includes initial parser support for SWF v8 and v9. Not all ActionScript 2 classes are implemented yet, but all of the most heavily used ones are. Many ActionScript 2 classes are partially implemented; there is support for all of the commonly used methods of each class.

Many of the popular video sharing sites use SWF v8 or v9, which Gnash still has imperfect support for. This is improving all the time, so often builds from a development snapshot will work when using the older release packaged in your distribution doesn't. You can find daily snapshots of the latest CVS tree at: http://www.gnashdev.org/dev_snapshots.

So basically, they need help developing to become fully supportive. hhmmm... wonder who could do that? Very Happy
Possibly... oh,,,, our bash scripter? Um,,, maybe a couple others?



_________________
Mandriva 2024.1 PWP
Mandriva Cooker
ArtistX live
Back to top
View user's profile Send private message
platinummonkey
Advanced Member


Joined: 01 Mar 2024
Posts: 732
Location: Texas

PostPosted: Sat Apr 12, 2024 12:32 am    Post subject: Reply with quote

something i cooked up Razz (good break from studying for finals Razz for some reason configuring the pkg falls short Razz but, im sure someone here can play with it Razz)

gnashupdate.sh
Code:
#!/bin/bash
#
# Gnash Updater
# - Updates Gnash to the latest release for Archlinux.
#
# Author:   platinummonkey
# Created:   04/11/2008
# Modified:   04/11/2008
#
# Dependencies: lynx
#

cwd=$PWD
mkdir $cwd/gnashtmp

function checkmonth {
   case "$1" in
      'Jan')
         month="01";;
      'Feb')
         month="02";;
      'Mar')
         month="03";;
      'Apr')
         month="04";;
      'May')
         month="05";;
      'Jun')
         month="06";;
      'Jul')
         month="07";;
      'Aug')
         month="08";;
      'Sep')
         month="09";;
      'Oct')
         month="10";;
      'Nov')
         month="11";;
      'Dec')
         month="12";;
      *)
         echo "There was an error. Sorry.; exit 1;;
   esac
   return "$month"
}

function sdatetoint {
   numericdate=$1$2$3
   return $numericdate
}

function rmsource {
   cd $cwd
   rm -R $cwd/gnashtmp
}

if [ `id -u` != "0" ]; then
   echo "This must be run as root!"
   exit 1
else
   lynx -dump "http://www.gnashdev.org/dev_snapshots/" > $cwd/gnashtmp/lookup.txt
   newestpkg="`tail -n 5 lookup.txt | head -n1 | cut -d"/" -f5`"
   newestpkg_rd="${newestpkg:6:8}"
   #rm -f $cwd/gnashtmp/lookup.txt
   currentpkg="`pacman -Q gnash-common | cut -d" " -f2`"
   currentpkg_rd="`grep -m1 $currentpkg $cwd/gnashtmp/lookup.txt | cut -d" " -f6`"
   currentpkg_year=${currentpkg_rd:0:2}
   currentpkg_day=${currentpkg_rd:7}
   currentpkg_month=checkmonth "`echo $something | cut -d"-" -f2`"
   currentpkg_rd_s=sdatetoint $currentpkg_year $currentpkg_month $currentpkg_day
   if [[ "$currentpkg_rd_s" -gt "$newestpkg_rd" ]]
   then
      cd ./gnashtmp
      echo "Downloading..."
      wget "http://www.gnashdev.org/dev_snapshots/$newestpkg"
      echo "Unpacking..."
      tar xzf $newestpkg
      chmod -R +x $cwd/gnashtmp
      cd ./gnash-cvs
      echo "Building package"
      ./configure && make
      echo "Would you like to install the package now?"
      read action
      if [[ "$action" = [yY] ]]
      then
         echo "Removing current pkg"
         pacman -R --noconfirm gnash-common
         echo "Installing..."
         make install
         echo "Cleaning up..."
         rmsource
         echo "Complete"
      elif [[ "$action" = [nN] ]]
      then
         echo "Cleaning up..."
         rmsource
         echo "Exiting..."; exit 0;;
      else
         rmsource
         echo "Invalid option, exiting..."; exit 1;;
      fi
   else
      echo "The latest package is already installed."
      exit 0
   fi
fi


P.S. I kinda cheated and haven't really tested this script Razz i did most of the commands through the terminal Razz ... lol, i should really be studying Sad



_________________
desktop - FreeBSD 7.2
laptop & server - Archlinux i686 kernel26 2.6.32.10-1
- TAMULinux-2.0.2-ALPHA
USB Boot - Archlinux i686 kernel26 2.6.32.10-1 USB boot
Back to top
View user's profile Send private message Visit poster's website AIM Address
inactive
Sr. Member


Joined: 29 Aug 2024
Posts: 1207

PostPosted: Mon May 19, 2024 1:14 pm    Post subject: Reply with quote

Y'know, if Adobe would just not have gone the DRM route, they might be okay. I dunno. *shrug*



_________________
Mandriva 2024.1 PWP
Mandriva Cooker
ArtistX live
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic   printer-friendly view    USA Linux Users Group Forum Index » Application News and Releases All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All content © 2024-2009 - Usa Linux Users Group
This forum is powered by phpBB. © 2024-2009 phpBB Group
Theme created by phpBBStyles.com and modified by Crouse