
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (39)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (8237)
-
Piwik is expanding ! We’re seeking a talented Software Engineer in New Zealand or in Poland
At Piwik and Piwik PRO we develop the leading open source web analytics platform, used by more than one million websites worldwide. Our vision is to build the best open alternative to Google Universal Analytics.
The Piwik platform collects, stores and processes a lot of information : hundreds of millions of data points each month. We create intuitive, simple and beautiful reports that delight our users.
Are you seeking a new challenge ? We are currently looking for a software engineer or software developer who is passionate about data processing, security, privacy, the open source philosophy and usable interface design.
We practise agile methodology, test driven development, and fast release cycles. The main technologies we work with are Javascript (AngularJS, jquery), PHP5 and MySQL. You will write open source code that will directly benefit 250,000+ Piwik users in more than 200 countries and 50 languages.
Responsibilities
- Write server-side code (PHP5) and front-end code (Javascript) for Piwik platform.
- Create robust high-volume production applications and develop prototypes quickly.
- Tackle new problems as we continue to push technology forward.
Minimum qualifications
- BA/BS degree in Computer Science or equivalent practical experience.
- 2 years of relevant work experience in software development.
- Understanding of, and practical experience with PHP5 and Javascript application development.
- Strong analytical and coding skills.
- Excellent communication skills.
Location
- Wellington central, New Zealand.
If you are not in New Zealand, and you are the right candidate, we will help you relocate here ! - Wrocław, Poland
Apply online
To apply for this position, please Apply online here. We look forward to receiving your applications !
-
Piwik is expanding ! We’re seeking a talented Software Engineer in New Zealand or in Poland
At Piwik and Piwik PRO we develop the leading open source web analytics platform, used by more than one million websites worldwide. Our vision is to build the best open alternative to Google Universal Analytics.
The Piwik platform collects, stores and processes a lot of information : hundreds of millions of data points each month. We create intuitive, simple and beautiful reports that delight our users.
Are you seeking a new challenge ? We are currently looking for a software engineer or software developer who is passionate about data processing, security, privacy, the open source philosophy and usable interface design.
We practise agile methodology, test driven development, and fast release cycles. The main technologies we work with are Javascript (AngularJS, jquery), PHP5 and MySQL. You will write open source code that will directly benefit 250,000+ Piwik users in more than 200 countries and 50 languages.
Responsibilities
- Write server-side code (PHP5) and front-end code (Javascript) for Piwik platform.
- Create robust high-volume production applications and develop prototypes quickly.
- Tackle new problems as we continue to push technology forward.
Minimum qualifications
- BA/BS degree in Computer Science or equivalent practical experience.
- 2 years of relevant work experience in software development.
- Understanding of, and practical experience with PHP5 and Javascript application development.
- Strong analytical and coding skills.
- Excellent communication skills.
Location
- Wellington central, New Zealand.
If you are not in New Zealand, and you are the right candidate, we will help you relocate here ! - Wrocław, Poland
Apply online
To apply for this position, please Apply online here. We look forward to receiving your applications !
-
FFMpeg - increase processing speed for filter_complex with enable='0' ?
16 août 2021, par Giorgio FI am running a FFmpeg command with 'filter_complex', applying a set of consecutive filters, that ultimately will only be applied to some specific frames.


The challenge I'm having is the command performance - regardless of applying the filter to all frames or not, the performance is very similar.


Here are some examples :


- 

- Apply a filter to every frame (alternate between 2 different filters, every 15 frames) :




ffmpeg -y -i video.mp4 -i "image1.png" -i "image2.png" -filter_complex "[0:v]format=gbrp[f],[0:v]format=gbrp[f1],[0:v]format=gbrp[f2],[1:v]format=gbrp[w1],[2:v]format=gbrp[w2],[f1][w1]blend=all_mode='darken':enable='lt(mod(n\,30)\,15)'[fw1];[f2][w2]blend=all_mode='lighten':enable='gte(mod(n\,30)\,15)'[fw2];[f][fw1]blend=all_mode='lighten':enable='lt(mod(n\,30)\,15)'[ftmp];[ftmp][fw2]blend=all_mode='darken':enable='gte(mod(n\,30)\,15)'" output.mp4



Processing speed=0.625x


- 

- Apply the filter every 15 frames (2 filters alternating every 30 frames) :




ffmpeg -y -i video.mp4 -i "image1.png" -i "image2.png" -filter_complex "[0:v]format=gbrp[f],[0:v]format=gbrp[f1],[0:v]format=gbrp[f2],[1:v]format=gbrp[w1],[2:v]format=gbrp[w2],[f1][w1]blend=all_mode='darken':enable='eq(mod(n\,30)\,15)'[fw1];[f2][w2]blend=all_mode='lighten':enable='eq(mod(n\,30)\,15)'[fw2];[f][fw1]blend=all_mode='lighten':enable='eq(mod(n\,30)\,15)'[ftmp];[ftmp][fw2]blend=all_mode='darken':enable='eq(mod(n\,30)\,15)'" output.mp4



Processing speed=0.661x


- 

- Set all "enabled" properties to 0 (therefore not applying any filter at all) :




ffmpeg -y -i video.mp4 -i "image1.png" -i "image2.png" -filter_complex "[0:v]format=gbrp[f],[0:v]format=gbrp[f1],[0:v]format=gbrp[f2],[1:v]format=gbrp[w1],[2:v]format=gbrp[w2],[f1][w1]blend=all_mode='darken':enable='0'[fw1];[f2][w2]blend=all_mode='lighten':enable='0'[fw2];[f][fw1]blend=all_mode='lighten':enable='0'[ftmp];[ftmp][fw2]blend=all_mode='darken':enable='0'" output.mp4



Processing speed=0.663x


- 

- Apply a basic "Negate" filter to the video :




ffmpeg -y -i video.mp4 -i "image1.png" -i "image2.png" -filter_complex "[0:v]format=gbrp[f],[f]negate" output.mp4



Processing speed=1.23x



The performance is very similar for the cases 1. to 3., however I was expecting a similar performance between the two last ones since, in theory, nothing is processed on the 3. - however, with every filter turned off, the performance is very similar to having all filters enabled.


Is there any way I am able to rewrite this command in order to increase the performance ?
The final goal will is to increase the performance for the case 2.


Thanks in advance !