
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (52)
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (5286)
-
How to track WooCommerce orders in Piwik
According to several sources (datanyze.com, builtwith.com, …) 20% of all online stores are using the WooCommerce WordPress solution. As a result, we thought some of you would be interested in knowing how you can track WooCommerce orders in Piwik without getting a headache.
What is WooCommerce ?
Some of you may not be familiar with WooCommerce. It is one of the most popular WordPress plugins allowing you to transform your website into an online store with a few clicks.
The main advantages of WooCommerce are :- free of charge
- highly customizable
- easy to install
- huge community
The WooCommerce Analytics plugin for Piwik
Tracking e-commerce websites is always challenging as there are so many things to be taken into consideration. However, the InnoCraft team (the professional branch of Piwik) has developed a premium feature in order to track all orders into Piwik.
The Piwik WooCommerce premium feature is straightforward and easy to install and configure. You can find the plugin settings in WooCommerce under “WooCommerce => Settings => Piwik” :
Once done, you will see the data appearing in your Piwik when an order is completed :
The InnoCraft team made sure the plugin will record all completed orders 100% correctly (eg. ignoring failed orders, not missing any completed orders). The plugin will even track orders of customers who use an ad blocker thanks to a server-side tracking technique.
Is the WooCommerce Analytics plugin an alternative to my current Piwik tracking code ?
No. The WooCommerce Analytics plugin only records orders and abandoned carts made through the WooCommerce plugin. It will not record any page views, events or other actions. If you are looking for a great WordPress plugin to insert the Piwik tracking code into your WP website, we strongly recommend WP-Piwik.
Tell us your story
If you are a WooCommerce or WordPress user and would like to tell us about how you use Piwik, we would love to hear your story and blog about your WooCommerce or WordPress story !
-
libffmpeg writes bad mp4 file if the RTSP stream loses packets
5 avril 2017, par user92238I’m working with libffmpeg in iOS, using it to open an RTSP stream and save the data to a file.
I’ve been able to successfully save video files in both .mp4 and .mov formats, but there is a problem.
If the RTSP stream is perfect — that is, if there are no dropped packets — then the resulting file is fine. I can play it in a player, and I can even transcode it using an AVAssetExportSession.
The problem is, I’m dealing with a wireless camera that sends data over UDP only, so there are often dropped packets. When a dropped packet occurs, the resulting file has a big glitch in it : even if it’s just one or two packets, the playback freezes for about 12 seconds. Also, I cannot use AVAssetExportSession with these files. It fails, reporting a decoding problem.
I feel like there must be some way I can cause ffmpeg to write a valid mp4 file when packets are missing. I don’t care what happens, whether the missing packets are simply deleted from the file or if they are replaced with something, I just don’t want a 12 second freeze.
For what it’s worth, if I take the file off of my iOS device and play it on my computer, it plays fine. There’s a small glitch where the frame was dropped, but it doesn’t freeze for 12 seconds or anything.
Thanks.
-
Change Encoding of StandardInput.WriteLine
25 avril 2018, par abdullah cinarI am trying to run
ffmpeg
executable using theProcess
to convert an input audio file to mp3 format. Below is the example call that works very well when I do it from thecmd.exe
in Windows :"ffmpeg.dll -i "inputPath\input.wav" -vn -ar 44100 -ac 2 -ab 320k -f mp3 -y "outputPath\output.mp3"
The input or output file paths can contain Turkish characters like
ş ö ç ğ
. So I have to take care of the encodings ofStreamWriter
.My snippet for the
StreamWriter
is :Process cmd = new Process();
cmd.StartInfo.FileName = "cmd.exe";
cmd.StartInfo.RedirectStandardInput = true;
cmd.StartInfo.CreateNoWindow = false;
cmd.StartInfo.UseShellExecute = false;
cmd.Start();
Encoding tr_encoding = Encoding.GetEncoding("iso-8859-9");
using (StreamWriter sw = new StreamWriter(cmd.StandardInput.BaseStream, tr_encoding))
{
sw.WriteLine(ffmpeg_cmd + " & exit");
}
cmd.WaitForExit();But I always get
No such file or directory
error from theffmpeg
because the filepath contains a folder named asşşşş
but myStreamWriter
sends that folder name as■■■
.How to send command-line arguments in different arguments ?