Recherche avancée

Médias (3)

Mot : - Tags -/Valkaama

Autres articles (67)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (8539)

  • Is there any Android lib that can be used to split mp4 files in the GOP dimension ?

    11 décembre 2024, par Chaojie Mo

    An mp4 file consists of meta information and a set of GOPs. Now i want to split mp4 files in the GOP dimension and then every GOP with meta information is recombined into a new file. Is there any feasible solution ?

    


  • ffmpeg split video by 25 frames per chunk

    15 décembre 2014, par Dmitriy Dumanskiy

    I have videos with all i-frames within it and I would like to split it on small chunks with 25 frames per each. Is it possible with ffmpeg ? FPS for videos are always different, but what I need is exactly 25 frames per every splitted file.

  • 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.