Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (77)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • libavformat/subfile : Improve AVSEEK_SIZE/SEEK_END seeking

    20 juin 2019, par Andreas Rheinhardt
    libavformat/subfile : Improve AVSEEK_SIZE/SEEK_END seeking
    

    The subfile protocol treats an end of 0 as meaning "until EOF" ; this got
    implemented by simply setting the end to INT64_MAX. But seeking relative
    to EOF or AVSEEK_SIZE seeking hasn't been adapted ; the result is that
    e.g. the duration of transport streams isn't correctly determined when
    this option is used. This is fixed in this patch.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/subfile.c
  • Reject multiple headers of the same type.

    7 janvier 2015, par Tim Terriberry
    Reject multiple headers of the same type.
    

    A common application pattern is to call vorbis_synthesis_headerin()
    and count how many times it succeeds.
    If you feed it multiple valid comment headers, they will all
    succeed, meaning you can be fooled into think you have a valid
    Vorbis file despite never seeing a setup header.
    This patch makes libvorbis reject multiple headers of the same type,
    preventing this from occurring.

    git-svn-id : http://svn.xiph.org/trunk/vorbis@19426 0101bb08-14d6-0310-b084-bc0e0c8e3800

    • [DH] lib/info.c
  • Slicing video on several short clips of different lengths in one go

    1er décembre 2019, par Igniter

    I’ve got time codes using which I want to slice a short MP4 video (average length 5-7 minutes)

    [ 0, 15, 35, 52, 142, 215, ...] // time codes in seconds

    Usually there are 5-7 time codes meaning that I need to create 5-7 clips out of my initial video
    The fist clip is from start to 15 sec, the second one is from 15 sec to 35 sec, 35-52, etc.

    It’s trivial operation in Bash but I’m using ffmpeg on NodeJS and I’d like to do it without iteration in one go

    // Slicing a single clip
    ffmpeg -i input.mp4 -ss 0 -to 15 -c copy clip-01.mp4

    // Same command in NodeJS
    ffmpeg(`/tmp/${id}/input.mp4`)
     .renice(5)
     .outputOptions([
       '-ss 0',
       '-to 15',
       '-c copy'
     ])
     .on('end', () => {})
     .on('error', (e, stdout, stderr) => {})
     .save(`/tmp/${id}/clip-01.mp4`);

    No need for re-encoding, no need for precise timestamps (1 second out of sync is OK)
    Any thoughts or ideas would be greatly appreciated !