TIL, has it been long when the restriction was dropped? At least wikipedia claims that firefox is webkit on ios, so possibly that is still the case?
The worst kind of an Internet-herpaderp. Internet-urpo pahimmasta päästä.
TIL, has it been long when the restriction was dropped? At least wikipedia claims that firefox is webkit on ios, so possibly that is still the case?
afaik, they really can’t. IIRC apple only allows webkit browsers on the platform, so that alone rules out any and all extensions made for firefox. Firefox on iphones is essentially reskinned safari - and that’s about it.
At least this is what internet has led me to believe, dunno, not an apple user.
right click the toolbar -> customize toolbar -> drag it back to it from the palette that should now be visible?
Nope, never* have, never* will.
* until stated otherwise
and you’re absolutely sure the files are av1? if you try to open the video files with ffmpeg, eg: ffmpeg -i videofile.mkv
, what does it say the codec is?
at least my av1 videos say: Stream #0:0[0x1](und): Video: av1 (libdav1d) (Main) (av01 / 0x31307661), yuv420p(tv, progressive), 854x854, 464 kb/s, SAR 1:1 DAR 1:1, 30 fps, 30 tbr, 16k tbn (default)
seems like the codecs=‘something’ is REALLY nitpicky. managed to get a test video to play with:
<video>
<source src="test.mp4" type='video/mp4; codecs="avc1.4d401f"'>
</video>
I made the video by encoding some random clip with ffmpeg -i random_video.mp4 -c:v libaom-av1 -crf 30 test.mp4
(seems to work just as well with libsvtav1
)
As for how are you supposed to know the “4d401f”? beats me, found it here: https://caraya.github.io/av1-video-demo/
edit: https://developer.mozilla.org/en-US/docs/Web/Media/Formats/codecs_parameter#av1 does say that the codec string should look a bit different, but… I dunno, not a video-understanding-webmonke.
edit2: and now I realize that since it works with the codecs=avc1 - it’s the older av1 variant? Not really what you were asking. Whoopsiedaisy.
oh, I’ve been wondering about this, as I’ve had occasional youtube-video just enter the infinite buffering. Oddly it has only happened on linux o_O
just… bookmark folder? menu -> bookmarks -> “…” on the bookmark folder you want -> open all in private tabs?
if firefox is the default browser, I guess just start "" "https://your.url.here.foo"
, as per https://superuser.com/a/36730
otherwise, I guess you could just cd to firefox’s directory and do the same firefox.exe urlhere
as for specific window… yea that might be tad hard. https://wiki.mozilla.org/Firefox/CommandLineOptions doesn’t seem to have any way to indicate any specific instance/window from cli.
could be firefox handles those internally, kinda seems like urls open up in the window which was last active. So… I guess you could start the script by starting firefox with --new-instance
or --new-window
, and patiently wait until urls are open? I guess.
Assuming you know what you’re doing, maybe some script? At least on linux something like this seems to work:
#!/bin/bash
urls_file="${HOME}/path/to/url_list.txt";
sleep_time=1;
while read -r line;
do
firefox "${line}";
sleep ${sleep_time};
done < "${urls_file}";
edit: heh, tried to delete this as irrelevant, as I entirely missed the clipboard & requirement for a button IN firefox… but it didn’t really delete it seems. Oh well, leaving this in for laughs.
Anyhoo, if you need to speed up/throttle the link opening somehow, maybe add some incremental counter there and skip sleeping if counter < 10 or whatever.
menu -> print -> “save as pdf”? seems to be there just like it’s on desktop version
ctrl+(shift)+tab to next/prev tab? I don’t think there’s any direct shortcut to go to eg. tab 34.
…did you? Did you really?