Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (21)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (6659)

  • multichannel (dolby digital, DTS, ecc.) delay difference on original master

    17 janvier 2017, par esposito

    I have different flac files with 6/8 channels (this is the audio of movie) and I need to mix with ffmpeg part of rear channels with front channels and sometimes viceversa.

    There is no problem do it the operation work with an automate software.

    But I’am sure there is a phase difference beetween front channels and rear channels and I like to add a delay to compensate this difference (when I listen it is clear there is a phase offset and this degrade the result).

    I don’t have an idea about how many milliseconds I need to add to compensate and what channel and if the difference is negative or positive.

    Someone can help me please to understand approximately what are the range of delay for each channel (a table is very useful) ?

    Thank you !!

  • Evolution #3892 (Nouveau) : Différence de tri entre {id_patate IN ...} et {id_patate ?}

    24 janvier 2017, par tcharlss (*´_ゝ`)

    Avec un critère {id_patate IN ...}, le compilateur ajoute un ORDER BY FIELD(id_patate,...) à la requête, du coup les résultats sont triés dans l’ordre du IN : joie.
    En revanche, avec un critère optionnel {id_patate?} et un array dans l’environnement, ça fait bien un IN dans la requête par contre il n’y a pas ORDER BY et on perd l’ordre de tri : tristesse.

    Dans les 2 cas, on devrait avoir cet ORDER BY FIELD fort pratique.

    Exemples :


    SELECT articles.id_article, articles.lang, articles.titre
    FROM spip_articles AS `articles`
    WHERE (articles.statut = ’publie’)
        AND ((articles.id_article  IN (3,1,2)))
    ORDER BY FIELD(articles.id_article,3,1,2)
    
    SELECT articles.id_article, articles.lang, articles.titre
    FROM spip_articles AS `articles`
    WHERE (articles.statut = ’publie’)
        AND ((articles.id_article  IN (3,1,2)))
    

    Testé en SPIP 3.1.3

  • avfilter/af_astats : add RMS difference too

    12 mai 2017, par Paul B Mahol
    avfilter/af_astats : add RMS difference too
    

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] doc/filters.texi
    • [DH] libavfilter/af_astats.c