Recherche avancée

Médias (0)

Mot : - Tags -/médias

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (53)

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (5883)

  • intrax8 : Use local destination buffers

    20 février 2016, par Vittorio Giovara
    intrax8 : Use local destination buffers
    

    These buffers are just a way to store frame pointers and be able to
    modify them without touching the original ones.

    The two dependent decoders (WMV2 and VC1) do not need special care for
    these fields : the former does not seem to use the dest buffers, while
    the latter reinits them every time to the current frame data buffers.

    So only keep a local copy rather than the one from mpegvideo.

    • [DBH] libavcodec/intrax8.c
    • [DBH] libavcodec/intrax8.h
  • creating simple DVD structure ?

    24 mars 2016, par Rambo Actionha

    I’m trying to make a DVD builder using C# , and I know that DVD’s have a specific structure which I tried to find and I couldn’t see any thing helpful , however , I found some half-completed posts about this structure , which indicate the following :

    • all DVD videos must be in ’.VOB’ format
    • all DVD Videos must be in a folder named "VIDEO_TS" and DVD audios in a folder named "AUDIO_TS" (specifically)
    • "VIDEO_T" and "AUDIO_TS" must be burned to a DVD disk that follows a special filesystem called [UDF][1]

    My question is If I managed to convert my video to suitable ".VOB" format , then I burn it to a disk after adding it to those folders , would it be playable in any DVD player ? I mean is this enough to have a simple DVD disk , and if it wouldn’t .. what would be the simplest DVD structure I can make ( without menus and chapters and other extra stuff ) ? any links related to DVD would be great

  • lavc/aacenc_utils : replace powf(x,y) by expf(logf(x), y)

    8 mars 2016, par Ganesh Ajjanagadde
    lavc/aacenc_utils : replace powf(x,y) by expf(logf(x), y)
    

    This is 2x faster for y not an integer on Haswell+GCC, and should
    generally be faster due to the fact that anyway powf essentially does
    this under the hood. Made an inline function in lavu/internal.h for this
    purpose.

    Note that there are some accuracy differences, that should generally be
    negligible. In particular, FATE still passes on this platform.

    Results in 7% speedup in aac encoding with -march=native, Haswell+GCC.
    before :
    ffmpeg -i sin.flac -acodec aac -y sin_new.aac 6.05s user 0.06s system 104% cpu 5.821 total

    after :
    ffmpeg -i sin.flac -acodec aac -y sin_new.aac 5.67s user 0.03s system 105% cpu 5.416 total

    This is also faster than an alternative approach that pulls in powf, gets rid of
    the crufty NaN checks and other special cases, exploits knowledge about the intervals, etc.
    This of course does not exclude smarter approaches ; just suggests that
    there would need to be significant work on this front of lower utility than
    searches for hotspots elsewhere.

    Reviewed-by : Reimar Döffinger <Reimar.Doeffinger@gmx.de>
    Reviewed-by : Ronald S. Bultje <rsbultje@gmail.com>
    Signed-off-by : Ganesh Ajjanagadde <gajjanag@gmail.com>

    • [DH] libavcodec/aacenc_utils.h
    • [DH] libavutil/internal.h