Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (79)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (6592)

  • Any Faster alternative to FFplay

    29 août 2020, par WiNtEr_IcE

    I am trying to use this concoction of commands to create active noise cancellation. The thing that slows it down is the ffplay, I have tried all the different flags but there is still about a 1/2 second delay

    


    rec -c 1 -t wav - | ffmpeg -i pipe:0  -af "aeval='-val(ch)':c=same" -f wav - | ffplay -fflags nobuffer -flags low_delay  -


    


    Is there any solution to this or is it something that is inherently slow and no alternative. I know it is not the filter that slows it down because I have done some testing and filtered a 5 minute song in about 3 seconds. I would love to get any possible help.

    


    My Os is MAC

    


  • A/B Testing Platform for Piwik Analytics

    10 novembre 2016, par InnoCraft — Plugins, Press Releases

    We are very excited to launch A/B Testing – a powerful new product designed to help you maximise your success and increase your conversions.

    What is A/B Testing and why is it so important ?

    Experimenting with A/B Testing is an important marketing strategy that goes a long way in maximising your conversions.

    With A/B Testing you can start improving your conversions and sales in your existing website or app by creating different versions of a web page or mobile app screen to find out how to modify your website to optimize business success.

    How does A/B Testing work ?

    To explain how A/B Testing works, let’s take an example. Imagine one of your most important landing pages has been redesigned to hopefully get more email signups. Now you need to make sure the new version is “better” than the current version, or at least does result in less conversions. To compare the performance of these two versions, you can then run an A/B test whereby the A/B testing product tells you whether the redesigned version is producing more email signups compared to the original version.

    How it works is that visitors on your website during the experiment will see a randomly chosen version (variation) and A/B Testing makes sure that your users will always see the same variation for all subsequent visits. The behaviour and goals converted by each user is measured continuously by Piwik A/B Testing. The beautifully designed and easy to use dashboard shows how each variation impacts your success metrics such as conversions, sales or page views.

    When the A/B test is complete, you will then know which is the winning version getting you closer to reaching your goals ! A/B Testing includes an advanced statistical analysis engine to provide a reliable indicator of which of your versions is actually improving your bottom line.

    Examples of successful A/B tests

    Below are a just a few interesting A/B tests results from the article 7 Dead-Simple A/B Tests You Should Run on Your Homepage (HubSpot).

    Increase click on CTA button by 21%

    We actually conducted an A/B test on button color and found that changing the CTA button from green to red increased clicks by 21%. In the world of website optimization, that’s huge !

    47.7% more clicks on the navigation bar

    An A/B test comparing the phrases used on the navigation bar discovered that the menu link “How It Works” earned 47.7% more clicks than “Why Use Us.”

    5% more conversions using a different image

    Highrise, a small business CRM, A/B tested their website’s imagery by featuring two different people – Jocelyn on the left, and Michael on the right. They found Michael helped improve conversions by almost 5%.

    Changing the headline to increase conversions by 38%

    WhichTestWon ran an A/B test on AwayFind’s homepage and found that Version B increased signups by 38%. This could be because the headline is more concise and the subheader includes bolded words to clearly communicate the product’s value

    Where do I start testing ?

    Your testing strategy is tied to your overall business strategy. What do you want people to achieve on your website ? What are the goals that you want your users to convert ? What are your one or two Key Performance Indicators, and what are your targets for these KPIs ?

    When you start thinking of improving your targets you can begin by looking at the most important parts that can be improved :

    • What are your call to actions ?
    • Which are your most popular pages, and landing pages ?
    • What elements of my website is above the fold and can be seen by all visitors within a few seconds ?

    How do I get A/B Testing ?

    All premium plugins come with our 14 day money back guarantee and 1-click installation & updates. Customers get all product updates for free.

    A/B Testing is available for purchase and download on the Marketplace.

    If you are not using Piwik yet, you can also signup for a free trial of Piwik Cloud (including A/B Testing !).

    Have a question about this product ? Get in touch.

  • ffmpeg reserve input for rtmp incoming stream

    11 août 2020, par Ivan Burlutskiy

    I have a process which reads some rtmp stream, does several changes of the video and send rtmp to other server.

    


    ffmpeg -re -i rtmp://source_stream \
  -filter_complex "[0:v]drawtext=text='Test # 1'[final_v]" \
  -flags +global_header -pix_fmt yuv420p \
  -map [final_v] -map 0:a -c:v libx264 -c:a aac -r 30 \
  -f flv rtmp:/target_stream


    


    I want to add a reserve input for a case, when the source_stream is not available.
For example, if the source_stream is stuck, then use a local video file. When the source_stream is active again, then use it again.

    


    Is it possible with ffmpeg ?