Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (111)

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

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

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

  • How to mux *only* TTML subtitles into fmp4 file(s)

    25 juin 2021, par Chris

    As of WWDC 2017, HLS on Apple devices has supported TTML (specifically IMSC1)

    


    Subtitles are made available to me in a single XML file, which I wish to slice/package so that it can be distributed alongside the video assets, i.e. as fmp4 fragments containing only the subtitle stream.

    


    (slicing is not strictly required - correct muxing into a single file would be acceptable)

    


    While it feels like something that ffmpeg or mp4box should be capable of doing, documentation for correctly achieving that is proving elusive. Examples, including this one which would perform slicing and m3u8 generation, all assume subtitles are being added to a video asset, rather than packaged to be delivered in parallel.

    


    Any attempt to approximate that, having removed video-specific options only results in errors :

    


    ffmpeg -i subitles.ttml \
    -hls_time 60 \
    -hls_playlist_type vod \
    -hls_segment_type fmp4 \
    -hls_segment_filename "segment%d.m4s" \
    index.m3u8
    
subtitles.ttml: Invalid data found when processing input


    


    Whether this is because the TTML is invalid (although I don't believe that's likely), or because FFmpeg is trying to read it as if it was video, I cannot say.

    


  • avformat/mov : Add support for reading and exporting horizontal field of view

    30 mai 2024, par Derek Buitenhuis
    avformat/mov : Add support for reading and exporting horizontal field of view
    

    These boxes are created by the Apple Vision Pro and the iPhone 15+ when
    capture for the Vision Pro is enabled.

    Based off of the swift API :
    * https://developer.apple.com/documentation/coremedia/kcmformatdescriptionextension_horizontalfieldofview

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] libavformat/mov.c
  • implicit declaration of function 'lseek64' is invalid in C99

    29 mai 2015, par Jerikc XIONG

    I have got the following compile error while compiling the FFmpeg-Vitamio.

    My OS is Mac OS X 10.10.9

    NDK version : android-ndk-r10d

    Gcc version :

    $gcc --version
    Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
    Apple LLVM version 6.0 (clang-600.0.57) (based on LLVM 3.5svn)
    Target: x86_64-apple-darwin14.1.1
    Thread model: posix

    Error message :

    libavformat/fd.c:59:9: error: implicit declaration of function 'lseek64' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
       return lseek64(fd, pos, whence);