Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (106)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • Determine hardware acceleration support for a machine running libffmpeg via C++

    11 septembre 2023, par Space Bear

    I'm currently trying to find out how to query a Linux system to get find out if it support Hardware accelerated decoding of a specific video codec. (this is a multi codec application and this is part of choosing the best/fastest codec depending on the situation.)

    


    My first inclination is to leverage FFMpeg as we already use it, specifically ff_find_hwaccel. However this is an internal function.

    


    Second idea would be self implementation using av_hwaccel_next but this is deprecated.

    


    Is there an upto date method to query ffmpeg to determine if a codec has hardware acceleration support on the machine it's running on ?

    


  • Using FFprobe to determine if a video uses variable frame rate [closed]

    8 mars 2024, par Marco Mayer

    What is the recommended approach to determine with ffprobe, if a given video file is containing a variable frame rate track or not. Using metadata from ffprobe I fetched those values e.g. :

    


    avg_frame_rate = 384000/43607 // ~ 8.80
r_frame_rate = 30/1  // = 30.00


    


    How to determine if variable frame rate is used ?
Use the difference (r_frame_rate - avg_frame_rate) > 1 e.g. and the denominator in avg_frame_rate is not equal 1 as condition ?

    


  • How Can I Determine the Correct Order to Merge .exo Files into a Single File Using ffmpeg ?

    13 août 2024, par Hiển Hồ

    I need to merge several .exo files collected from an Android app into a single .exo file. You can find the files here : Google Drive link.

    


    I'm planning to use ffmpeg for this task, but I'm unsure of the correct sequence for combining the files. I initially thought the sequence was based on the first number in the file names, but that doesn't seem to be the case.

    


    Can anyone provide advice on how to determine the proper order for merging these files ?