Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (111)

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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • De près ou de loin...

    29 avril 2011, par

    Ils ne le savent pas forcément mais sont indispensables
    MediaSPIP est un logiciel open-source, il se base sur d’autres logiciels, et d’autres logiciels lui sont également nécessaires pour fonctionner ... Les personnes ici listées ne savent pas forcément qu’elles ont un rôle important dans le développement, elles ont apporté leur connaissances dans le cadre de la création d’une partie de ces éléments nécessaires ou ont écrit des articles permettant de comprendre certaines choses... il semble indispensable (...)

Sur d’autres sites (4118)

  • "Non-monotonous DTS in output stream 0:0 This may result in incorrect timestamps in the output file." error

    1er août 2019, par petaire

    I’m trying to go from .mkv to .mp4 through ffmpeg. Normally I would use

    ffmpeg -i $1 -codec copy -strict -2 $2

    But on this particular file, I get this error, like, A LOT :

    Non-monotonous DTS in output stream 0:0; previous: 49189232, current: 49189232; changing to 49189233. This may result in incorrect timestamps in the output file.

    I guess it has something to do with the DTS :

    [mp4 @ 0x7f8b14001200] Invalid DTS: 14832 PTS: 13552 in output stream 0:0, replacing by guess
    [mp4 @ 0x7f8b14001200] Invalid DTS: 15472 PTS: 12272 in output stream 0:0, replacing by guess

    I would not care if the result was ok, but the sound is out of sync, and the video is "stuttering". Feels like everything is out of sync.

    I’ve tried a lot of things, including -async 1 -vsync 1 , but nothing seems to work.

    Here’s some mediainfo :

    Complete name                            : /Users/petaire/Desktop/CNEWS-2019-07-23_16-00-00h.mkv
    Format                                   : Matroska
    Format version                           : Version 2
    File size                                : 1.19 GiB
    Movie name                               : Time-2019-07-23_16:00
    Writing application                      : Tvheadend 4.3-1801~g7f952c2ed
    Writing library                          : Tvheadend Matroska muxer
    Original source form                     : TV
    Comment                                  : Time recording
    IsTruncated                              : Yes
    DATE_BROADCASTED                         : 2019-07-23 16:00:00

    Video
    ID                                       : 1
    Format                                   : AVC
    Format/Info                              : Advanced Video Codec
    Format profile                           : High@L4
    Format settings                          : CABAC / 4 Ref Frames
    Format settings, CABAC                   : Yes
    Format settings, ReFrames                : 4 frames
    Codec ID                                 : V_MPEG4/ISO/AVC
    Width                                    : 1 920 pixels
    Height                                   : 1 080 pixels
    Display aspect ratio                     : 16:9
    Frame rate mode                          : Constant
    Frame rate                               : 25.000 fps
    Standard                                 : Component
    Color space                              : YUV
    Chroma subsampling                       : 4:2:0
    Bit depth                                : 8 bits
    Scan type                                : MBAFF
    Scan type, store method                  : Interleaved fields
    Scan order                               : Top Field First
    Language                                 : English
    Default                                  : Yes
    Forced                                   : No
    Color range                              : Limited
    Color primaries                          : BT.709
    Transfer characteristics                 : BT.709
    Matrix coefficients                      : BT.709

    Audio
    ID                                       : 2
    Format                                   : E-AC-3
    Format/Info                              : Enhanced AC-3
    Commercial name                          : Dolby Digital Plus
    Codec ID                                 : A_EAC3
    Bit rate mode                            : Constant
    Bit rate                                 : 128 Kbps
    Channel(s)                               : 2 channels
    Channel layout                           : L R
    Sampling rate                            : 48.0 KHz
    Frame rate                               : 31.250 fps (1536 SPF)
    Compression mode                         : Lossy
    Delay relative to video                  : -757ms
    Language                                 : French
    Service kind                             : Complete Main
    Default                                  : Yes
    Forced                                   : No

    Text
    ID                                       : 3
    Format                                   : DVB Subtitle
    Codec ID                                 : S_DVBSUB
    Codec ID/Info                            : Picture based subtitle format used on DVBs
    Language                                 : French
    Default                                  : Yes
    Forced                                   : No

    Any idea ?

  • Trying to capture display output for real-time analysis with OpenCV ; I need help with interfacing with the OS for input

    26 juillet 2024, par mirari

    I want to apply operations from the OpenCV computer vision library, in real time, to video captured from my computer display.
The idea in this particular case is to detect interesting features during gameplay in a popular game and provide the user with an enhanced experience ; but I could think of several other scenarios where one would want to have live access to this data as well. 
At any rate, for the development phase it might be acceptable using canned video, but for the final application performance and responsiveness are obviously critical.

    



    I am trying to do this on Ubuntu 10.10 as of now, and would prefer to use a UNIX-like system, but any options are of interest.
My C skills are very limited, so whenever talking to OpenCV through Python is possible, I try to use that instead.
Please note that I am trying to capture NOT from a camera device, but from a live stream of display output ; and I'm at a loss as to how to take the input. As far as I can tell, CaptureFromCAM works only for camera devices, and it seems to me that the requirement for real-time performance in the end result makes storage in file and reading back through CaptureFromFile a bad option.

    



    The most promising route I have found so far seems to be using ffmpeg with the x11grab option to capture from an X11 display ;
(e.g. the command
ffmpeg -f x11grab -sameq -r 25 -s wxga -i :0.0 out.mpg
captures 1366x768 of display 0 to 'out.mpg').
I imagine it should be possible to treat the output stream from ffmpeg as a file to be read by OpenCV (presumably by using the CaptureFromFile function) maybe by using pipes ; but this is all on a much higher level than I have ever dealt with before and I could really use some directions. 
Do you think this approach is feasible ? And more importantly can you think of a better one ? How would you do it ?

    


  • A Guide to App Analytics Tools that Drive Growth

    7 mars, par Daniel Crough — App Analytics

    Mobile apps are big business, generating £438 billion in global revenue between in-app purchases (38%) and ad revenue (60%). And with 96% of apps relying on in-app monetisation, the competition is fierce.

    To succeed, app developers and marketers need strong app analytics tools to understand their customers’ experiences and the effectiveness of their development efforts.

    This article discusses app analytics, how it works, the importance and benefits of mobile app analytics tools, key metrics to track, and explores five of the best app analytics tools on the market.

    What are app analytics tools ?

    Mobile app analytics tools are software solutions that provide insights into how users interact with mobile applications. They track user behaviour, engagement and in-app events to reveal what’s working well and what needs improvement.

    Insights gained from mobile app analytics help companies make more informed decisions about app development, marketing campaigns and monetisation strategies.

    What do app analytics tools do ?

    App analytics tools embed a piece of code, called a software development kit (SDK), into an app. These SDKs provide the essential infrastructure for the following functions :

    • Data collection : The SDK collects data within your app and records user actions and events, like screen views, button clicks, and in-app purchases.
    • Data filtering : SDKs often include mechanisms to filter data, ensuring that only relevant information is collected.
    • Data transmission : Once collected and filtered, the SDK securely transmits the data to an analytics server. The SDK provider can host this server (like Firebase or Amplitude), or you can host it on-premise.
    • Data processing and analysis : Servers capture, process and analyse large stores of data and turn it into useful information.
    • Visualisation and reporting : Dashboards, charts and graphs present processed data in a user-friendly format.
    Schematics of how mobile app analytics tools work

    Six ways mobile app analytics tools fuel marketing success and drive product growth

    Mobile app analytics tools are vital in driving product development, enhancing user experiences, and achieving business objectives.

    #1. Improving user understanding

    The better a business understands its customers, the more likely it is to succeed. For mobile apps, that means understanding how and why people use them.

    Mobile analytics tools provide detailed insights into user behaviours and preferences regarding apps. This knowledge helps marketing teams create more targeted messaging, detailed customer journey maps and improve user experiences.

    It also helps product teams understand the user experience and make improvements based on those insights.

    For example, ecommerce companies might discover that users in a particular area are more likely to buy certain products. This allows the company to tailor its offers and promotions to target the audience segments most likely to convert.

    #2 Optimising monetisation strategies for increased revenue and user retention

    In-app purchases and advertising make up 38% and 60% of mobile app revenue worldwide, respectively. App analytics tools provide insights companies need to optimise app monetisation by :

    • Analysing purchase patterns to identify popular products and understand pricing sensitivities.
    • Tracking in-app behaviour to identify opportunities for enhancing user engagement.

    App analytics can track key metrics like visit duration, user flow, and engagement patterns. These metrics provide critical information about user experiences and can help identify areas for improvement.

    How meaningful are the impacts ?

    Duolingo, the popular language learning app, reported revenue growth of 45% and an increase in daily active users (DAU) of 65% in its Q4 2023 financial report. The company attributed this success to its in-house app analytics platform.

    Duolingo logo showing statistics of growth from 2022 to 2023, in part thanks to an in-house app analytics tool.

    #3. Understanding user experiences

    Mobile app analytics tools track the performance of user interactions within your app, such as :

    • Screen views : Which screens users visit most frequently
    • User flow : How users navigate through your app
    • Session duration : How long users spend in your app
    • Interaction events : Which buttons, features, and functions users engage with most

    Knowing how users interact with your app can help refine your approach, optimise your efforts, and drive more conversions.

    #4. Personalising user experiences

    A recent McKinsey survey showed that 71% of users expect personalised app experiences. Product managers must stay on top of this since 76% of users get frustrated if they don’t receive the personalisation they expect.

    Personalisation on mobile platforms requires data capture and analysis. Mobile analytics platforms can provide the data to personalise the user onboarding process, deliver targeted messages and recommend relevant content or offers.

    Spotify is a prime example of personalisation done right. A recent case study by Pragmatic Institute attributed the company’s growth to over 500 million active daily users to its ability to capture, analyse and act on :

    • Search behaviour
    • Individual music preferences
    • Playlist data
    • Device usage
    • Geographical location

    The streaming service uses its mobile app analytics software to turn this data into personalised music recommendations for its users. Spotify also has an in-house analytics tool called Spotify Premium Analytics, which helps artists and creators better understand their audience.

    #5. Enhancing app performance

    App analytics tools can help identify performance issues that might be affecting user experience. By monitoring metrics like load time and app performance, developers can pinpoint areas that need improvement.

    Performance optimisation is crucial for user retention. According to Google research, 53% of mobile site visits are abandoned if pages take longer than three seconds to load. While this statistic refers to websites, similar principles apply to apps—users expect fast, responsive experiences.

    Analytics data can help developers prioritise performance improvements by showing which screens or features users interact with most frequently, allowing teams to focus their optimisation efforts where they’ll have the greatest impact.

    #6. Identifying growth opportunities

    App analytics tools can reveal untapped opportunities for growth by highlighting :

    • Features users engage with most
    • Underutilised app sections that might benefit from redesign
    • Common user paths that could be optimised
    • Moments where users tend to drop off

    This intelligence helps product teams make data-informed decisions about future development priorities, feature enhancements, and potential new offerings.

    For example, a streaming service might discover through analytics that users who create playlists have significantly higher retention rates. This insight could lead to development of enhanced playlist functionality to encourage more users to create them, ultimately boosting overall retention.

    Key app metrics to track

    Using mobile analytics tools, you can track dozens of key performance indicators (KPIs) that measure everything from customer engagement to app performance. This section focuses on the most important KPIs for app analytics, classified into three categories :

    • App performance KPIs
    • User engagement KPIs
    • Business impact KPIs

    While the exact metrics to track will vary based on your specific goals, these fundamental KPIs form the foundation of effective app analytics.

    Mobile App Analytics KPIs

    App performance KPIs

    App performance metrics tell you whether an app is reliable and operating properly. They help product managers identify and address technical issues that may negatively impact user experiences.

    Some key metrics to assess performance include :

    • Screen load time : How quickly screens load within your app
    • App stability : How often your app crashes or experiences errors
    • Response time : How quickly your app responds to user interactions
    • Network performance : How efficiently your app handles data transfers

    User engagement KPIs

    Engagement KPIs provide insights into how users interact with an app. These metrics help you understand user behaviour and make UX improvements.

    Important engagement metrics include :

    • Returning visitors : A measure of how often users return to an app
    • Visit duration : How long users spend in your app per session
    • User flow : Visualisation of the paths users take through your app, offering insights into navigation patterns
    • Event tracking : Specific interactions users have with app elements
    • Screen views : Which screens are viewed most frequently

    Business impact KPIs

    Business impact KPIs connect app analytics to business outcomes, helping demonstrate the app’s value to the organisation.

    Key business impact metrics include :

    • Conversion events : Completion of desired actions within your app
    • Goal completions : Tracking when users complete specific objectives
    • In-app purchases : Monitoring revenue from within the app
    • Return on investment : Measuring the business value generated relative to development costs

    Privacy and app analytics : A delicate balance

    While app analytics tools can be a rich source of user data, they must be used responsibly. Tracking user in-app behaviour and collecting user data, especially without consent, can raise privacy concerns and erode user trust. It can also violate data privacy laws like the GDPR in Europe or the OCPA, FDBR and TDPSA in the US.

    With that in mind, it’s wise to choose user-tracking tools that prioritise user privacy while still collecting enough data for reliable analysis.

    Matomo is a privacy-focused web and app analytics solution that allows you to collect and analyse user data while respecting user privacy and following data protection rules like GDPR.

    The five best app analytics tools to prove marketing value

    In this section, we’ll review the five best app analytics tools based on their features, pricing and suitability for different use cases.

    Matomo — Best for privacy-compliant app analytics

    Matomo app analytics is a powerful, open-source platform that prioritises data privacy and compliance.

    It offers a suite of features for tracking user engagement and conversions across websites, mobile apps and intranets.

    Key features

    • Complete data ownership : Full control over your analytics data with no third-party access
    • User flow analysis : Track user journeys across different screens in your app
    • Custom event tracking : Monitor specific user interactions with customisable events
    • Ecommerce tracking : Measure purchases and product interactions
    • Goal conversion monitoring : Track completion of important user actions
    • Unified analytics : View web and app analytics in one platform for a complete digital picture

    Benefits

    • Eliminate compliance risks without sacrificing insights
    • Get accurate data with no sampling or data manipulation
    • Choose between self-hosting or cloud deployment
    • Deploy one analytics solution across your digital properties (web and app) for a single source of truth

    Pricing

    PlanPrice
    CloudStarts at £19/month
    On-PremiseFree

    Matomo is a smart choice for businesses that value data privacy and want complete control over their analytics data. It’s particularly well-suited for organisations in highly regulated industries, like banking.

    While Matomo’s app analytics features focus on core analytics capabilities, its privacy-first approach offers unique advantages. For organisations already using Matomo for web analytics, extending to mobile creates a unified analytics ecosystem with consistent privacy standards across all digital touchpoints, giving organisations a complete picture of the customer journey.

    Firebase — Best for Google services integration

    Firebase is the mobile app version of Google Analytics. It’s the most popular app analytics tool on the market, with over 99% of Android apps and 77% of iOS apps using Firebase.

    Firebase is popular because it works well with other Google services. It also has many features, like crash reporting, A/B testing and user segmentation.

    Pricing

    PlanPrice
    SparkFree
    BlazePay-as-you-go based on usage
    CustomBespoke pricing for high-volume enterprise users

    Adobe Analytics — Best for enterprise app analytics

    Adobe Analytics is an enterprise-grade analytics solution that provides valuable insights into user behaviour and app performance.

    It’s part of the Adobe Marketing Cloud and integrates easily with other Adobe products. Adobe Analytics is particularly well-suited for large organisations with complex analytics needs.

    Pricing

    PlanPrice
    SelectPricing on quote
    PrimePricing on quote
    UltimatePricing on quote

    While you must request a quote for pricing, Scandiweb puts Adobe Analytics at £2,000/mo–£2,500/mo for most companies, making it an expensive option.

    Apple App Analytics — Best for iOS app analysis

    Apple App Analytics is a free, built-in analytics tool for iOS app developers.

    This analytics platform provides basic insights into user engagement, app performance and marketing campaigns. It has fewer features than other tools on this list, but it’s a good place for iOS developers who want to learn how their apps work.

    Pricing

    Apple Analytics is free.

    Amplitude — Best for product analytics

    Amplitude is a product analytics platform that helps businesses understand user behaviour and build better products.

    It excels at tracking user journeys, identifying user segments and measuring the impact of product changes. Amplitude is a good choice for product managers and data analysts who want to make informed decisions about product development.

    Pricing

    PlanPrice
    StarterFree
    PlusFrom £49/mo
    GrowthPricing on quote

    Choose Matomo’s app analytics to unlock growth

    App analytics tools help marketers and product development teams understand user experiences, improve app performance and enhance products. Some of the best app analytics tools available for 2025 include Matomo, Firebase and Amplitude.

    However, as you evaluate your options, consider taking a privacy-first approach to app data collection and analysis, especially if you’re in a highly regulated industry like banking or fintech. Matomo Analytics offers a powerful and ethical solution that allows you to gain valuable insights while respecting user privacy.

    Ready to take control of your app analytics ? Start your 21-day free trial.