
Recherche avancée
Médias (3)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (80)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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
Sur d’autres sites (9597)
-
How to track WooCommerce orders in Matomo
3 janvier 2018, par InnoCraftAccording 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 Matomo (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 Matomo
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 Matomo) has developed a premium feature in order to track all orders into Matomo (Piwik).
The Matomo (Piwik) WooCommerce premium feature is straightforward and easy to install and configure. You can find the plugin settings in WooCommerce under “WooCommerce => Settings => Matomo” :
Once done, you will see the data appearing in your Matomo (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 Matomo 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 Matomo (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 Matomo (Piwik), we would love to hear your story and blog about your WooCommerce or WordPress story !
The post How to track WooCommerce orders in Matomo appeared first on Analytics Platform - Matomo.
-
ffmpeg switch inputs / mapping on-the-fly / while recording
7 juin 2020, par SuuuehgiI have a rtsp video-source
stream1
and an audio source I currently merge and send to a rtmp-server using :


stream1="rtsp://streamurl1"

/usr/bin/ffmpeg \
 [...]
 -i "$stream1" \
 [...]
 -itsoffset $AUDIOVIDEOOFFSET \
 -f pulse \
 -i default \
 [...]
 -vcodec copy \
 -map 0:v -map 1:a \
 [...]
 -f flv "rtmp://streamingserver"






I would now like to add a second video source
stream2
and switch betweenstream1
andstream2
back and forth without interrupting the audio. Both streams are identical / come from identical cameras.




Is there any sane way to do this with
ffmpeg
? Or how would you recommend doing it ?


Just stopping the process and restarting it using
stream2
instead ofstream1
works but results in several seconds outage on the stream and is the current worst case scenario I would like to improve.

-
Dynamically Extending FFMPEG Playlist for Continuous Video Streaming
3 août 2023, par dumbQuestionsI am trying to create a seamless FFMPEG playlist so I can add new videos without interrupting the stream. Currently, I'm using the following command :


ffmpeg -re -f concat -safe 0 -i playlist.txt -c copy -f flv "${INPUT_URL}"


The initial playlist works fine, but when I try to append new files to it, the streaming stops and the newly added files don't seem to affect the output.


I've tried manually editing the playlist.txt file and adding new video files to it while streaming, but it seems like FFMPEG doesn't automatically detect the changes and continues the streaming seamlessly. I also attempted using the
-concat
option, but it didn't work as expected.

Is there a proper way to dynamically extend the FFMPEG playlist while maintaining continuous video streaming, or a way to continuously stream new clips one after the other without interruptions ? Any insights or suggestions on how to achieve this would be greatly appreciated. Thanks in advance !