
Recherche avancée
Autres articles (55)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Changer le statut par défaut des nouveaux inscrits
26 décembre 2015, parPar défaut, lors de leur inscription, les nouveaux utilisateurs ont le statut de visiteur. Ils disposent de certains droits mais ne peuvent pas forcément publier leurs contenus eux-même etc...
Il est possible de changer ce statut par défaut. en "rédacteur".
Pour ce faire, un administrateur webmestre du site doit aller dans l’espace privé de SPIP en ajoutant ecrire/ à l’url de son site.
Une fois dans l’espace privé, il lui faut suivre les menus configuration > Interactivité et activer (...)
Sur d’autres sites (5888)
-
Linux ffmpeg operation for every mp4 files in subdirectories
20 janvier 2021, par adigeefeI'm using Linux. I want to add transparent watermark in center of a videos with ffmpeg. I just wanted to write a bash script but I couldn't. I also tried on python.
My folder tree ;


$ tree 
.
├── 1._Intro
│   ├── 1._Welcome.mp4
│   ├── 2._Thisisantest.mp4
| .
| .
| .
│   ├── 9._Hello.mp4
│   ├── 10._Is_problem_there.jpg
│   └── pdffile1.pdf
├── 3._HTML
│   ├── 1._HTML.mp4
│   └── 4._Form.mp4
.
.
.



How can I add transparent watermark those mp4 files with same directories and same filenames(No problem if we add 0 the beginning of the file name for output.) ?
Edit:I showed -1 vote, I'm researching about that since last week.


-
Secure and track every change to your Matomo installation with the Activity Log plugin
14 novembre 2017, par InnoCraft — PluginsAre you wondering how your colleagues are using Matomo (Piwik) ? Would you like to know if an unauthorized user got an access to your installation ? Would you like to remember the last actions you performed in Matomo some weeks ago ? At InnoCraft, we developed a plugin called “Activity Log”. With this feature you can easily track and check all major changes to your Matomo websites, for example : user permissions, goals, and funnels. In this article we will show you the different ways you can use it and explain why it is an invaluable plugin.
Activity log for better security
The activity log feature has been designed for security. Also referred to as “audit logging” or “audit trail”, with this plugin you will be able to :
- detect any suspicious actions
- detect hacker attacks
- help identify performance problems
- see clearly who did what, and when
- find out how people are using Matomo (Piwik) within your company
1 – detect any suspicious actions
With audit trail you can easily identify if a former employee still has access to your Matomo (Piwik) installation. You will then be able to know when he accessed it for the last time, and what changes she or he performed. If you got hacked, you will be able to find out if the user created, changed, or deleted any website, goals, or did anything else suspicious.
2 – detect hacker attacks
When an unregistered user is trying to access your Matomo (Piwik), each failed login attempt is registered within the Activity Log report.
3 – help identify performance problems
Activity Log can help you identify performance problems by registering the sequence of each major action a user performed. For example, if a user updated or installed a third party plugin, and suddenly Matomo (Piwik) is getting performance problems, then it is likely that the plugin update caused it.
4 – see clearly who did what, and when
It is always challenging in an organization to know who did what and when. With Activity Log, you will know who were the employee(s) that accessed Matomo (Piwik), created, updated, or deleted a goal, a funnel, a scheduled report, and much more.
5- find out how people are using Matomo within your company
By having a look at how people are using Matomo (Piwik) you will have an overview of how your colleagues use Matomo. For example, you can see who is creating Custom segments to analyse the audience in more details, who is creating funnels to learn where your users drop off. You will then be able to identify who has the knowledge and who needs training.
Did you know ?
You can help the Matomo (Piwik) core team make Matomo even better by sharing anonymously how you use Matomo on a day to day basis. You just need to install the following plugin : http://plugins.matomo.org/AnonymousPiwikUsageMeasurement
What’s in it ?
Once downloaded and installed from the marketplace, you will be able to access the activity log from the admin panel within the diagnostic section :
If you are logged as a super user administrator, you will get an overview and a detailed report about who accessed Matomo (Piwik) and which actions they performed.
Those reports are critical as they allow the super user to :
- ensure users are following all documented procedures within your organization such as naming conventions for reports, using the right settings when adding measurables…
- identify suspicious behavior. As those reports are gathering all major Matomo (Piwik) users activities it is easy to identify non conventional behavior.
- replay the sequence some users went through in order to fix any potential issues.
Activity log view report you can access through the admin panel
So you will see in a second if an unusual user got access to Matomo (Piwik) and the different actions the user performed.
It is also a good way to see the features that your users are using and identify potential misuse.As a regular user or admin, activity log is providing only the historical actions that this user performed :
Actions listed in the log include any changes (add, edit, delete) to the following features (this is a non exhaustive list) :
- Annotation
- Custom Alert
- Custom Dimension
- Goal
- Privacy settings
- Scheduled report
- Segment
- User
- Website
- …
This is a ideal to remember the actions they previously performed some weeks/months ago.
Where can I start from here ?
Activity log is a premium feature you can acquire through the Matomo (Piwik) marketplace. If you want to experience it before purchasing it, you can try it for free on our cloud infrastructure.
Activity log is just one out of the many great premium features developed by InnoCraft, the company founded by the creators of Matomo. Discover all their special plugins through the premium marketplace.
-
x264 : ignore empty options in bash script
26 février 2016, par manesI do some video encoding using a script with x264. Most options follow the pattern
x264 --option0 $value0 --option1 $value1 -o output.file input.file
The script reads the values from a text file. The text file contains key-values like
crf=18.3
. Unfortunately, this does not work for mb-tree, as the option does not have a $value, it is set by default and can be turned off with--no-mbtree
.If
mbtree=no-mbtree
is set in the text file, everything works fine. But if I choose to encode with mbtree turned on, the--$variable-for-mb-tree-or-no-mb-tree
is still in place, but unset or empty and x264 throws an error.How can I tell bash/ x264 to ignore an unset or empty variable ? I’d like to avoid an if…then…else and rather do it inline.