On 9/3/2015 12:04 PM, Cecil Bankston wrote: > NoOp wrote: >> On 9/2/2015 12:17 PM, Cecil Bankston wrote: >>> EE wrote: >>>> Cecil Bankston wrote: >>>>> EE wrote: >>>>>> Brian Mailman wrote: >>>>>>> I like to open CNN http://www.cnn.com first thing, read the >>>>>>> headlines of >>>>>>> the stories I want to read later and right-click on them. "Open New >>>>>>> Tab" I pick. Then I read the stories I've selected. >>>>>>> >>>>>>> Problem is, CNN doesn't believe the readers know how to read and that >>>>>>> they want to watch videos. I don't. I want to read the stories. >>>>>>> >>>>>>> I wind up with a cacophony of videos, and I have to find them one by >>>>>>> one >>>>>>> before I can find peace. >>>>>>> >>>>>>> Is there a way of shutting down the videos unless/until I want to see >>>>>>> them? >>>>>>> >>>>>>> Thanks. >>>>>>> >>>>>>> B/ >>>>>> >>>>>> What is that site using to send the videos? Is it a plugin or HTML5? If >>>>>> a plugin is being used, you could set up Plugins Click-to-Play, mark the >>>>>> plugins as "Ask to Activate", and you should get placeholders that have >>>>>> to be cleared before any can load and play. If it is HTML5, you may >>>>>> have to set up Flashblock 1.5.19a1 and set it to block HTML5. It has to >>>>>> be converted to install in SeaMonkey. You have to get that version of >>>>>> Flashblock from Mozdev. >>>>>> http://downloads.mozdev.org/flashblock/ >>>>>> The converter is here: >>>>>> http://addonconverter.fotokraina.com/ >>>>>> >>>>> Several pages start playing a video as soon as the page loads. I >>>>> installed the converted Flashblock, as suggested, then found this >>>>> statement in the Flashblock details: "Flashblock does not work with >>>>> Javascript disabled or with NoScript installed." I have NoScript >>>>> installed as a vital security measure, and indeed the Flashblock didn't >>>>> work. Is there any other means of preventing immediate playing of >>>>> videos in pages such as this: >>>>> http://segmentnext.com/2014/11/19/far-cry-4-rare-animals-locations-kyrat-fashion-week-quests-guide/ >>>>> >>>>> >>>>> >>>> What happens if you whitelist with NoScript the sites where you want to >>>> watch videos? Does Flashblock work then? >>>> >>> I had uninstalled Flashblock before I saw your reply. I then installed >>> the converted Flashstopper extension. Youtube pages don't autoplay, but >>> the page at the above URL still plays automatically. Did you try that >>> page with your setup? >>> >> >> The segmentnext.com video is H.264. You can turn on/off in >> 'about:config' by toggling 'media.gstreamer.enabled'. >> >> I have a prefbar button that I created to turn H.264 on/off: >> >> Checkbox >> id: gstreamer >> Label: H.284 >> Prefstring: media.gstreamer.enabled >> toPref: value >> fromPref: value >> Hotkey: (disabled) >> >> In other words, the button changes media.gstreamer.enabled in >> about:config from true to false the button is unchecked which disables >> H.264. >> >> https://addons.mozilla.org/en-US/seamonkey/addon/prefbar/ >> >> Note: I also have the same for WebM if you are interested: >> >> Checkbox >> id: webm >> Label: WebM >> Prefstring: media.webm.enabled >> toPref: value >> fromPref: value >> Hotkey: (disabled) >> >> > That appears to be just the solution I need if I can get them to work. > I edited a copy of an existing checkbox btn file in my PrefBar, using > NotePad, and imported it for the H.284. With the box unchecked the > SegmentNext video still autoplays. I tried to do the same for WebM, but > when I tried to import the btn file it didn't appear in the enabled > list. There was no error message. > > The Playwire site that links from the SegmentNext video mentions a "Bolt > Media Player" for HTML5 videos. How is that related to H.284 or GStreamer? >
I've found that the buttons do not work for all. Digging a little deeper finds there are several issues that cause the videos to play anyway: http://www.ghacks.net/2015/06/11/finally-mozilla-adds-working-html5-video-autoplay-blocking-to-firefox/ and this: https://bugzilla.mozilla.org/show_bug.cgi?id=659285 "Bug 659285 - Extend media.autoplay.enabled to provide a way to disable untrusted play() invocations" I tested autoplay blocking with the following prefbar button in Firefox 42 (dev) and autoplay on/off is working there. So it's fixed in Firefox 41/42, but now the trick will be to get it fixed in SeaMonkey (2.35 and other versions). autoplay.btn { "prefbar:info": { "formatversion": 3 }, "prefbar:menu:enabled": { "items": [ "prefbar:button:autoplay" ] }, "prefbar:button:autoplay": { "type": "check", "label": "AutoPlay", "prefstring": "media.autoplay.enabled", "topref": "value", "frompref": "value" } } _______________________________________________ support-seamonkey mailing list [email protected] https://lists.mozilla.org/listinfo/support-seamonkey

