Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (98)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

Sur d’autres sites (9618)

  • How to downscale video using subprocess and then piping the data over to stdout and play using ffplay and save it as well

    2 avril 2021, par ZeroDay Fracture

    I am trying to use ffmpeg to downscale a video and pipe the stdout data to ffplay to play the new downsized video by piping it to ffplay on aws lambda.

    


    This is the command I have so far, but for some reason adding a scale option is not working.

    


    I am trying to run this command locally before I deploy it on python with subprocess command. I need the raw video to be able to save into database for streaming the data in realtime.

    


    %ffmpeg -i sample.mp4  -vf scale=240:-2 -f  mpegts -c:v copy -af aresample=async=1:first_pts=0 - | ffplay -

    


    adding the scale optioin for some reason is saving the video as the name scale=240 :-2 which does not make sense.

    


  • Fixed an issue with percent-based heights in iOS

    10 mars 2013, par jackmoore

    m colorbox.jquery.json m component.json m i18n/jquery.colorbox-fr.js m jquery.colorbox-min.js m jquery.colorbox.js Fixed an issue with percent-based heights in iOS Fixed an issue with ajax requests being applied at the wrong (...)

  • using ffmpeg to process webcam data and save it in multiple files

    21 septembre 2017, par Deepak Nellurvalappil

    I am trying to process streaming video data from a usb webcam using ffmpeg. the process involves encoding the raw data into hevc format. Upto this point I am able to do.
    But now, I want to slice the processed data in chunks of 10 seconds and save it in a separate file. This should repeat until I kill/interrupt the process manually.

    ffmpeg -i /dev/video1 -f segment -segment_times 10 -c:v hevc cam_1_%02d.mp4

    the above code does create multiple files but only the first file is readable using vlc ; other files look corrupt.

    And while I was running the command, I could see the following messages :-

    Stream mapping:  Stream #0:0 -> #0:0 (rawvideo (native) -> h264 (libx264)) Press [q] to stop, [?] for help Past duration 0.601555 too largeN/A time=00:00:14.63 bitrate=N/A dup=11 drop=0      Past duration
    0.601463 too large Past duration 0.601555 too largeN/A time=00:00:15.16 bitrate=N/A dup=11 drop=0     Past duration 0.601585 too large
       Last message repeated 1 times Past duration 0.601646 too large Past duration 0.601677 too large Past duration 0.601707 too largeN/A time=00:00:15.66 bitrate=N/A dup=11 drop=0

    What am I missing here ?