Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (19)

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

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (3493)

  • How do I stream using ffmpeg ?

    21 juillet 2023, par WhiteWolfDev

    I am trying to build an application that streams a video file (.mkv) to the browser, using the Elixir programming language. It works using .mp4, since browsers only support the WebM container format. My goal is to convert the .mkv file to .mp4, on the fly, while streaming. I'm not sure if its even possible since I couldn't find anything on the internet. Is it possible to have an offset from which the conversion should begin, like if I skipped to the middle of the video ?

    


    Also it's not required to be consistently streaming. It can be delivered in small batches/chunks. As of now I'm using ffmpeg, but I'm open to suggestions.

    


  • ffmpeg How to SCROLL (draw text) on an overlayed image not on the main video

    17 juillet 2020, par Tony Hanna

    i want to draw a scrolling text with left and right margin over an OVERLAYED image .. like let's say a BREAKING NEWS Header and then below it the scrolling text.. but i dont want the scrolling to start at the point 0 .. i wanted to be bound by the image overlay position and margins .. i tried this code :

    


    ffmpeg -re -i lethal.mkv -i template.png -filter_complex "[1:v]drawtext =fontsize=24:fontcolor=white:fontfile='arial.ttf':textfile='test.txt':x=w-mod(max(t-1\,0)*(80)\, 2*(tw+100)):y=10[1v];[0:v][1v]overlay=30:30[over]" -map [over] -c:a copy -c:v libx264 -f mpegts udp://224.2.2.1:1234

    


    when i do that .. the text doesn't show .. or i'm guessing it's showing behind the image .. i don't know ! Any help please

    


  • Broadcast Live Streaming on a website with an added graphical overlay

    14 avril 2016, par Mohit Saini

    I was doing some research on Live Streaming. I want to develop a solution where I will collect live streams from multiple remote cameras on my website, modify the stream with a custom text banner (i.e. we have on news TV channel, football match) at the bottom and broadcast it to all.

    I know there are Flash plugins available for video streaming and editing, but I want to build this web app to be mobile friendly and responsive.

    HTML5 could be used to display multiple video streams on the website, but how can I add a text banner, graphs or any other frame on a running live stream ?