New Research Estimates Value of Removing DRM Locks
-
Note: We’ve been in touch with a group of economists at the University of Glasgow who are investigating the market value on interoperability. Just in time for “Day Against DRM,” here are some of their initial conclusions.
My co-authors and I at the University of Glasgow are investigating how restrictions on interoperability imposed by Digital Rights Management (DRM) systems might impact the market for goods. We are doing this as part of a larger project to better understand the economics of DRM and to figure out what changes would likely occur if the laws were reformed. Our recent working paper is titled ‘How much do consumers value interoperability: Evidence from the price of DVD players’. [Open Access here]
We use price data scraped from Amazon.com on all consumer DVD players listed since 2010 to analyse whether there is an increase in willingness-to-pay for players that have features related to interoperability. These features of interest include things like the lack of region controls, the ability to play legacy disc formats, and the ability to play new open file formats like Xvid. At first, DVD players might seem like an antiquated technology for such a study, but the product has many advantages: locked and unlocked players coexist side by side in the market and there are hundreds of competing devices on sale with similar capabilities, facilitating statistical analysis.
Why might consumers benefit from interoperability?
Our study is designed to begin to investigate some propositions about why consumers might value interoperability when choosing to purchase devices or content. There are numerous reasons why that might be the case. For example, people might value backwards interoperability between a device and other devices or content they already own. In a famous economics paper, Farrell & Saloner (1986) suggest that there are barriers to adoption of a new standard caused by network effects related to the number of people using the old standard. For example, maybe one’s friends and family use one system and moving to a new system would leave an early adopter out on a limb. Or, maybe a consumer has invested a lot of money in content that is compatible with the old standard but incompatible with the new one. DRM might amplify those effects and result in ‘excess inertia’: that is, an overall loss to society caused by slower than optimal uptake of a new standard.
On the other hand, consumers might not (only) make a purchase decision informed by goods that they or their friends already own. They may be more concerned with what we call forwards interoperability: the capability of a device to interface with future, unknown devices or content. Imagine for example a company pledging not to restrict their format to future innovators, enabling unintended new benefits to consumers as third-party companies supply complementary goods and content. This might interest consumers worried about ‘future-proofing’ their investment, ensuring that new content is likely to be created for their device.
Main findings
Overall we find that interoperability has a significant positive effect on the price that consumers are willing to pay for DVD players. The average price that they are willing to pay increases by $19 USD for players with any interoperability features present. The average price increases by $30 USD for players with the specific ability to play content in open file formats like Xvid. This feature has the strongest impact on price in our study. The lack of region locks also has a moderately significant effect on price. Backwards compatibility with legacy formats live VCD had no significant impact on price in any of our models, likely because VCD is a very legacy format, indeed, having been popular in the late 1990s. Backwards compatibility might have a bigger impact for products that are released at closer time intervals.
Next steps for research
We plan to expand this study, both in terms of global coverage as well as product categories. One of the things we’d like to check is whether the region of the consumer is an important factor in how they value interoperability.
Ultimately, we intend to examine these dynamics across as many product categories as possible, where DRM-locked options coexist in the market alongside unlocked or hackable options. Some possible candidate products include network routers, handheld GPS devices, and even ‘smart’ lightbulbs. As more and more devices come with embedded firmware, the ability of manufacturers to lock out consumers with DRM – or make them interoperable – will have a greater impact on society beyond media devices.

screen and tmux
A comparison of the features (or more-so just a table of notes for accessing some of those features) for GNU screen and BSD-licensed tmux.
The formatting here is simple enough to understand (I would hope). ^ means ctrl+, so ^x is ctrl+x. M- means meta (generally left-alt or escape)+, so M-x is left-alt+x It should be noted that this is no where near a full feature-set of either group. This - being a cheat-sheet - is just to point out the most very basic features to get you on the road. Trust the developers and manpage writers more than me. This document is originally from 2009 when tmux was still new - since then both of these programs have had many updates and features added (not all of which have been dutifully noted here). |
||
Action | tmux | screen |
start a new session | tmux OR tmux new OR tmux new-session |
screen |
re-attach a detached session | tmux attach OR tmux attach-session |
screen-r |
re-attach an attached session (detaching it from elsewhere) | tmux attach -d OR tmux attach-session -d |
screen -dr |
re-attach an attached session (keeping it attached elsewhere) | tmux attach OR tmux attach-session |
screen -x |
detach from currently attached session | ^b d OR ^b :detach |
^a ^d OR ^a :detach |
rename-window to newname | ^b , <newname> OR ^b :rename-window <newn> |
^a A <newname> |
list windows | ^b w | ^a w |
list windows in chooseable menu | ^a " | |
go to window # | ^b # | ^a # |
go to last-active window | ^b l | ^a ^a |
go to next window | ^b n | ^a n |
go to previous window | ^b p | ^a p |
see keybindings | ^b ? | ^a ? |
list sessions | ^b s OR tmux ls OR tmux list-sessions |
screen -ls |
toggle visual bell | ^a ^g | |
create another window | ^b c | ^a c |
exit current shell/window | ^d | ^d |
split window/pane horizontally | ^b " | ^a S |
split window/pane vertically | ^b % | ^a | |
switch to other pane | ^b o | ^a <tab> |
kill the current pane | ^b x OR (logout/^D) | |
collapse the current pane/split (but leave processes running) | ^a X | |
cycle location of panes | ^b ^o | |
swap current pane with previous | ^b { | |
swap current pane with next | ^b } | |
show time | ^b t | |
show numeric values of panes | ^b q | |
toggle zoom-state of current pane (maximize/return current pane) | ^b z | |
break the current pane out of its window (to form new window) | ^b ! | |
re-arrange current panels within same window (different layouts) | ^b [space] | |
Kill the current window (and all panes within) | ^b killw [target-window] |