
Recherche avancée
Autres articles (112)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ;
Sur d’autres sites (8196)
-
Divide videos to sub videos by FFMPEG
1er mars 2013, par seereenI have DVDs each one has 5 avi video ,,,, I am trying to divid these 5 avi to sub videos (at least 12 small avi videos) depending on the marker on some frames ...
the problem is ... some time the new video contain frames from 2 original avi (for example : the sub video number 7 will have the last frames from original video 2 and the first frames from video 3)
In this case my code crashed ! and Program received signal :EXC_BAD_ACCESS.
error !!
the problem happen in this functionvoid write_video_frame(AVFormatContext *oc, AVStream *st, AVFrame *frame)
in if (oc->oformat->flags & AVFMT_RAWPICTURE)any idea why I got this problem ....
I am using FFMPEG 0.11 and openCV 2.4.3 in OSx 10.6.8 -
Grow your business and understand your conversion funnel with Funnels for Piwik
14 décembre 2016, par InnoCraft — PluginsHi, this is Tom from InnoCraft. The company of the makers of Piwik.
No matter what type of website or app you have, whether you are trying to get your users to sign up for something or sell products, there is a certain number of steps your visitors have to go through. I bet the same applies to you.
Have you ever wondered if your visitors or users actually follow that path in your website or app ? And wondered where you lose your visitors ? Where they maybe get confused ? Want to see when something is not working anymore ? Maybe you have a multi step signup form or onboarding process ? On every step you lose visitors and therefore potential revenue and conversions. It’s critical to know how well your visitors go through these steps, where they originally came from and where they go to when they drop off.
If you are wondering about such things like we do, or want to drive your conversions and sales, we have something for you.
-> Read the rest of the story on the Funnels Marketplace page.
What does the new Funnel report look like ?
Here is below just a little preview of the Funnel report.
You get this funnel report for each of your goals so you can optimise each of your conversion funnels.
Where do I get Funnel for Piwik ?
Funnels is available on the Piwik Marketplace :
Funnels is premium plugin for Piwik and comes with our 14 day money back guarantee and 1-click installation & updates (all product updates come for free).
You can also signup for a free Piwik Cloud-hosted trial to discover the power of Funnels !
-
Why does FFMPEG insert frames in the beginning of a recoded video ?
18 janvier 2016, par Filipe CostaI have a video with 300 frames. After type the following command, the resultant video has 302 frames.
ffmpeg -y -i input.avi -vcodec libx264 -qscale 22 -qmin 22 -qmax 22 -an -g 13 output.avi
The parameters of "input.avi" are :
-vcodec libx264 -qscale 26 -qmin 26 -qmax 26 -an -g 8
I did check the video and the first 3 frames are exactly the same.
Why does it happen ? Basically, I am trying to compare both videos "framewise" without any kind of temporal alignment.