'+pages+'');
$('.stream > div:odd').addClass('bgr_color');
updateHeight('#history');
});
window.activateTabArea = ensure(function(tab, areas){
var parsed = false;
var parts = (areas || '').split('/');
window.fsonload = $.inArray('fs', parts) >= 0;
if(fsonload){
parts.splice(parts.indexOf('fs'), 1);
}
var replayMode = false;
if($.inArray('replay', parts)>=0){
replayMode = 'replay';
}
var noSoundMode = false;
if($.inArray('nosound', parts)>=0){
noSoundMode = 'nosound';
}
if($.inArray('ns', parts)>=0){
noSoundMode = 'ns';
}
var previewMode = null;
if($.inArray('p', parts)>=0){
previewMode = 'p';
}
if($.inArray('preview', parts)>=0){
previewMode = 'preview';
}
if($.inArray('repeat', parts)>=0){
replayMode = 'repeat';
}
if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){
replayMode = 'r';
}
if(replayMode){
parts.splice(parts.indexOf(replayMode), 1);
}
if(noSoundMode){
parts.splice(parts.indexOf(noSoundMode), 1);
}
if(previewMode){
parts.splice(parts.indexOf(previewMode), 1);
}
if(previewMode){
if(!parts.length){
parts = ['1-14', '999:59'];
}
}
var area = parts[0];
if(tab == 'history' && false){
var page = parseInt(area || '1') || 1;
$.ajax({
url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1),
dataType: 'jsonp',
success: function(response){
$ensure(function(){
renderHistory(response, page);
});
}
});
return true;
}
if(tab == 'global_history' && false){
var page = parseInt(area || '1') || 1;
globalHistory.fetchStream(page, '', function(){
updateHeight('#global_history');
});
return true;
}
if(tab == 'my_playlists' && false){
var page = parseInt(area || '1') || 1;
myPlaylists.fetchStream(page, '', function(){
updateHeight('#my_playlists');
});
return true;
}
if(tab == 'my_videos' && false){
var page = parseInt(area || '1') || 1;
myVideos.fetchStream(page, '', function(){
updateHeight('#my_videos');
});
return true;
}
if(tab == 'related_sites' && areas && matchPosition(areas)){
var seconds = parsePosition(areas);
scrollRelated(seconds);
return false;
}
if(matchPosition(area) || matchAction(area)){
parts.unshift('1');
area = parts[0];
}
if(tab == 'expand' && area && area.match(/\d+/)) {
var num = parseInt(area);
if(num < 100){
//FIX ME. Load news page with ajax here
}
else if(num > 1900){
//FIX ME. Load timeline page with ajax here
}
}
else if(tab.match(/^playlist\d+$/)){
var playerId = parseInt(tab.substring(8));
var vp = videoplayers[playerId];
window.descriptionsholder = $('.descriptionsplace');
if(!vp) return; // why? no player?
if(replayMode){
$('.replaycurrent'+playerId).attr('checked', true);
vp.setReplayCurrent(true);
}
var playQueue = [];
window.playQueue = playQueue;
var playQueuePosition = 0;
var playShouldStart = null;
var playShouldStop = null;
var parseList = function(x){
var items = x.split(/;|,/g);
var results = [];
for (i in items){
try{
var action = parseAction(vp, items[i]);
if(!action.video){
if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]);
}else{
results.push(action);
}
}catch(e){
if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]);
}
}
return results;
};
var scrollToPlaylistPosition = function(vp){
var ppos = vp.getPlaylistPosition();
var el = vp.playlistContainer.find('>li').eq(ppos);
var par = el.closest('.playlist_scrollarea');
par.scrollTop(el.offset().top-par.height()/2);
}
var updateVolumeState = function(){
if(noSoundMode){
if(noSoundMode == 'turn-on'){
clog("Sound is on, vsid="+vp.vsid);
vp.setVolumeUnMute();
noSoundMode = false;
}else{
clog("Sound is off, vsid="+vp.vsid);
vp.setVolumeMute();
noSoundMode = 'turn-on';
}
}
}
var playQueueUpdate = function(){
var playPosition = playQueue[playQueuePosition];
vp.playFromPlaylist(playPosition.video);
scrollToPlaylistPosition(vp);
playShouldStart = playPosition.start;
playShouldStop = playPosition.stop;
};
var playQueueAdvancePosition = function(){
clog("Advancing play position...");
playQueuePosition ++;
while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){
playQueuePosition ++;
}
if(playQueuePosition < playQueue.length){
playQueueUpdate();
}else if(vp.getReplayCurrent()){
playQueuePosition = 0;
playQueueUpdate();
vp.seekTo(playShouldStart);
vp.playVideo();
}else{
vp.pauseVideo();
playShouldStop = null;
playShouldStart = null;
}
};
function loadMoreVideos(playerId, vp, start, finish, callback){
var playlistInfo = playlists[playerId-1];
if(playlistInfo.loading >= finish) return;
playlistInfo.loading = finish;
$.ajax({
url: '/api/upge/cheetah-photo-search/query_videos2',
dataType: 'json',
data: {
query: playlistInfo.query,
orderby: playlistInfo.orderby,
start: start,
count: finish-start
},
success: function(response){
var pl = vp.getPlaylist().slice(0);
pl.push.apply(pl, response);
vp.setPlaylist(pl);
callback();
}
});
}
if(parts.length == 1 && matchDash(parts[0])){
var pl = vp.getActualPlaylist();
var vids = parseDash(parts[0]);
parts = [];
for(var i = 0; i < vids.length; i++){
playQueue.push({
'video': pl[vids[i]-1],
'start': 0,
'stop': null
})
}
if(vids.length){
if(vids[vids.length-1]-1>=pl.length){
loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){
if(fsonload){
activateTabArea(tab, parts[0]+'/fs');
}else{
activateTabArea(tab, parts[0]);
}
var pls = vp.getPlaylist();
vp.playFromPlaylist(pls[pls.length-1]);
vp.playVideo();
scrollToPlaylistPosition(vp);
});
return true;
}
}
if(playQueue){
playQueueUpdate();
vp.playVideo();
parsed = true;
playShouldStart = 0;
}
}
if(previewMode){
var vids = [];
var dur = 0;
var pl = vp.getActualPlaylist();
area = parts[0];
if(parts.length == 1 && matchPosition(parts[0])){
vids = parseDash('1-'+pl.length);
dur = parsePosition(parts[0]);
parts = [];
}else
if(parts.length == 1 && matchDash(parts[0])){
vids = parseDash(parts[0]);
dur = parsePosition("999:59");
parts = [];
}
if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){
vids = parseDash(parts[0]);
dur = parsePosition(parts[1]);
parts = [];
}
for(var i = 0; i < vids.length; i++){
playQueue.push({
'video': pl[vids[i]-1],
'start': 0,
'stop': dur
})
}
if(playQueue){
playQueueUpdate();
vp.playVideo();
parsed = true;
}
}
if(parts.length>1){
for(var i = 0; i < parts.length; i++){
var sel = findMatchingVideo(vp, parts[i]);
if(sel){
playQueue.push({
'video': sel,
'start': 0,
'stop': null
})
}
}
if(playQueue){
playQueueUpdate();
vp.playVideo();
parsed = true;
}
}else if(area){
var sel = findMatchingVideo(vp, area);
if(sel){
vp.playFromPlaylist(sel);
playShouldStart = 0;
parsed = true;
}
}
if(fsonload || replayMode){
playShouldStart = 0;
}
if(document.location.search.match('at=|queue=')){
var opts = document.location.search.replace(/^\?/,'').split(/&/g);
for(var o in opts){
if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){
playShouldStart = parsePosition(opts[o].substr(3))
}
if(opts[o].match(/^queue=/)){
playQueue = parseList(opts[o].substr(6));
if(playQueue){
playQueuePosition = 0;
playQueueUpdate();
}
}
}
}
if(matchPosition(parts[1])){
playShouldStart = parsePosition(parts[1]);
parsed = true;
}
if(matchAction(parts[1])){
var action = parseAction(vp, area+'/'+parts[1]);
playShouldStart = action.start;
playShouldStop = action.stop;
parsed = true;
}
if(playShouldStart !== null && !playQueue.length){
playQueue.push({
video: vp.getCurrentVideo(),
start: playShouldStart,
stop: playShouldStop
});
}
if(playShouldStart != null){
setInterval(function(){
if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){
playShouldStop = null;
if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){
playQueueAdvancePosition();
}else{
playShouldStart = null;
}
}
}, 500);
vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){
if(state == 'ended'){ // advance to the next video
playQueueAdvancePosition();
}
});
vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){
if(state){
updateVolumeState();
if(playShouldStart !== null){
vp.seekTo(playShouldStart);
playShouldStart = null;
}else{
playShouldStop = null; // someone started other video, stop playing from playQueue
}
}
if(fsonload) {
triggerFullscreen(playerId); fsonload = false;
}
});
}
}
else if(tab.match(/^wiki\d+$/)){
if(firstTimeActivate){
load_wiki($('#'+tab), function(){
if(area){
var areaNode = $('#'+area);
if(areaNode.length>0){
$('html, body').scrollTop(areaNode.offset().top + 10);
return true;
}
}
});
}
}
return parsed;
})
window.activateTab = ensure(function(tab, area){
window.activeArea = null;
if(tab == 'import_videos'){
if(area){
import_videos(area);
}else{
start_import();
}
return true;
}
if(tab == 'chat'){
update_chat_position($('.chat').eq(0));
window.activeArea = 'chat';
jQuery('.tabtrigger').offscreentabs('activateTab', 'chat');
return true;
}
if(tab in rev_names){
tab = rev_names[tab];
}
if(tab.match(':')){ return false; }
var sup = $('ul li a[id=#'+tab+']');
if(sup && sup.length>0){
window.activeArea = area;
sup.first().click();
if(!window.activateTabArea(tab, area)){
window.activeArea = null;
}
window.activeArea = null;
return true;
}else{
var have_tabs = $('#playlist_menu li').length;
if(tab.match(/^playlists?\d+$/)){
var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs;
if(to_add>0 && have_tabs){
add_more_videos(to_add);
return true;
}
}
}
return false;
});
window.currentPath = ensure(function(){
return window.lastHistory.replace(basepath, '').split('?')[0];
});
window.main_tab = window.main_tab || 'videos';
window.addHistory = ensure(function(path){
if(window.console && console.log) console.log("Adding to history: "+path);
if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){
if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') {
path = basepath;
} else if( path.match('^'+main_tab+'/') ){
path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/');
} else {
path = basepath + '/' + path.replace('--','/');
}
if(document.location.search){
path += document.location.search;
}
if(window.lastHistory) {
history.pushState(null, null, path);
}
else if(window.lastHistory != path){
history.replaceState(null, null, path);
window.lastHistory = path;
}
}
else{
path = path.replace('--','/');
if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') {
path = '';
}
if(window.lastHistory != '/'+path){
window.location.hash = path? '/'+path : '';
window.lastHistory = '/'+path;
}
}
});
$('.tabtrigger li a').live('click', ensure(function() {
var tab = $(this).attr('id');
if(tab.substring(0,1) == '#'){
var name = tab.substring(1);
if(name in menu_names){
name = menu_names[name][0];
}
realTab = rev_names[name];
$('#'+realTab).show();
if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:''));
var path = name;
if(window.activeArea){
path = path + '/' + window.activeArea;
}
if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){
$('.multiple-playlists').show();
$('.related_playlist').show();
$('.longest_videos_playlist').show();
}else {
$('.multiple-playlists').hide();
$('.related_playlist').hide();
$('.longest_videos_playlist').hide();
}
// start the related script only when the tab is on screen showing
if (tab.match(/related_sites/)) {
if (mc) {
mc.startCredits();
}
}
window.activeTab = realTab;
addHistory(path);
setTimeout(ensure(function(){
if(tab.match(/language--/)){
$('.tabtrigger').offscreentabs('activateTab', 'language');
}
if(tab.match(/weather/)) {
$('.tabtrigger').offscreentabs('activateTab', 'weather');
loadContinent();
}
updateMenus(tab);
updateHeight();
}), 10);
}
return false;
}));
});
-->
Association Spotlight with: Jeff Joseph, President of The Software Information Industry Association
published: 09 Oct 2020
The Software & Information Industry Association and Student Privacy
SIIA's Director of Education Policy Sara Kloek discusses the role of SIIA in the student privacy and educational technology conversation.
published: 02 Oct 2019
Software and Information Industry Association | Wikipedia audio article
This is an audio version of the Wikipedia Article:
https://en.wikipedia.org/wiki/Software_and_Information_Industry_Association
00:01:38 CODiE Awards
Listening is a more natural way of learning, when compared to reading. Written language only began at around 3200 BC, but spoken language has existed long ago.
Learning by listening is a great way to:
- increases imagination and understanding
- improves your listening skills
- improves your own spoken accent
- learn while on the move
- reduce eye strain
Now learn the vast amount of general knowledge available on Wikipedia through audio (audio article). You could even learn subconsciously by playing the audio while you are sleeping! If you are planning to listen a lot, you could try using a bone conduction headphone, or a...
published: 17 Jan 2019
Understanding SIIA software audits by Attorney Steve
When you get a legal demand letter from the SIIA to audit your software and prove your compliance with licensing terms you have to understand your rights.
http://www.SoftwareAuditLawyers.com
YES, YOU CAN SHARE THIS VIDEO ON YOUR SOCIAL MEDIA WEBSITES!
Attorney Steve (intellectual property lawyer) discusses what the SIIA is and what happens when you get a letter alleging copyright infringement or seeking monetary damages for that.
A few things to note:
1. The SIIA is NOT law enforcement, they are a industry trade group
2. They do hire IP legal counsel to enforce their copyrights and protect their copyrighted works
3. You should contact a copyright lawyer BEFORE admitting and disclosing things to the SIIA or its law firm representatives. What you say can come back to haunt you.
...
published: 23 Dec 2015
How to respond to SIIA audit letter
http://SoftwareAuditLawyers.com
Copyright lawyer Steve Vondran discusses what you need to know about the SIIA audit, what you need to know, and how to respond. If you need help, we offer a FREE initial consultation. This video discusses
1. What is the SIIA - here is their website
http://www.siia.net/
2. How to respond to the audit demand letter
Software audit letter is explained in this video https://youtu.be/dx3JxFAnqGI
3. Penalties for willful copyright infringement or software piracy
Video discussing copyright infringement damages
https://youtu.be/LJxTTcDuhzs
4. SIIA rewards for informants
Here is their "snitch" page:
http://www.siia.net/piracy/report/report.asp
5. General tips and considerations
Here is a video that explains what the SIIA is in great detail
https:...
published: 03 Jun 2016
The Software Information Industry Association & Student Privacy
Sara Kloek, the Director of Education at the Software Information Industry Association, discusses how her organization deals with student privacy.
published: 10 Jul 2019
What are the rewards for reporting your employer to SIIA as software pirate?
http://www.softwareaudits.net
CAN YOU HAVE A "SIDE HUSTLE" REPORTING COPYRIGHT SOFTWARE INFRINGEMENT?
Copyright attorney Steve Vondran ("Attorney Steve") discusses what you can expect when you report your boss to the SIIA software industry trade group. Many times these cases deal with Adobe Photoshop or other member products, but here is a general rundown of the policy that you can expect to be dealing with. Under the terms of this copyright enforcement program, rewards can vary from $500 up to one million dollars (yes, I suppose you could call this the "software piracy lottery." However, I have never heard of anyone making that kind of money, but as the saying goes - you never know.
At any rate, we hope you enjoy this video. If you want to collect on the reward you should call us ...
published: 05 Jul 2016
SIIA CODiE Awards 2021
The Software and Information Industry Association's 2021 CODiE Award for Best Virtual Learning Solution.
published: 01 Jul 2021
1:24
The Software & Information Industry Association and Student Privacy
SIIA's Director of Education Policy Sara Kloek discusses the role of SIIA in the student privacy and educational technology conversation.
SIIA's Director of Education Policy Sara Kloek discusses the role of SIIA in the student privacy and educational technology conversation.
https://wn.com/The_Software_Information_Industry_Association_And_Student_Privacy
SIIA's Director of Education Policy Sara Kloek discusses the role of SIIA in the student privacy and educational technology conversation.
published: 02 Oct 2019
views: 13
2:45
Software and Information Industry Association | Wikipedia audio article
This is an audio version of the Wikipedia Article:
https://en.wikipedia.org/wiki/Software_and_Information_Industry_Association
00:01:38 CODiE Awards
...
This is an audio version of the Wikipedia Article:
https://en.wikipedia.org/wiki/Software_and_Information_Industry_Association
00:01:38 CODiE Awards
Listening is a more natural way of learning, when compared to reading. Written language only began at around 3200 BC, but spoken language has existed long ago.
Learning by listening is a great way to:
- increases imagination and understanding
- improves your listening skills
- improves your own spoken accent
- learn while on the move
- reduce eye strain
Now learn the vast amount of general knowledge available on Wikipedia through audio (audio article). You could even learn subconsciously by playing the audio while you are sleeping! If you are planning to listen a lot, you could try using a bone conduction headphone, or a standard speaker instead of an earphone.
Listen on Google Assistant through Extra Audio:
https://assistant.google.com/services/invoke/uid/0000001a130b3f91
Other Wikipedia audio articles at:
https://www.youtube.com/results?search_query=wikipedia+tts
Upload your own Wikipedia articles through:
https://github.com/nodef/wikipedia-tts
Speaking Rate: 0.7548769541430224
Voice name: en-AU-Wavenet-D
"I cannot teach anybody anything, I can only make them think."
- Socrates
SUMMARY
=======
The Software and Information Industry Association (SIIA) is a trade association dedicated to the entertainment, consumer and business software industries. Established in 1984 as the Software Publishers Association (SPA), the SIIA took its new name when it merged with the related Information Industry Association on January 1, 1999. The joint enterprise was headed by Software Publishers Association founder Ken Wasch and operated out of the SPA's existing offices.The SPA was active in lobbying, industry research and anti-piracy efforts. Its head of research, Ann Stephens, went on to found PC Data in 1991. By 1995, the SPA had over 1,100 software companies in its membership and according to Wired was among "the most powerful computer-related trade groups" before its merger with the Information Industry Association. While Microsoft became a member of the SPA in 1986, it split with the SIIA in 2000 after the group sided against Microsoft in United States v. Microsoft Corp. The Wall Street Journal described Microsoft as the SIIA's "largest member" before the departure.Until 1999, the Software Publishers Association hosted the SPA Annual Conference for software companies. It was renamed the InfoSoft Essentials conference in 1999.
https://wn.com/Software_And_Information_Industry_Association_|_Wikipedia_Audio_Article
This is an audio version of the Wikipedia Article:
https://en.wikipedia.org/wiki/Software_and_Information_Industry_Association
00:01:38 CODiE Awards
Listening is a more natural way of learning, when compared to reading. Written language only began at around 3200 BC, but spoken language has existed long ago.
Learning by listening is a great way to:
- increases imagination and understanding
- improves your listening skills
- improves your own spoken accent
- learn while on the move
- reduce eye strain
Now learn the vast amount of general knowledge available on Wikipedia through audio (audio article). You could even learn subconsciously by playing the audio while you are sleeping! If you are planning to listen a lot, you could try using a bone conduction headphone, or a standard speaker instead of an earphone.
Listen on Google Assistant through Extra Audio:
https://assistant.google.com/services/invoke/uid/0000001a130b3f91
Other Wikipedia audio articles at:
https://www.youtube.com/results?search_query=wikipedia+tts
Upload your own Wikipedia articles through:
https://github.com/nodef/wikipedia-tts
Speaking Rate: 0.7548769541430224
Voice name: en-AU-Wavenet-D
"I cannot teach anybody anything, I can only make them think."
- Socrates
SUMMARY
=======
The Software and Information Industry Association (SIIA) is a trade association dedicated to the entertainment, consumer and business software industries. Established in 1984 as the Software Publishers Association (SPA), the SIIA took its new name when it merged with the related Information Industry Association on January 1, 1999. The joint enterprise was headed by Software Publishers Association founder Ken Wasch and operated out of the SPA's existing offices.The SPA was active in lobbying, industry research and anti-piracy efforts. Its head of research, Ann Stephens, went on to found PC Data in 1991. By 1995, the SPA had over 1,100 software companies in its membership and according to Wired was among "the most powerful computer-related trade groups" before its merger with the Information Industry Association. While Microsoft became a member of the SPA in 1986, it split with the SIIA in 2000 after the group sided against Microsoft in United States v. Microsoft Corp. The Wall Street Journal described Microsoft as the SIIA's "largest member" before the departure.Until 1999, the Software Publishers Association hosted the SPA Annual Conference for software companies. It was renamed the InfoSoft Essentials conference in 1999.
published: 17 Jan 2019
views: 11
5:37
Understanding SIIA software audits by Attorney Steve
When you get a legal demand letter from the SIIA to audit your software and prove your compliance with licensing terms you have to understand your rights.
ht...
When you get a legal demand letter from the SIIA to audit your software and prove your compliance with licensing terms you have to understand your rights.
http://www.SoftwareAuditLawyers.com
YES, YOU CAN SHARE THIS VIDEO ON YOUR SOCIAL MEDIA WEBSITES!
Attorney Steve (intellectual property lawyer) discusses what the SIIA is and what happens when you get a letter alleging copyright infringement or seeking monetary damages for that.
A few things to note:
1. The SIIA is NOT law enforcement, they are a industry trade group
2. They do hire IP legal counsel to enforce their copyrights and protect their copyrighted works
3. You should contact a copyright lawyer BEFORE admitting and disclosing things to the SIIA or its law firm representatives. What you say can come back to haunt you.
4. Software licensing shortage or copyright piracy claims can have a serious impact on your company and your brand, businesses are encouraged to treat this as a serious legal matter.
We hope you have enjoyed this video and if you are facing an audit or dealing with a demand letter, click on the link above or contact us at (877) 276-5084.
Make sure to SUBSCRIBE to our legal channel by clicking on the RED "V" for victory! We offer low flat rate legal fees for many of our cases.
Resources
1. Software industry association website - http://www.siia.net/
2. Reporting piracy to SIIA - https://www.siia.net/piracy/report/content.asp
3. Software piracy facts, information - http://www.encyclopedia.com/topic/Software_Piracy.aspx
4. Typical damages and penalties in software piracy cases - http://vondranlegal.com/how-to-calculate-damages-in-software-infringement-cases/ --------------------------------------------------------------------------------------------------------------------------------
⭕ SUBSCRIBE to EDUCATE YOURSELF on ALL THINGS LAW ⭕
https://www.youtube.com/user/Attorney...
--------------------------------------------------------------------------------------------------------------------------------
🔥 Check out my video on WINNING SMALL CLAIMS LAWSUITS here 🔥 https://www.youtube.com/watch?v=qTUhB...
👨🎓 Learn how to register a trademark WITHOUT A LAWYER here 👨🎓
https://www.youtube.com/watch?v=8gSE5...
✔️ Get some tips on MEDIATION SUCCESS here ✔️
https://www.youtube.com/watch?v=E32Ks...
✈️ Watch my video on ULTIMATE DEPOSITION TIPS here ✈️
https://www.youtube.com/watch?v=eyT0C...
--------------------------------------------------------------------------------------------------------------------------------
💡 Join us on Social Media 💡
LinkedIn: https://www.linkedin.com/in/stevevond...
Instagram: https://www.instagram.com/attorneysteve/
Facebook: https://www.facebook.com/attorneystev...
Twitter: https://twitter.com/SteveVondran
--------------------------------------------------------------------------------------------------------------------------------
🖥️ Contact us for a consultation 🖥️
https://www.vondranlegal.com/contact-us
☎️ Or call us at ☎️
(877) 276-5084
(time permitting - we cannot respond to ALL calls)
☁️ For advertising, promotional, and endorsement opportunities, visit us at ☁️
https://www.vondranlegal.com/attorney....
(We can help promote your law or legal related or other products)
--------------------------------------------------------------------------------------------------------------------------------
👉🏻 More Important Info! 👈🏻
🎥 Attorney Steve's Setup 🎥
https://www.vondranlegal.com/my-setup
🕺🏻 Merchandise 🕺🏻
https://www.vondranlegal.com/merchandise
🌟 Avvo Client Reviews 🌟
https://www.avvo.com/attorneys/94104-...
🙌🏻 Support us on Patreon 🙌🏻
https://www.patreon.com/AttorneySteve...
--------------------------------------------------------------------------------------------------------------------------------
🏢 Main Office 🏢
San Francisco Office: https://www.vondranlegal.com/san-fran...
Other Locations:
Phoenix - Camelback Office: https://www.vondranlegal.com/phoenix-...
Phoenix - Uptown Office: https://www.vondranlegal.com/phoenix-...
San Diego Office: https://www.vondranlegal.com/san-dieg...
Orange County Office: https://www.vondranlegal.com/orange-c...
Santa Monica Office: https://www.vondranlegal.com/beverly-...
Copyright Policy Institute Office:
Washington D.C. https://www.copyrightpolicy.org/
NOTICE: This website is general legal information only and not legal advice. Please do not rely. Some information may not be accurate. We are licensed in CA and AZ. Check your local rules. Parts of our videos may constitute “fair use” under the copyright laws, if you have an issue, please call us at (877) 276-5084. We are not liable for your use or viewing of our videos. Thanks for watching!
© 2020 Attorney Steve Vondran. All rights reserved.
https://wn.com/Understanding_Siia_Software_Audits_By_Attorney_Steve
When you get a legal demand letter from the SIIA to audit your software and prove your compliance with licensing terms you have to understand your rights.
http://www.SoftwareAuditLawyers.com
YES, YOU CAN SHARE THIS VIDEO ON YOUR SOCIAL MEDIA WEBSITES!
Attorney Steve (intellectual property lawyer) discusses what the SIIA is and what happens when you get a letter alleging copyright infringement or seeking monetary damages for that.
A few things to note:
1. The SIIA is NOT law enforcement, they are a industry trade group
2. They do hire IP legal counsel to enforce their copyrights and protect their copyrighted works
3. You should contact a copyright lawyer BEFORE admitting and disclosing things to the SIIA or its law firm representatives. What you say can come back to haunt you.
4. Software licensing shortage or copyright piracy claims can have a serious impact on your company and your brand, businesses are encouraged to treat this as a serious legal matter.
We hope you have enjoyed this video and if you are facing an audit or dealing with a demand letter, click on the link above or contact us at (877) 276-5084.
Make sure to SUBSCRIBE to our legal channel by clicking on the RED "V" for victory! We offer low flat rate legal fees for many of our cases.
Resources
1. Software industry association website - http://www.siia.net/
2. Reporting piracy to SIIA - https://www.siia.net/piracy/report/content.asp
3. Software piracy facts, information - http://www.encyclopedia.com/topic/Software_Piracy.aspx
4. Typical damages and penalties in software piracy cases - http://vondranlegal.com/how-to-calculate-damages-in-software-infringement-cases/ --------------------------------------------------------------------------------------------------------------------------------
⭕ SUBSCRIBE to EDUCATE YOURSELF on ALL THINGS LAW ⭕
https://www.youtube.com/user/Attorney...
--------------------------------------------------------------------------------------------------------------------------------
🔥 Check out my video on WINNING SMALL CLAIMS LAWSUITS here 🔥 https://www.youtube.com/watch?v=qTUhB...
👨🎓 Learn how to register a trademark WITHOUT A LAWYER here 👨🎓
https://www.youtube.com/watch?v=8gSE5...
✔️ Get some tips on MEDIATION SUCCESS here ✔️
https://www.youtube.com/watch?v=E32Ks...
✈️ Watch my video on ULTIMATE DEPOSITION TIPS here ✈️
https://www.youtube.com/watch?v=eyT0C...
--------------------------------------------------------------------------------------------------------------------------------
💡 Join us on Social Media 💡
LinkedIn: https://www.linkedin.com/in/stevevond...
Instagram: https://www.instagram.com/attorneysteve/
Facebook: https://www.facebook.com/attorneystev...
Twitter: https://twitter.com/SteveVondran
--------------------------------------------------------------------------------------------------------------------------------
🖥️ Contact us for a consultation 🖥️
https://www.vondranlegal.com/contact-us
☎️ Or call us at ☎️
(877) 276-5084
(time permitting - we cannot respond to ALL calls)
☁️ For advertising, promotional, and endorsement opportunities, visit us at ☁️
https://www.vondranlegal.com/attorney....
(We can help promote your law or legal related or other products)
--------------------------------------------------------------------------------------------------------------------------------
👉🏻 More Important Info! 👈🏻
🎥 Attorney Steve's Setup 🎥
https://www.vondranlegal.com/my-setup
🕺🏻 Merchandise 🕺🏻
https://www.vondranlegal.com/merchandise
🌟 Avvo Client Reviews 🌟
https://www.avvo.com/attorneys/94104-...
🙌🏻 Support us on Patreon 🙌🏻
https://www.patreon.com/AttorneySteve...
--------------------------------------------------------------------------------------------------------------------------------
🏢 Main Office 🏢
San Francisco Office: https://www.vondranlegal.com/san-fran...
Other Locations:
Phoenix - Camelback Office: https://www.vondranlegal.com/phoenix-...
Phoenix - Uptown Office: https://www.vondranlegal.com/phoenix-...
San Diego Office: https://www.vondranlegal.com/san-dieg...
Orange County Office: https://www.vondranlegal.com/orange-c...
Santa Monica Office: https://www.vondranlegal.com/beverly-...
Copyright Policy Institute Office:
Washington D.C. https://www.copyrightpolicy.org/
NOTICE: This website is general legal information only and not legal advice. Please do not rely. Some information may not be accurate. We are licensed in CA and AZ. Check your local rules. Parts of our videos may constitute “fair use” under the copyright laws, if you have an issue, please call us at (877) 276-5084. We are not liable for your use or viewing of our videos. Thanks for watching!
© 2020 Attorney Steve Vondran. All rights reserved.
published: 23 Dec 2015
views: 952
17:05
How to respond to SIIA audit letter
http://SoftwareAuditLawyers.com
Copyright lawyer Steve Vondran discusses what you need to know about the SIIA audit, what you need to know, and how to respond....
http://SoftwareAuditLawyers.com
Copyright lawyer Steve Vondran discusses what you need to know about the SIIA audit, what you need to know, and how to respond. If you need help, we offer a FREE initial consultation. This video discusses
1. What is the SIIA - here is their website
http://www.siia.net/
2. How to respond to the audit demand letter
Software audit letter is explained in this video https://youtu.be/dx3JxFAnqGI
3. Penalties for willful copyright infringement or software piracy
Video discussing copyright infringement damages
https://youtu.be/LJxTTcDuhzs
4. SIIA rewards for informants
Here is their "snitch" page:
http://www.siia.net/piracy/report/report.asp
5. General tips and considerations
Here is a video that explains what the SIIA is in great detail
https://youtu.be/xe6Q-sKjHkE
Again, if you are not sure what your software audit rights are, contact us to speak with a copyright lawyer. We have helped companies across the United States and even international companies dealing with Federal Court cases in California. Call us at (877) 276-5084.
PUBLIC NOTICE: If you get a audit demand letter many people ask us "is this a scam?" As a matter of public awareness if the letter came from Donahue & Fitzgerald (ex. Bruce Eads), Venable, Klemchuk, Weir Johnson, these are legitimate IP law firms and you should contact a lawyer. Call us we can help check this out for you, and note we have come across illegitimate "compliance companies."
If you liked this video feel free to SHARE IT ON YOUR SOCIAL MEDIA NETWORKS!!! We appreciate your support!!! --------------------------------------------------------------------------------------------------------------------------------
⭕ SUBSCRIBE to EDUCATE YOURSELF on ALL THINGS LAW ⭕
https://www.youtube.com/user/Attorney...
--------------------------------------------------------------------------------------------------------------------------------
🔥 Check out my video on WINNING SMALL CLAIMS LAWSUITS here 🔥 https://www.youtube.com/watch?v=qTUhB...
👨🎓 Learn how to register a trademark WITHOUT A LAWYER here 👨🎓
https://www.youtube.com/watch?v=8gSE5...
✔️ Get some tips on MEDIATION SUCCESS here ✔️
https://www.youtube.com/watch?v=E32Ks...
✈️ Watch my video on ULTIMATE DEPOSITION TIPS here ✈️
https://www.youtube.com/watch?v=eyT0C...
--------------------------------------------------------------------------------------------------------------------------------
💡 Join us on Social Media 💡
LinkedIn: https://www.linkedin.com/in/stevevond...
Instagram: https://www.instagram.com/attorneysteve/
Facebook: https://www.facebook.com/attorneystev...
Twitter: https://twitter.com/SteveVondran
--------------------------------------------------------------------------------------------------------------------------------
🖥️ Contact us for a consultation 🖥️
https://www.vondranlegal.com/contact-us
☎️ Or call us at ☎️
(877) 276-5084
(time permitting - we cannot respond to ALL calls)
☁️ For advertising, promotional, and endorsement opportunities, visit us at ☁️
https://www.vondranlegal.com/attorney....
(We can help promote your law or legal related or other products)
--------------------------------------------------------------------------------------------------------------------------------
👉🏻 More Important Info! 👈🏻
🎥 Attorney Steve's Setup 🎥
https://www.vondranlegal.com/my-setup
🕺🏻 Merchandise 🕺🏻
https://www.vondranlegal.com/merchandise
🌟 Avvo Client Reviews 🌟
https://www.avvo.com/attorneys/94104-...
🙌🏻 Support us on Patreon 🙌🏻
https://www.patreon.com/AttorneySteve...
--------------------------------------------------------------------------------------------------------------------------------
🏢 Main Office 🏢
San Francisco Office: https://www.vondranlegal.com/san-fran...
Other Locations:
Phoenix - Camelback Office: https://www.vondranlegal.com/phoenix-...
Phoenix - Uptown Office: https://www.vondranlegal.com/phoenix-...
San Diego Office: https://www.vondranlegal.com/san-dieg...
Orange County Office: https://www.vondranlegal.com/orange-c...
Santa Monica Office: https://www.vondranlegal.com/beverly-...
Copyright Policy Institute Office:
Washington D.C. https://www.copyrightpolicy.org/
NOTICE: This website is general legal information only and not legal advice. Please do not rely. Some information may not be accurate. We are licensed in CA and AZ. Check your local rules. Parts of our videos may constitute “fair use” under the copyright laws, if you have an issue, please call us at (877) 276-5084. We are not liable for your use or viewing of our videos. Thanks for watching!
© 2020 Attorney Steve Vondran. All rights reserved.
https://wn.com/How_To_Respond_To_Siia_Audit_Letter
http://SoftwareAuditLawyers.com
Copyright lawyer Steve Vondran discusses what you need to know about the SIIA audit, what you need to know, and how to respond. If you need help, we offer a FREE initial consultation. This video discusses
1. What is the SIIA - here is their website
http://www.siia.net/
2. How to respond to the audit demand letter
Software audit letter is explained in this video https://youtu.be/dx3JxFAnqGI
3. Penalties for willful copyright infringement or software piracy
Video discussing copyright infringement damages
https://youtu.be/LJxTTcDuhzs
4. SIIA rewards for informants
Here is their "snitch" page:
http://www.siia.net/piracy/report/report.asp
5. General tips and considerations
Here is a video that explains what the SIIA is in great detail
https://youtu.be/xe6Q-sKjHkE
Again, if you are not sure what your software audit rights are, contact us to speak with a copyright lawyer. We have helped companies across the United States and even international companies dealing with Federal Court cases in California. Call us at (877) 276-5084.
PUBLIC NOTICE: If you get a audit demand letter many people ask us "is this a scam?" As a matter of public awareness if the letter came from Donahue & Fitzgerald (ex. Bruce Eads), Venable, Klemchuk, Weir Johnson, these are legitimate IP law firms and you should contact a lawyer. Call us we can help check this out for you, and note we have come across illegitimate "compliance companies."
If you liked this video feel free to SHARE IT ON YOUR SOCIAL MEDIA NETWORKS!!! We appreciate your support!!! --------------------------------------------------------------------------------------------------------------------------------
⭕ SUBSCRIBE to EDUCATE YOURSELF on ALL THINGS LAW ⭕
https://www.youtube.com/user/Attorney...
--------------------------------------------------------------------------------------------------------------------------------
🔥 Check out my video on WINNING SMALL CLAIMS LAWSUITS here 🔥 https://www.youtube.com/watch?v=qTUhB...
👨🎓 Learn how to register a trademark WITHOUT A LAWYER here 👨🎓
https://www.youtube.com/watch?v=8gSE5...
✔️ Get some tips on MEDIATION SUCCESS here ✔️
https://www.youtube.com/watch?v=E32Ks...
✈️ Watch my video on ULTIMATE DEPOSITION TIPS here ✈️
https://www.youtube.com/watch?v=eyT0C...
--------------------------------------------------------------------------------------------------------------------------------
💡 Join us on Social Media 💡
LinkedIn: https://www.linkedin.com/in/stevevond...
Instagram: https://www.instagram.com/attorneysteve/
Facebook: https://www.facebook.com/attorneystev...
Twitter: https://twitter.com/SteveVondran
--------------------------------------------------------------------------------------------------------------------------------
🖥️ Contact us for a consultation 🖥️
https://www.vondranlegal.com/contact-us
☎️ Or call us at ☎️
(877) 276-5084
(time permitting - we cannot respond to ALL calls)
☁️ For advertising, promotional, and endorsement opportunities, visit us at ☁️
https://www.vondranlegal.com/attorney....
(We can help promote your law or legal related or other products)
--------------------------------------------------------------------------------------------------------------------------------
👉🏻 More Important Info! 👈🏻
🎥 Attorney Steve's Setup 🎥
https://www.vondranlegal.com/my-setup
🕺🏻 Merchandise 🕺🏻
https://www.vondranlegal.com/merchandise
🌟 Avvo Client Reviews 🌟
https://www.avvo.com/attorneys/94104-...
🙌🏻 Support us on Patreon 🙌🏻
https://www.patreon.com/AttorneySteve...
--------------------------------------------------------------------------------------------------------------------------------
🏢 Main Office 🏢
San Francisco Office: https://www.vondranlegal.com/san-fran...
Other Locations:
Phoenix - Camelback Office: https://www.vondranlegal.com/phoenix-...
Phoenix - Uptown Office: https://www.vondranlegal.com/phoenix-...
San Diego Office: https://www.vondranlegal.com/san-dieg...
Orange County Office: https://www.vondranlegal.com/orange-c...
Santa Monica Office: https://www.vondranlegal.com/beverly-...
Copyright Policy Institute Office:
Washington D.C. https://www.copyrightpolicy.org/
NOTICE: This website is general legal information only and not legal advice. Please do not rely. Some information may not be accurate. We are licensed in CA and AZ. Check your local rules. Parts of our videos may constitute “fair use” under the copyright laws, if you have an issue, please call us at (877) 276-5084. We are not liable for your use or viewing of our videos. Thanks for watching!
© 2020 Attorney Steve Vondran. All rights reserved.
published: 03 Jun 2016
views: 319
1:24
The Software Information Industry Association & Student Privacy
Sara Kloek, the Director of Education at the Software Information Industry Association, discusses how her organization deals with student privacy.
Sara Kloek, the Director of Education at the Software Information Industry Association, discusses how her organization deals with student privacy.
https://wn.com/The_Software_Information_Industry_Association_Student_Privacy
Sara Kloek, the Director of Education at the Software Information Industry Association, discusses how her organization deals with student privacy.
published: 10 Jul 2019
views: 10
10:47
What are the rewards for reporting your employer to SIIA as software pirate?
http://www.softwareaudits.net
CAN YOU HAVE A "SIDE HUSTLE" REPORTING COPYRIGHT SOFTWARE INFRINGEMENT?
Copyright attorney Steve Vondran ("Attorney Steve") disc...
http://www.softwareaudits.net
CAN YOU HAVE A "SIDE HUSTLE" REPORTING COPYRIGHT SOFTWARE INFRINGEMENT?
Copyright attorney Steve Vondran ("Attorney Steve") discusses what you can expect when you report your boss to the SIIA software industry trade group. Many times these cases deal with Adobe Photoshop or other member products, but here is a general rundown of the policy that you can expect to be dealing with. Under the terms of this copyright enforcement program, rewards can vary from $500 up to one million dollars (yes, I suppose you could call this the "software piracy lottery." However, I have never heard of anyone making that kind of money, but as the saying goes - you never know.
At any rate, we hope you enjoy this video. If you want to collect on the reward you should call us first to make sure you are not cheated. If you are a business who just received an audit demand letter from the SIIA or BSA, Autodesk, or Microsoft, you should also call us. We have represented many companies large to small and we can help you.
Call us at (877) 276-5084.
IF YOU ENJOYED THIS VIDEO FEEL FREE TO SHARE IT ON YOUR SOCIAL MEDIA NETWORKS - DON'T FORGET TO GIVE A SHOUT OUT TO "ATTORNEY STEVE." --------------------------------------------------------------------------------------------------------------------------------
⭕ SUBSCRIBE to EDUCATE YOURSELF on ALL THINGS LAW ⭕
https://www.youtube.com/user/Attorney...
--------------------------------------------------------------------------------------------------------------------------------
🔥 Check out my video on WINNING SMALL CLAIMS LAWSUITS here 🔥 https://www.youtube.com/watch?v=qTUhB...
👨🎓 Learn how to register a trademark WITHOUT A LAWYER here 👨🎓
https://www.youtube.com/watch?v=8gSE5...
✔️ Get some tips on MEDIATION SUCCESS here ✔️
https://www.youtube.com/watch?v=E32Ks...
✈️ Watch my video on ULTIMATE DEPOSITION TIPS here ✈️
https://www.youtube.com/watch?v=eyT0C...
--------------------------------------------------------------------------------------------------------------------------------
💡 Join us on Social Media 💡
LinkedIn: https://www.linkedin.com/in/stevevond...
Instagram: https://www.instagram.com/attorneysteve/
Facebook: https://www.facebook.com/attorneystev...
Twitter: https://twitter.com/SteveVondran
--------------------------------------------------------------------------------------------------------------------------------
🖥️ Contact us for a consultation 🖥️
https://www.vondranlegal.com/contact-us
☎️ Or call us at ☎️
(877) 276-5084
(time permitting - we cannot respond to ALL calls)
☁️ For advertising, promotional, and endorsement opportunities, visit us at ☁️
https://www.vondranlegal.com/attorney....
(We can help promote your law or legal related or other products)
--------------------------------------------------------------------------------------------------------------------------------
👉🏻 More Important Info! 👈🏻
🎥 Attorney Steve's Setup 🎥
https://www.vondranlegal.com/my-setup
🕺🏻 Merchandise 🕺🏻
https://www.vondranlegal.com/merchandise
🌟 Avvo Client Reviews 🌟
https://www.avvo.com/attorneys/94104-...
🙌🏻 Support us on Patreon 🙌🏻
https://www.patreon.com/AttorneySteve...
--------------------------------------------------------------------------------------------------------------------------------
🏢 Main Office 🏢
San Francisco Office: https://www.vondranlegal.com/san-fran...
Other Locations:
Phoenix - Camelback Office: https://www.vondranlegal.com/phoenix-...
Phoenix - Uptown Office: https://www.vondranlegal.com/phoenix-...
San Diego Office: https://www.vondranlegal.com/san-dieg...
Orange County Office: https://www.vondranlegal.com/orange-c...
Santa Monica Office: https://www.vondranlegal.com/beverly-...
Copyright Policy Institute Office:
Washington D.C. https://www.copyrightpolicy.org/
NOTICE: This website is general legal information only and not legal advice. Please do not rely. Some information may not be accurate. We are licensed in CA and AZ. Check your local rules. Parts of our videos may constitute “fair use” under the copyright laws, if you have an issue, please call us at (877) 276-5084. We are not liable for your use or viewing of our videos. Thanks for watching!
© 2020 Attorney Steve Vondran. All rights reserved.
https://wn.com/What_Are_The_Rewards_For_Reporting_Your_Employer_To_Siia_As_Software_Pirate
http://www.softwareaudits.net
CAN YOU HAVE A "SIDE HUSTLE" REPORTING COPYRIGHT SOFTWARE INFRINGEMENT?
Copyright attorney Steve Vondran ("Attorney Steve") discusses what you can expect when you report your boss to the SIIA software industry trade group. Many times these cases deal with Adobe Photoshop or other member products, but here is a general rundown of the policy that you can expect to be dealing with. Under the terms of this copyright enforcement program, rewards can vary from $500 up to one million dollars (yes, I suppose you could call this the "software piracy lottery." However, I have never heard of anyone making that kind of money, but as the saying goes - you never know.
At any rate, we hope you enjoy this video. If you want to collect on the reward you should call us first to make sure you are not cheated. If you are a business who just received an audit demand letter from the SIIA or BSA, Autodesk, or Microsoft, you should also call us. We have represented many companies large to small and we can help you.
Call us at (877) 276-5084.
IF YOU ENJOYED THIS VIDEO FEEL FREE TO SHARE IT ON YOUR SOCIAL MEDIA NETWORKS - DON'T FORGET TO GIVE A SHOUT OUT TO "ATTORNEY STEVE." --------------------------------------------------------------------------------------------------------------------------------
⭕ SUBSCRIBE to EDUCATE YOURSELF on ALL THINGS LAW ⭕
https://www.youtube.com/user/Attorney...
--------------------------------------------------------------------------------------------------------------------------------
🔥 Check out my video on WINNING SMALL CLAIMS LAWSUITS here 🔥 https://www.youtube.com/watch?v=qTUhB...
👨🎓 Learn how to register a trademark WITHOUT A LAWYER here 👨🎓
https://www.youtube.com/watch?v=8gSE5...
✔️ Get some tips on MEDIATION SUCCESS here ✔️
https://www.youtube.com/watch?v=E32Ks...
✈️ Watch my video on ULTIMATE DEPOSITION TIPS here ✈️
https://www.youtube.com/watch?v=eyT0C...
--------------------------------------------------------------------------------------------------------------------------------
💡 Join us on Social Media 💡
LinkedIn: https://www.linkedin.com/in/stevevond...
Instagram: https://www.instagram.com/attorneysteve/
Facebook: https://www.facebook.com/attorneystev...
Twitter: https://twitter.com/SteveVondran
--------------------------------------------------------------------------------------------------------------------------------
🖥️ Contact us for a consultation 🖥️
https://www.vondranlegal.com/contact-us
☎️ Or call us at ☎️
(877) 276-5084
(time permitting - we cannot respond to ALL calls)
☁️ For advertising, promotional, and endorsement opportunities, visit us at ☁️
https://www.vondranlegal.com/attorney....
(We can help promote your law or legal related or other products)
--------------------------------------------------------------------------------------------------------------------------------
👉🏻 More Important Info! 👈🏻
🎥 Attorney Steve's Setup 🎥
https://www.vondranlegal.com/my-setup
🕺🏻 Merchandise 🕺🏻
https://www.vondranlegal.com/merchandise
🌟 Avvo Client Reviews 🌟
https://www.avvo.com/attorneys/94104-...
🙌🏻 Support us on Patreon 🙌🏻
https://www.patreon.com/AttorneySteve...
--------------------------------------------------------------------------------------------------------------------------------
🏢 Main Office 🏢
San Francisco Office: https://www.vondranlegal.com/san-fran...
Other Locations:
Phoenix - Camelback Office: https://www.vondranlegal.com/phoenix-...
Phoenix - Uptown Office: https://www.vondranlegal.com/phoenix-...
San Diego Office: https://www.vondranlegal.com/san-dieg...
Orange County Office: https://www.vondranlegal.com/orange-c...
Santa Monica Office: https://www.vondranlegal.com/beverly-...
Copyright Policy Institute Office:
Washington D.C. https://www.copyrightpolicy.org/
NOTICE: This website is general legal information only and not legal advice. Please do not rely. Some information may not be accurate. We are licensed in CA and AZ. Check your local rules. Parts of our videos may constitute “fair use” under the copyright laws, if you have an issue, please call us at (877) 276-5084. We are not liable for your use or viewing of our videos. Thanks for watching!
© 2020 Attorney Steve Vondran. All rights reserved.
published: 05 Jul 2016
views: 567
1:25
SIIA CODiE Awards 2021
The Software and Information Industry Association's 2021 CODiE Award for Best Virtual Learning Solution.
The Software and Information Industry Association's 2021 CODiE Award for Best Virtual Learning Solution.
https://wn.com/Siia_Codie_Awards_2021
The Software and Information Industry Association's 2021 CODiE Award for Best Virtual Learning Solution.
published: 01 Jul 2021
views: 96
1:54
Association Spotlight with: Jeff Joseph, President of The Software Information Industry Association
Play in Full Screen
Association Spotlight with: Jeff Joseph, President of The Software Information Industry Association
Association Spotlight with: Jeff Joseph, President of The Software Information Industry Association
1:24
The Software & Information Industry Association and Student Privacy
SIIA's Director of Education Policy Sara Kloek discusses the role of SIIA in the student p...
Play in Full Screen
The Software & Information Industry Association and Student Privacy
The Software & Information Industry Association and Student Privacy
SIIA's Director of Education Policy Sara Kloek discusses the role of SIIA in the student privacy and educational technology conversation.
2:45
Software and Information Industry Association | Wikipedia audio article
This is an audio version of the Wikipedia Article:
https://en.wikipedia.org/wiki/Software...
Play in Full Screen
Software and Information Industry Association | Wikipedia audio article
Software and Information Industry Association | Wikipedia audio article
This is an audio version of the Wikipedia Article:
https://en.wikipedia.org/wiki/Software_and_Information_Industry_Association
00:01:38 CODiE Awards
Listening is a more natural way of learning, when compared to reading. Written language only began at around 3200 BC, but spoken language has existed long ago.
Learning by listening is a great way to:
- increases imagination and understanding
- improves your listening skills
- improves your own spoken accent
- learn while on the move
- reduce eye strain
Now learn the vast amount of general knowledge available on Wikipedia through audio (audio article). You could even learn subconsciously by playing the audio while you are sleeping! If you are planning to listen a lot, you could try using a bone conduction headphone, or a standard speaker instead of an earphone.
Listen on Google Assistant through Extra Audio:
https://assistant.google.com/services/invoke/uid/0000001a130b3f91
Other Wikipedia audio articles at:
https://www.youtube.com/results?search_query=wikipedia+tts
Upload your own Wikipedia articles through:
https://github.com/nodef/wikipedia-tts
Speaking Rate: 0.7548769541430224
Voice name: en-AU-Wavenet-D
"I cannot teach anybody anything, I can only make them think."
- Socrates
SUMMARY
=======
The Software and Information Industry Association (SIIA) is a trade association dedicated to the entertainment, consumer and business software industries. Established in 1984 as the Software Publishers Association (SPA), the SIIA took its new name when it merged with the related Information Industry Association on January 1, 1999. The joint enterprise was headed by Software Publishers Association founder Ken Wasch and operated out of the SPA's existing offices.The SPA was active in lobbying, industry research and anti-piracy efforts. Its head of research, Ann Stephens, went on to found PC Data in 1991. By 1995, the SPA had over 1,100 software companies in its membership and according to Wired was among "the most powerful computer-related trade groups" before its merger with the Information Industry Association. While Microsoft became a member of the SPA in 1986, it split with the SIIA in 2000 after the group sided against Microsoft in United States v. Microsoft Corp. The Wall Street Journal described Microsoft as the SIIA's "largest member" before the departure.Until 1999, the Software Publishers Association hosted the SPA Annual Conference for software companies. It was renamed the InfoSoft Essentials conference in 1999.
5:37
Understanding SIIA software audits by Attorney Steve
When you get a legal demand letter from the SIIA to audit your software and prove your com...
Play in Full Screen
Understanding SIIA software audits by Attorney Steve
Understanding SIIA software audits by Attorney Steve
When you get a legal demand letter from the SIIA to audit your software and prove your compliance with licensing terms you have to understand your rights.
http://www.SoftwareAuditLawyers.com
YES, YOU CAN SHARE THIS VIDEO ON YOUR SOCIAL MEDIA WEBSITES!
Attorney Steve (intellectual property lawyer) discusses what the SIIA is and what happens when you get a letter alleging copyright infringement or seeking monetary damages for that.
A few things to note:
1. The SIIA is NOT law enforcement, they are a industry trade group
2. They do hire IP legal counsel to enforce their copyrights and protect their copyrighted works
3. You should contact a copyright lawyer BEFORE admitting and disclosing things to the SIIA or its law firm representatives. What you say can come back to haunt you.
4. Software licensing shortage or copyright piracy claims can have a serious impact on your company and your brand, businesses are encouraged to treat this as a serious legal matter.
We hope you have enjoyed this video and if you are facing an audit or dealing with a demand letter, click on the link above or contact us at (877) 276-5084.
Make sure to SUBSCRIBE to our legal channel by clicking on the RED "V" for victory! We offer low flat rate legal fees for many of our cases.
Resources
1. Software industry association website - http://www.siia.net/
2. Reporting piracy to SIIA - https://www.siia.net/piracy/report/content.asp
3. Software piracy facts, information - http://www.encyclopedia.com/topic/Software_Piracy.aspx
4. Typical damages and penalties in software piracy cases - http://vondranlegal.com/how-to-calculate-damages-in-software-infringement-cases/ --------------------------------------------------------------------------------------------------------------------------------
⭕ SUBSCRIBE to EDUCATE YOURSELF on ALL THINGS LAW ⭕
https://www.youtube.com/user/Attorney...
--------------------------------------------------------------------------------------------------------------------------------
🔥 Check out my video on WINNING SMALL CLAIMS LAWSUITS here 🔥 https://www.youtube.com/watch?v=qTUhB...
👨🎓 Learn how to register a trademark WITHOUT A LAWYER here 👨🎓
https://www.youtube.com/watch?v=8gSE5...
✔️ Get some tips on MEDIATION SUCCESS here ✔️
https://www.youtube.com/watch?v=E32Ks...
✈️ Watch my video on ULTIMATE DEPOSITION TIPS here ✈️
https://www.youtube.com/watch?v=eyT0C...
--------------------------------------------------------------------------------------------------------------------------------
💡 Join us on Social Media 💡
LinkedIn: https://www.linkedin.com/in/stevevond...
Instagram: https://www.instagram.com/attorneysteve/
Facebook: https://www.facebook.com/attorneystev...
Twitter: https://twitter.com/SteveVondran
--------------------------------------------------------------------------------------------------------------------------------
🖥️ Contact us for a consultation 🖥️
https://www.vondranlegal.com/contact-us
☎️ Or call us at ☎️
(877) 276-5084
(time permitting - we cannot respond to ALL calls)
☁️ For advertising, promotional, and endorsement opportunities, visit us at ☁️
https://www.vondranlegal.com/attorney....
(We can help promote your law or legal related or other products)
--------------------------------------------------------------------------------------------------------------------------------
👉🏻 More Important Info! 👈🏻
🎥 Attorney Steve's Setup 🎥
https://www.vondranlegal.com/my-setup
🕺🏻 Merchandise 🕺🏻
https://www.vondranlegal.com/merchandise
🌟 Avvo Client Reviews 🌟
https://www.avvo.com/attorneys/94104-...
🙌🏻 Support us on Patreon 🙌🏻
https://www.patreon.com/AttorneySteve...
--------------------------------------------------------------------------------------------------------------------------------
🏢 Main Office 🏢
San Francisco Office: https://www.vondranlegal.com/san-fran...
Other Locations:
Phoenix - Camelback Office: https://www.vondranlegal.com/phoenix-...
Phoenix - Uptown Office: https://www.vondranlegal.com/phoenix-...
San Diego Office: https://www.vondranlegal.com/san-dieg...
Orange County Office: https://www.vondranlegal.com/orange-c...
Santa Monica Office: https://www.vondranlegal.com/beverly-...
Copyright Policy Institute Office:
Washington D.C. https://www.copyrightpolicy.org/
NOTICE: This website is general legal information only and not legal advice. Please do not rely. Some information may not be accurate. We are licensed in CA and AZ. Check your local rules. Parts of our videos may constitute “fair use” under the copyright laws, if you have an issue, please call us at (877) 276-5084. We are not liable for your use or viewing of our videos. Thanks for watching!
© 2020 Attorney Steve Vondran. All rights reserved.
17:05
How to respond to SIIA audit letter
http://SoftwareAuditLawyers.com
Copyright lawyer Steve Vondran discusses what you need to...
Play in Full Screen
How to respond to SIIA audit letter
How to respond to SIIA audit letter
http://SoftwareAuditLawyers.com
Copyright lawyer Steve Vondran discusses what you need to know about the SIIA audit, what you need to know, and how to respond. If you need help, we offer a FREE initial consultation. This video discusses
1. What is the SIIA - here is their website
http://www.siia.net/
2. How to respond to the audit demand letter
Software audit letter is explained in this video https://youtu.be/dx3JxFAnqGI
3. Penalties for willful copyright infringement or software piracy
Video discussing copyright infringement damages
https://youtu.be/LJxTTcDuhzs
4. SIIA rewards for informants
Here is their "snitch" page:
http://www.siia.net/piracy/report/report.asp
5. General tips and considerations
Here is a video that explains what the SIIA is in great detail
https://youtu.be/xe6Q-sKjHkE
Again, if you are not sure what your software audit rights are, contact us to speak with a copyright lawyer. We have helped companies across the United States and even international companies dealing with Federal Court cases in California. Call us at (877) 276-5084.
PUBLIC NOTICE: If you get a audit demand letter many people ask us "is this a scam?" As a matter of public awareness if the letter came from Donahue & Fitzgerald (ex. Bruce Eads), Venable, Klemchuk, Weir Johnson, these are legitimate IP law firms and you should contact a lawyer. Call us we can help check this out for you, and note we have come across illegitimate "compliance companies."
If you liked this video feel free to SHARE IT ON YOUR SOCIAL MEDIA NETWORKS!!! We appreciate your support!!! --------------------------------------------------------------------------------------------------------------------------------
⭕ SUBSCRIBE to EDUCATE YOURSELF on ALL THINGS LAW ⭕
https://www.youtube.com/user/Attorney...
--------------------------------------------------------------------------------------------------------------------------------
🔥 Check out my video on WINNING SMALL CLAIMS LAWSUITS here 🔥 https://www.youtube.com/watch?v=qTUhB...
👨🎓 Learn how to register a trademark WITHOUT A LAWYER here 👨🎓
https://www.youtube.com/watch?v=8gSE5...
✔️ Get some tips on MEDIATION SUCCESS here ✔️
https://www.youtube.com/watch?v=E32Ks...
✈️ Watch my video on ULTIMATE DEPOSITION TIPS here ✈️
https://www.youtube.com/watch?v=eyT0C...
--------------------------------------------------------------------------------------------------------------------------------
💡 Join us on Social Media 💡
LinkedIn: https://www.linkedin.com/in/stevevond...
Instagram: https://www.instagram.com/attorneysteve/
Facebook: https://www.facebook.com/attorneystev...
Twitter: https://twitter.com/SteveVondran
--------------------------------------------------------------------------------------------------------------------------------
🖥️ Contact us for a consultation 🖥️
https://www.vondranlegal.com/contact-us
☎️ Or call us at ☎️
(877) 276-5084
(time permitting - we cannot respond to ALL calls)
☁️ For advertising, promotional, and endorsement opportunities, visit us at ☁️
https://www.vondranlegal.com/attorney....
(We can help promote your law or legal related or other products)
--------------------------------------------------------------------------------------------------------------------------------
👉🏻 More Important Info! 👈🏻
🎥 Attorney Steve's Setup 🎥
https://www.vondranlegal.com/my-setup
🕺🏻 Merchandise 🕺🏻
https://www.vondranlegal.com/merchandise
🌟 Avvo Client Reviews 🌟
https://www.avvo.com/attorneys/94104-...
🙌🏻 Support us on Patreon 🙌🏻
https://www.patreon.com/AttorneySteve...
--------------------------------------------------------------------------------------------------------------------------------
🏢 Main Office 🏢
San Francisco Office: https://www.vondranlegal.com/san-fran...
Other Locations:
Phoenix - Camelback Office: https://www.vondranlegal.com/phoenix-...
Phoenix - Uptown Office: https://www.vondranlegal.com/phoenix-...
San Diego Office: https://www.vondranlegal.com/san-dieg...
Orange County Office: https://www.vondranlegal.com/orange-c...
Santa Monica Office: https://www.vondranlegal.com/beverly-...
Copyright Policy Institute Office:
Washington D.C. https://www.copyrightpolicy.org/
NOTICE: This website is general legal information only and not legal advice. Please do not rely. Some information may not be accurate. We are licensed in CA and AZ. Check your local rules. Parts of our videos may constitute “fair use” under the copyright laws, if you have an issue, please call us at (877) 276-5084. We are not liable for your use or viewing of our videos. Thanks for watching!
© 2020 Attorney Steve Vondran. All rights reserved.
1:24
The Software Information Industry Association & Student Privacy
Sara Kloek, the Director of Education at the Software Information Industry Association, di...
Play in Full Screen
The Software Information Industry Association & Student Privacy
The Software Information Industry Association & Student Privacy
Sara Kloek, the Director of Education at the Software Information Industry Association, discusses how her organization deals with student privacy.
10:47
What are the rewards for reporting your employer to SIIA as software pirate?
http://www.softwareaudits.net
CAN YOU HAVE A "SIDE HUSTLE" REPORTING COPYRIGHT SOFTWARE I...
Play in Full Screen
What are the rewards for reporting your employer to SIIA as software pirate?
What are the rewards for reporting your employer to SIIA as software pirate?
http://www.softwareaudits.net
CAN YOU HAVE A "SIDE HUSTLE" REPORTING COPYRIGHT SOFTWARE INFRINGEMENT?
Copyright attorney Steve Vondran ("Attorney Steve") discusses what you can expect when you report your boss to the SIIA software industry trade group. Many times these cases deal with Adobe Photoshop or other member products, but here is a general rundown of the policy that you can expect to be dealing with. Under the terms of this copyright enforcement program, rewards can vary from $500 up to one million dollars (yes, I suppose you could call this the "software piracy lottery." However, I have never heard of anyone making that kind of money, but as the saying goes - you never know.
At any rate, we hope you enjoy this video. If you want to collect on the reward you should call us first to make sure you are not cheated. If you are a business who just received an audit demand letter from the SIIA or BSA, Autodesk, or Microsoft, you should also call us. We have represented many companies large to small and we can help you.
Call us at (877) 276-5084.
IF YOU ENJOYED THIS VIDEO FEEL FREE TO SHARE IT ON YOUR SOCIAL MEDIA NETWORKS - DON'T FORGET TO GIVE A SHOUT OUT TO "ATTORNEY STEVE." --------------------------------------------------------------------------------------------------------------------------------
⭕ SUBSCRIBE to EDUCATE YOURSELF on ALL THINGS LAW ⭕
https://www.youtube.com/user/Attorney...
--------------------------------------------------------------------------------------------------------------------------------
🔥 Check out my video on WINNING SMALL CLAIMS LAWSUITS here 🔥 https://www.youtube.com/watch?v=qTUhB...
👨🎓 Learn how to register a trademark WITHOUT A LAWYER here 👨🎓
https://www.youtube.com/watch?v=8gSE5...
✔️ Get some tips on MEDIATION SUCCESS here ✔️
https://www.youtube.com/watch?v=E32Ks...
✈️ Watch my video on ULTIMATE DEPOSITION TIPS here ✈️
https://www.youtube.com/watch?v=eyT0C...
--------------------------------------------------------------------------------------------------------------------------------
💡 Join us on Social Media 💡
LinkedIn: https://www.linkedin.com/in/stevevond...
Instagram: https://www.instagram.com/attorneysteve/
Facebook: https://www.facebook.com/attorneystev...
Twitter: https://twitter.com/SteveVondran
--------------------------------------------------------------------------------------------------------------------------------
🖥️ Contact us for a consultation 🖥️
https://www.vondranlegal.com/contact-us
☎️ Or call us at ☎️
(877) 276-5084
(time permitting - we cannot respond to ALL calls)
☁️ For advertising, promotional, and endorsement opportunities, visit us at ☁️
https://www.vondranlegal.com/attorney....
(We can help promote your law or legal related or other products)
--------------------------------------------------------------------------------------------------------------------------------
👉🏻 More Important Info! 👈🏻
🎥 Attorney Steve's Setup 🎥
https://www.vondranlegal.com/my-setup
🕺🏻 Merchandise 🕺🏻
https://www.vondranlegal.com/merchandise
🌟 Avvo Client Reviews 🌟
https://www.avvo.com/attorneys/94104-...
🙌🏻 Support us on Patreon 🙌🏻
https://www.patreon.com/AttorneySteve...
--------------------------------------------------------------------------------------------------------------------------------
🏢 Main Office 🏢
San Francisco Office: https://www.vondranlegal.com/san-fran...
Other Locations:
Phoenix - Camelback Office: https://www.vondranlegal.com/phoenix-...
Phoenix - Uptown Office: https://www.vondranlegal.com/phoenix-...
San Diego Office: https://www.vondranlegal.com/san-dieg...
Orange County Office: https://www.vondranlegal.com/orange-c...
Santa Monica Office: https://www.vondranlegal.com/beverly-...
Copyright Policy Institute Office:
Washington D.C. https://www.copyrightpolicy.org/
NOTICE: This website is general legal information only and not legal advice. Please do not rely. Some information may not be accurate. We are licensed in CA and AZ. Check your local rules. Parts of our videos may constitute “fair use” under the copyright laws, if you have an issue, please call us at (877) 276-5084. We are not liable for your use or viewing of our videos. Thanks for watching!
© 2020 Attorney Steve Vondran. All rights reserved.
1:25
SIIA CODiE Awards 2021
The Software and Information Industry Association's 2021 CODiE Award for Best Virtual Lear...
Play in Full Screen
SIIA CODiE Awards 2021
SIIA CODiE Awards 2021
The Software and Information Industry Association's 2021 CODiE Award for Best Virtual Learning Solution.
');
} else {
var query = elem.find('.keywords').html();
$.ajax({
context: elem,
url: 'https://wn.com/api/upge/cheetah-search-adv/video',
cache: true,
data: {
'query': query
},
dataType: 'jsonp',
success: function(text) {
if (text.length > 0) {
video_id = text[0].id;
elem.find('.player').html('
VIDEO
');
}
}
});
}
}
var stopAllYouTubeVideos = function() {
var iframes = document.querySelectorAll('iframe');
Array.prototype.forEach.call(iframes, function(iframe) {
iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*');
});
}
jQuery(function() {
jQuery(".playVideo").live("click", function() {
if(!$(this).hasClass("played")){
stopAllYouTubeVideos();
var elem = $(this);
setTimeout(function(){
mouseOverMe(elem);
}, 1000);
}
});
jQuery(".description_box .expandContent").live("click", function() {
elem = $(this).parent().parent().parent().find('.descContent');
if(elem.height() > 51) {
elem.css('height', '44px');
$(this).html('Show More
');
}else{
elem.css('height', 'auto');
$(this).html('Hide
');
}
});
jQuery('.interview-play-off').click(function() {
$(".interview-play-off").hide();
$(".interview-play").show();
$(".videoplayer-control-pause").click();
});
jQuery(".video-desc .show_author_videos").live("click", function() {
query = $(this).attr('title');
container = $(this).parent().parent().parent().find('.video-author-thumbs');
$(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px');
jQuery.ajax({
url: '/api/upge/cheetah-photo-search/videoresults',
data: {'query': query},
success: function(text) {
if(!text) { text = i18n("No results"); }
container.html(jQuery(text));
}
});
});
});
// -->