LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 04-27-2017, 11:34 PM   #1
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Rep: Reputation: 176Reputation: 176
Most videos are playing; some aren't


Running Xubuntu 16.04LTS on a 64 bit Dell Optiplex GX 520. The browser is Firefox 53.0.(64-bit) All Youtube videos play all right but on some other websites I get this message when I click on the play arrow. (screenshot) Any idea what I need to do? Thanks.
Attached Thumbnails
Click image for larger version

Name:	Selection_112.png
Views:	34
Size:	98.5 KB
ID:	24863  
 
Old 04-28-2017, 01:54 AM   #2
Shadow_7
Senior Member
 
Registered: Feb 2003
Distribution: debian
Posts: 4,137
Blog Entries: 1

Rep: Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874
You would need the freshplayerplugin for firefox and the PPAPI version of flash. By the looks of that error. Not a default for most distro setups. But doable.
 
1 members found this post helpful.
Old 04-28-2017, 03:50 AM   #3
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
Can you give the URL of a sample site/video?

Also, what is the output from dpkg -l '*flash*' ?
 
1 members found this post helpful.
Old 04-28-2017, 10:02 AM   #4
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
you got a image of search paths that firefox uses to look for a flash plugin, get a pepper flash plugin.so create one of them search paths then move that file into it. fixed.

OR

just put it in
Code:
~/.mozilla/plugins/libpepflashplayer.so
for local use only.
That is where I have mine, but I too have done this the other way as well, both ways always works for me.

That one above, I got out of a deb file using ark to untar it.

Version 25.0.0.148

https://get.adobe.com/flashplayer/

I just checked my page and its outdated
I just downloaded another one from that sight
libflashplayer.so putting it in to the same home dir

even though it looks like this one
libpepflashplayer.so
is chugging right through them because I am not having any issues with watching Youtube videos with 25.0.0.127 libflashplayer.so being outdated already.

Last edited by BW-userx; 04-28-2017 at 10:36 AM.
 
1 members found this post helpful.
Old 04-28-2017, 12:25 PM   #5
Rickkkk
Senior Member
 
Registered: Dec 2014
Location: Montreal, Quebec and Dartmouth, Nova Scotia CANADA
Distribution: Arch, AntiX, ArtiX
Posts: 1,364

Rep: Reputation: 511Reputation: 511Reputation: 511Reputation: 511Reputation: 511Reputation: 511
I agree with BW-userx - you're just missing the pepperflash plugin that Firefox is expecting. I use neither Ubuntu nor Firefox, but pepperflash is a common requirement.

Cheers,
 
1 members found this post helpful.
Old 04-28-2017, 12:39 PM   #6
rokytnji
LQ Veteran
 
Registered: Mar 2008
Location: Waaaaay out West Texas
Distribution: antiX 23, MX 23
Posts: 7,111
Blog Entries: 21

Rep: Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474
You can start with

Code:
sudo updatedb
Let it finish

then do

Code:
locate libpepflashplayer
To see if you got it or not.
 
1 members found this post helpful.
Old 04-28-2017, 12:41 PM   #7
rokytnji
LQ Veteran
 
Registered: Mar 2008
Location: Waaaaay out West Texas
Distribution: antiX 23, MX 23
Posts: 7,111
Blog Entries: 21

Rep: Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474
For BW-X post.

Code:
locate libflashplayer
should suffice.
 
1 members found this post helpful.
Old 04-28-2017, 01:10 PM   #8
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
Quote:
Originally Posted by rokytnji View Post
For BW-X post.

Code:
locate libflashplayer
should suffice.
then just do this to update it too.
Code:
userx%slackwhere ⚡ ~ ⚡> locate libflashplayer
/home/userx/libflashplayer.so
/home/userx/.mozilla/plugins/libflashplayer.so
/usr/lib64/mozilla/plugins/libflashplayer.so

# copy or move new one over top old outdated one.

userx%slackwhere ⚡ ~ ⚡> sudo cp -v /home/userx/.mozilla/plugins/libflashplayer.so /usr/lib64/mozilla/plugins/libflashplayer.so
'/home/userx/.mozilla/plugins/libflashplayer.so' -> '/usr/lib64/mozilla/plugins/libflashplayer.so'
userx%slackwhere ⚡ ~ ⚡>

Last edited by BW-userx; 04-28-2017 at 01:16 PM.
 
1 members found this post helpful.
Old 04-28-2017, 01:24 PM   #9
Shadow_7
Senior Member
 
Registered: Feb 2003
Distribution: debian
Posts: 4,137
Blog Entries: 1

Rep: Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874
FreshPlayerPluin is a translation layer for NPAPI to PPAPI calls. That plus the pepperflash plugin works for most modern things. But still a manual process for many distros, so that means security updates are also manual. And flash tends to update at least monthly if not weekly for security updates. The NPAPI to PPAPI layer ensures that legacy games and other things still work. While presenting a modern / windows-ish version number that doesn't get you blocked by many sites these days.

For my setup:

$HOME/.mozilla/plugins/libfreshwrapper-flashplayer.so

$HOME/.mozilla/flash/libpepflashplayer.so
$HOME/.mozilla/flash/manifest.json

$HOME/.config/freshwrapper.conf


Where libfreshwrapper-flashplayer.so is from source:
$ git clone https://github.com/i-rinat/freshplayerplugin.git

Where libpepflashplayer.so and manifest.json are from the adobe.com .tar.gz.
https://get.adobe.com/flashplayer/
Click need Flash Player for another computer.
Step 1 to Linux (64 bit)
Step 2 to (PPAPI) and .tar.gz

Where freshwrapper.conf tells the plugin to look at $HOME/.mozilla/flash/ for the PPAPI plugin.
Code:
pepperflash_path = "/home/iceweasel/.mozilla/flash/libpepflashplayer.so"
Plus the other default bits in the example from the source tree of freshplayerplugin.

YMMV
 
1 members found this post helpful.
Old 04-28-2017, 06:15 PM   #10
AwesomeMachine
LQ Guru
 
Registered: Jan 2005
Location: USA and Italy
Distribution: Debian testing/sid; OpenSuSE; Fedora; Mint
Posts: 5,524

Rep: Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015
Just launch synaptic and do a search for pepperflash. Select the resulting packages and install them.
 
1 members found this post helpful.
Old 04-28-2017, 10:30 PM   #11
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Quote:
Originally Posted by hydrurga View Post
Can you give the URL of a sample site/video?

Also, what is the output from dpkg -l '*flash*' ?
Hi hydrurga. Here is the actual link from the screenshot in the OP. https://www.autocrit.com/editing/support/adverbs/

And here's the results of the command:
Code:
gregory@gregory-OptiPlex-GX520:~/Desktop$ dpkg -l '*flash*'
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name                                    Version                  Architecture             Description
+++-=======================================-========================-========================-===================================================================================
un  adobe-flashplugin                       <none>                   <none>                   (no description available)
ii  browser-plugin-freshplayer-pepperflash  0.3.4-3ubuntu0.1         amd64                    PPAPI-host NPAPI-plugin adapter for pepperflash
un  flashplayer-mozilla                     <none>                   <none>                   (no description available)
un  flashplugin                             <none>                   <none>                   (no description available)
un  flashplugin-downloader                  <none>                   <none>                   (no description available)
ii  flashplugin-installer                   25.0.0.148ubuntu0.16.04. amd64                    Adobe Flash Player plugin installer
un  flashplugin-nonfree                     <none>                   <none>                   (no description available)
un  libflash-mozplugin                      <none>                   <none>                   (no description available)
un  libflashsupport                         <none>                   <none>                   (no description available)
rc  pepperflashplugin-nonfree               1.8.2ubuntu1             amd64                    Pepper Flash Player - browser plugin
gregory@gregory-OptiPlex-GX520:~/Desktop$
Thanks
 
Old 04-28-2017, 10:39 PM   #12
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Thanks guys. I'm a little uncertain about all the suggested commands though, especially since (per Awesome's advice) I looked in Synaptic and it seems I already have pepper flash (screenshot). Is this the case or do I need to run those suggested searches and commands?
Attached Thumbnails
Click image for larger version

Name:	Selection_116.png
Views:	7
Size:	19.8 KB
ID:	24880  
 
Old 04-29-2017, 02:43 AM   #13
AwesomeMachine
LQ Guru
 
Registered: Jan 2005
Location: USA and Italy
Distribution: Debian testing/sid; OpenSuSE; Fedora; Mint
Posts: 5,524

Rep: Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015
Pepperflash gets its actual flash plugin from the Chrome browser. If Chrome is not installed, pepper flash won't work. So, you should uninstall the pepperflash packages, install the Chrome browser, and reinstall the pepperflash packages. Then you should have HTML5 capability in firefox, which is what you want.
 
1 members found this post helpful.
Old 04-29-2017, 04:42 AM   #14
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by Gregg Bell View Post
Thanks guys. I'm a little uncertain about all the suggested commands though, especially since (per Awesome's advice) I looked in Synaptic and it seems I already have pepper flash (screenshot). Is this the case or do I need to run those suggested searches and commands?
honestly?
there's 2 packages.
one of them has a green square, the other an empty square.
what does that tell you?


on a sidenote...
many people are not making full use of the synaptic search function.
if you just enter the text in the little text field, you only get packages that have the exact string enetered in their name.
if, however, you press the magnifying glass you get more options, e.g. "look in description and name".
 
1 members found this post helpful.
Old 04-29-2017, 08:01 AM   #15
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
Ok, I'm going to go against the grain here, Gregg. If you're not using Chrome then you don't need Pepper Flash (at least for the moment as Firefox still supports NPAPI flash). In fact, because you have a residual configuration of pepperflashplugin-nonfree as well as an installed browser-plugin-freshplayer-pepperflash, things are not going to go smoothly as it is.

So, what I would suggest is that you close your browser and remove both peppers:

sudo apt-get --purge autoremove pepperflashplugin-nonfree browser-plugin-freshplayer-pepperflash

Then, reinstall flashplugin-installer just in case:

sudo apt-get --reinstall install flashplugin-installer

Then relaunch Firefox and test out the relevant videos again (the grammar one you posted works fine for me with Firefox and flashplugin-installer).
 
1 members found this post helpful.
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Videos not playing. paulie_linux Linux - Newbie 10 12-08-2013 09:44 AM
Apache, perl and glob aren't playing nicely together markseger Linux - Software 1 02-19-2012 04:54 PM
totem and xine aren't playing .avi files aditya1 Ubuntu 4 03-27-2006 03:31 PM
RH9 and WinXP aren't playing nice! chickFAE Linux - Networking 2 10-09-2003 05:54 PM
playing two videos at once. Moebius Linux - Software 1 07-09-2003 05:38 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 03:11 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration