Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (100)

  • 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 les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (7109)

  • avformat/mov_chan : use the newly added channel ids for more exact mapping

    3 juin 2024, par Marton Balint
    avformat/mov_chan : use the newly added channel ids for more exact mapping
    

    Also make the iso_channel_position table consistent with what the AAC decoder
    uses in avcodec/aac/aacdec_usac.c.

    Fate changes are caused by the change of how 7.1 layout is mapped, previously
    it included Side Surround channels, now it includes the Surround channels.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/mov_chan.c
    • [DH] tests/ref/fate/mov-mp4-pcm
  • Reconstuct a video in exact same fps and bitrate as it was split

    4 octobre 2018, par ishandutta2007

    This is how I had split into frames(jpg),

    ffmpeg -i myvid.mp4 frame%05d.jpg -hide_banner

    This is how I am trying to reconstruct(mp4),

    ffmpeg -r 1/5 -i frame%05d.jpg -c:v libx264 -vf fps=25 -pix_fmt yuv420p myvid_recons.mp4

    But I am finding the recombined video is slow by a factor of 150x.
    I tries to expremint with fps optiob but found no improvement.

  • Can I know the exact timestamps of a ffmpeg trim ?

    17 juin 2021, par Vincent Garcia

    I want to trim very long video (e.g. >20h long) and I use ffmpeg this way :

    &#xA;

    ffmpeg -ss 7200 -i /path/to/my/video.mp4 -t 600 -codec copy out.mp4&#xA;

    &#xA;

    This is supposed to provide a trim of 10 minutes starting 2 hours in the input video.&#xA;As I read online, by placing -ss before the -i option, I'll get an approximate trim.

    &#xA;

    Is there a way to know precisely when the trim actually started ?

    &#xA;

    Thank you.

    &#xA;