Recherche avancée

Médias (91)

Autres articles (89)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie 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 (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (11574)

  • Matomo Celebrates 15 Years of Building an Open-Source & Transparent Web Analytics Solution

    30 juin 2022, par Matthieu Aubry — About, Community
    &lt;script type=&quot;text/javascript&quot;&gt;<br />
           if ('function' === typeof window.playMatomoVideo){<br />
           window.playMatomoVideo(&quot;brand&quot;, &quot;#brand&quot;)<br />
           } else {<br />
           document.addEventListener(&quot;DOMContentLoaded&quot;, function() { window.playMatomoVideo(&quot;brand&quot;, &quot;#brand&quot;); });<br />
           }<br />
      &lt;/script&gt;

    Fifteen years ago, I realised that people (myself included) were increasingly integrating the internet into their everyday lives, and it was clear that it would only expand in the future. It was an exciting new world, but the amount of personal data shared online, level of tracking and lack of security was a growing concern. Google Analytics was just launched then and was already gaining huge traction – so data from millions of websites started flowing into Google’s database, creating what was then the biggest centralised database about people worldwide and their actions online.

    So as a young engineering student, I decided we needed to build an open source and transparent solution that could help make the internet more secure and private while still providing organisations with powerful insights. I aimed to create a win-win solution for businesses and their digital consumers.

    And in 2007, I started developing Matomo with the help from Scott Switzer and Jennifer Langdon (who offered me an internship and support).   

    All thanks to the Matomo Community

    We have reached significant milestones and made major changes over the last 15 years, but we wouldn’t be where we are today without the Matomo Community.

    So I would like to celebrate and thank the hundreds of volunteer developers who have donated their time to develop Matomo, the thousands of contributors who provided feedback to improve Matomo, the countless supportive forum members, our passionate team of 40 at Matomo, the numerous translators who have translated Matomo and the 1.5 million websites that choose Matomo as their analytics platform.

    Matomo's Birthday
    Team Meetup in Paris in 2012

    Matomo has been a community effort built on the shoulders of many, and we will continue to work for you. 

    So let’s look at some milestones we have achieved over the last 15 years.

    Looking back on milestones in our timeline

    2007

    • Birth of Matomo
    • First alpha version released

    2008

    • Release first public 0.1.0 version

    2009

    • 50,000 websites use Matomo

    2010

    • Matomo first stable 1.0.0 released
    • Mobile app launched

    2011

    • Released Ecommerce Analytics, Custom Variables, First Party Cookies

    • Released Privacy control features (first of many privacy features to come !)

    2012

    • Released Log Analytics feature
    • 1 Million Downloads !
    • 300,000 websites worldwide use Matomo

    2013

    • Matomo is now available in 50 languages !
    • Matomo brand redesign

    2016

    2017

    • Launched Matomo Cloud service 
    • Released Multi Channel Conversion Attribution Premium Feature, Custom Reports Premium Feature, Login Saml Premium Feature, WooCommerceAnalytics Premium Feature and Heatmap & Session Recording Premium Feature 

    2018

    2019

    2020

    2021

    • 1,000,000 websites worldwide use Matomo
    • including 30,000 active Matomo for WordPress installations
    • Released SEO Web Vitals, Advertising Conversion Export and Tracking Spam Prevention feature

    2022

    • Released WP Statistics to Matomo importer

    Our efforts continue

    While we’ve seen incredible growth over the years, our work doesn’t stop there. In fact, we’re only just getting started.

    Today over 55% of the internet continues to use privacy-threatening web analytics solutions, while 1.5% uses Matomo. So there are still great strides to be made to create a more private internet, and joining the Matomo Community is one way to support this movement.

    There are many ways to get involved too, such as :

    So what comes next for Matomo ?

    The future of Matomo is approachable, powerful and flexible. We’re strengthening the customers’ voice, expanding our resources internally (we’re continuously hiring !) and conducting rigorous customer research to craft a tool that balances usability and functionality.

    I look forward to the next 15 years and seeing what the future holds for Matomo and our community.

  • Strange problem with inotifywait, while do and ffmpeg

    27 juillet 2022, par cluelessdev

    Linux Mint 20.3 up to date.&#xA;I'd like to convert and rename with ffmpeg some files which appear in a folder.&#xA;When not using the ffmpeg line everything works fine (note ffmpeg is commented out here)&#xA;`

    &#xA;

    #!/bin/bash&#xA;rm flist.txt&#xA;watchdir=/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/&#xA;startdate=54&#xA;starttime=32&#xA;while read -r fullpath &#xA;do&#xA;    echo "fullpath &#x27;$fullpath&#x27;" >> flist.txt&#xA;        lenght=${#fullpath}&#xA;    echo &#x27;lenght &#x27; $lenght >> flist.txt &#xA;    basedate=${fullpath:lenght-startdate:4}${fullpath:lenght-startdate&#x2B;5:2}${fullpath:lenght-startdate&#x2B;8:2}&#xA;    basetime=${fullpath:lenght-starttime:2}${fullpath:lenght-starttime&#x2B;3:2}${fullpath:lenght-starttime&#x2B;6:2} &#xA;    echo basedate "&#x27;$basedate&#x27;" >> flist.txt&#xA;    echo basetime "&#x27;$basetime&#x27;" >> flist.txt&#xA;    newfilename="/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/test2/recordings-convert/"$basedate"-"$basetime"-doorcam".mkv&#xA;    # ffmpeg -y -i $fullpath -c:v copy -movflags &#x2B;faststart $newfilename &amp;> /dev/null&#xA;done &lt; &lt;(inotifywait -m -r "$watchdir" --format &#x27;%w%f&#x27; -e create -e moved_to | grep &#x27;\.dav$&#x27; --line-buffered)&#xA;

    &#xA;

    This does produce the desired result without ffmeg conversion :

    &#xA;

    $cat flist.txt&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/00/00.01.33-00.01.55[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;000133&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/00/00.29.26-00.29.48[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;002926&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/00/00.33.09-00.33.32[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;003309&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/02/02.23.35-02.23.56[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;022335&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/02/02.27.19-02.27.40[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;022719&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/04/04.08.22-04.08.43[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;040822&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/06/06.50.14-06.50.40[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;065014&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/06/06.50.43-06.51.28[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;065043&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/06/06.56.56-06.58.02[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;065656&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/09/09.18.31-09.19.09[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;091831&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/09/09.47.54-09.55.00[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;094754&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/09/09.55.00-09.55.50[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;095500&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/10/10.20.23-10.20.44[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;102023&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/10/10.24.24-10.24.44[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;102424&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/11/11.00.39-11.01.34[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;110039&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/13/13.26.22-13.26.53[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;132622&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/16/16.00.09-16.01.04[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;160009&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/16/16.38.46-16.39.15[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;163846&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/16/16.56.05-16.56.30[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;165605&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/16/16.56.30-16.57.05[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;165630&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/19/19.24.56-19.25.33[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;192456&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/19/19.51.13-19.52.00[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;195113&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/19/19.52.37-19.53.10[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;195237&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/20/20.05.29-20.06.02[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;200529&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/20/20.26.44-20.27.38[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;202644&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/20/20.35.20-20.35.41[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;203520&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/20/20.38.57-20.39.17[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;203857&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/20/20.40.49-20.41.11[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;204049&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/20/20.44.27-20.44.47[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;204427&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/20/20.49.09-20.49.46[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;204909&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/20/20.51.09-20.51.58[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;205109&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/22/22.33.25-22.33.46[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;223325&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/22/22.38.48-22.39.10[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;223848&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/22/22.50.14-22.50.35[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;225014&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/23/23.04.43-23.05.03[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;230443&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/23/23.08.18-23.08.40[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;230818&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/23/23.19.51-23.20.11[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;231951&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/23/23.23.27-23.23.48[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;232327&#x27;&#xA;

    &#xA;

    `&#xA;If I remove the comment and do the ffmpeg thing it fails for some files because $fullpath is wrong :

    &#xA;

    $cat flist.txt&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/00/00.01.33-00.01.55[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;000133&#x27;&#xA;fullpath &#x27;media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/00/00.29.26-00.29.48[M][0@0][0].dav&#x27;&#xA;lenght  118&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;002926&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/00/00.33.09-00.33.32[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;003309&#x27;&#xA;fullpath &#x27;media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/02/02.23.35-02.23.56[M][0@0][0].dav&#x27;&#xA;lenght  118&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;022335&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/02/02.27.19-02.27.40[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;022719&#x27;&#xA;fullpath &#x27;media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/04/04.08.22-04.08.43[M][0@0][0].dav&#x27;&#xA;lenght  118&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;040822&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/06/06.50.14-06.50.40[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;065014&#x27;&#xA;fullpath &#x27;media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/06/06.50.43-06.51.28[M][0@0][0].dav&#x27;&#xA;lenght  118&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;065043&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/06/06.56.56-06.58.02[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;065656&#x27;&#xA;fullpath &#x27;edia/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/09/09.18.31-09.19.09[M][0@0][0].dav&#x27;&#xA;lenght  117&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;091831&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/09/09.47.54-09.55.00[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;094754&#x27;&#xA;fullpath &#x27;1/dav/09/09.55.00-09.55.50[M][0@0][0].dav&#x27;&#xA;lenght  41&#xA;basedate &#x27;][0@][].&#x27;&#xA;basetime &#x27;095500&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/10/10.20.23-10.20.44[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;102023&#x27;&#xA;fullpath &#x27;media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/10/10.24.24-10.24.44[M][0@0][0].dav&#x27;&#xA;lenght  118&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;102424&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/11/11.00.39-11.01.34[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;110039&#x27;&#xA;fullpath &#x27;edia/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/13/13.26.22-13.26.53[M][0@0][0].dav&#x27;&#xA;lenght  117&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;132622&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/16/16.00.09-16.01.04[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;160009&#x27;&#xA;fullpath &#x27;dia/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/16/16.38.46-16.39.15[M][0@0][0].dav&#x27;&#xA;lenght  116&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;163846&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/16/16.56.05-16.56.30[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;165605&#x27;&#xA;fullpath &#x27;media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/16/16.56.30-16.57.05[M][0@0][0].dav&#x27;&#xA;lenght  118&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;165630&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/19/19.24.56-19.25.33[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;192456&#x27;&#xA;fullpath &#x27;edia/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/19/19.51.13-19.52.00[M][0@0][0].dav&#x27;&#xA;lenght  117&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;195113&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/19/19.52.37-19.53.10[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;195237&#x27;&#xA;fullpath &#x27;edia/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/20/20.05.29-20.06.02[M][0@0][0].dav&#x27;&#xA;lenght  117&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;200529&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/20/20.26.44-20.27.38[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;202644&#x27;&#xA;fullpath &#x27;edia/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/20/20.35.20-20.35.41[M][0@0][0].dav&#x27;&#xA;lenght  117&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;203520&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/20/20.38.57-20.39.17[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;203857&#x27;&#xA;fullpath &#x27;media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/20/20.40.49-20.41.11[M][0@0][0].dav&#x27;&#xA;lenght  118&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;204049&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/20/20.44.27-20.44.47[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;204427&#x27;&#xA;fullpath &#x27;media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/20/20.49.09-20.49.46[M][0@0][0].dav&#x27;&#xA;lenght  118&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;204909&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/20/20.51.09-20.51.58[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;205109&#x27;&#xA;fullpath &#x27;edia/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/22/22.33.25-22.33.46[M][0@0][0].dav&#x27;&#xA;lenght  117&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;223325&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/22/22.38.48-22.39.10[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;223848&#x27;&#xA;fullpath &#x27;media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/22/22.50.14-22.50.35[M][0@0][0].dav&#x27;&#xA;lenght  118&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;225014&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/23/23.04.43-23.05.03[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;230443&#x27;&#xA;fullpath &#x27;media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/23/23.08.18-23.08.40[M][0@0][0].dav&#x27;&#xA;lenght  118&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;230818&#x27;&#xA;fullpath &#x27;/media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/23/23.19.51-23.20.11[M][0@0][0].dav&#x27;&#xA;lenght  119&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;231951&#x27;&#xA;fullpath &#x27;media/mark/d1d75ed6-f3a5-433b-9090-d95191275f6c/download/camera/2022-06-11/001/dav/23/23.23.27-23.23.48[M][0@0][0].dav&#x27;&#xA;lenght  118&#xA;basedate &#x27;20220611&#x27;&#xA;basetime &#x27;232327&#x27;&#xA;

    &#xA;

    So why does it fail when ffmpeg is not commented out ?

    &#xA;

    Follow-up : found this post

    &#xA;

    https://unix.stackexchange.com/questions/241535/problem-with-ffmpeg-in-bash-loop

    &#xA;

    I think this relates to my problem but I don't know how to change my code accordingly.

    &#xA;

    Edit2, I think I found the solution

    &#xA;

    ffmpeg -y -i $fullpath -c:v copy -movflags &#x2B;faststart $newfilename &lt; /dev/null &amp;> /dev/null;&#xA;

    &#xA;

  • ffmpeg extracting frames from a 60 fps video

    15 juillet 2022, par ggt bnd

    I would like to extract frames from a 60 fps video, all of them I used the ffmpeg code&#xA;sevral times on lower fps videos&#xA;' ffmpeg -i test.mp4 -qscale:v 1 -qmin 1 -qmax 1 -vsync 0 tmp_frames/frame%08d.jpg "&#xA;and it works just fine, knowing that the default fps is 24&#xA;how can I change it so it extract at 60 fps&#xA;ffmpeg version " ffmpeg-2022-07-06-git-03d81a044a-full_build "

    &#xA;