Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (71)

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

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

  • Ffmpeg audio tracks are not missing after trimming using filter_complex

    26 juin 2018, par PN7

    I am trimming a video file having multiple audio tracks using filter complex trim command,

    /usr/bin/ffmpeg -y -i "Sequence1.mxf" -filter_complex "[0:v]trim=start=4.769:end=32.401 setpts = PTS-STARTPTS [V0];[0:a]atrim=start=4.769:end=32.401 asetpts = PTS-STARTPTS [A0]" -map [V0] -map [A0] "otput.mp4"

    But the output will only have one audio track, as I believe this is because ffmpeg will choose one audio track from the input. I am not able to find out how to preserve all the tracks and channels in the output.

  • Video processing and filtering libraries

    17 décembre 2014, par Dalvik

    I’m trying to decide which library to choose in order to create app that can
    filters a video, for example beautify or clarity.

    During my search I came across 2 candidates : OpenCv and FFmpeg, and I found a complete framework only for FFmpeg(so +1 for this).

    I couldn’t found a complete comparision between the two so if someone has tried them and can post the answer it would be really helpful.

    Edit :

    Another candidate is Marvin framework(Java project) for Android - https://code.google.com/p/android-image-filtering/

  • Node Video Transcoder - File System [closed]

    12 avril 2021, par mike varela

    I'm building a node video transcode system using fluent-ffmpeg and express. I'm investigating RabbitMQ as well but in the meantime I'm trying to find out if I'm able to transcode on the LAN without having to upload a file. Basically, this express server will sit internally in our company. Users will hit this via internal IP and a browser. Ideally they could click a button to select a video and then open a path browser to choose the location of the processed file and hit go. In this scenario, they wouldn't need to upload the video to the server for processing and then download the processed version.

    


    I'm wondering if this is possible ?