Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (51)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

Sur d’autres sites (9250)

  • configure : Group code that sets the license string with licensing checks

    5 février 2018, par Diego Biurrun
    configure : Group code that sets the license string with licensing checks
    

    This also moves the setting of the licensing string out of a block that
    is skipped when quiet operation is requested.

    • [DBH] configure
  • ffmpeg too long filter complex string

    29 janvier 2018, par user2642511

    I have a video with an actor recorded with a green screen as background

    I want to process that video with ffmpeg in order to have a diferent zooms of it every 3 seconds or every time there is a silence in the video and use chroma to replace the backbround of every 3 seconds section with a diferent background.

    Well I made a program that charmly builds the entire filter string and tryed it with a 6 secods video and it works excelent.

    But when I use it with a 2:30 minutes video the resultant string becames 6608 charracters long, aparently that is too long for command prompt to process it.

    Well, aparently I have to change my strategy

    What would you suggest in order to achieve what I want ?

    My goal is :

    Input green screen video ----> Process ----> Same video with diferent zooms and backgrounds every 3 seconds or every time the actor gets quiet

    Thanks on advance

  • How can start a process and stop the process if "error" string appear in the console output strings in one line commands set

    25 janvier 2018, par Thm Lee

    Now I want one line cmd commands set which start a process and monitor the consol output strings stream. And so if error message appear in the process’s console output, then could stop the process immediately.

    For example, I tried below commends sets, but failed. It seems find command didn’t get any strings streams in which search key word "error"

    ffmpeg "endcoding process options set" | find "error" && exit

    or,

    ffmpeg "endcoding process options set" 2>&1 find "error" && exit

    Is there any solutions about this ?

    Thanks in advance