Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (53)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • Set background colour when converting flv to mp4 with ffmpeg

    28 août 2012, par Castles

    I'm attempting to convert flv files (with an alpha channel) that are uploaded to a server to html5 compatible formats. I've got the conversion working but the transparency is rendered as black. What I would like to do is have the ability to specify a colour.

    Is it possible to convert the video and specify the colour ?

    Alternatively, am I able to overlay the video with transparency on a still image that I generate ?

    Update
    I may of solved my own question... Here is my ffmpeg command :

    `ffmpeg -loop_input -f image2 -i background.png -r 25 -t 10 -an -level 21 -refs 2 -b 345k -bt 345k -acodec libfaac -vcodec libx264 -ac 2 -ab 96k -ar 44100 -vf "movie=input.flv, scale=370:500 [logo]; [in][logo] overlay=0:0 [out]" -y -threads 0 output.mp4`

    Which works.. I just need to generate a background image at the right dimensions on the server before converting.

  • ffmpeg streaming multiple avi files as created

    2 janvier 2013, par aboredprogrammer

    Backstory :
    I have a VB.net program (that is using a much older COM object accessing a DVR) to create sequentially numbered AVI files each 15 seconds in length. A new AVI is created every 15 seconds with the most recent 15 seconds of video in it. I know the exact datetime that correlates to each file. So files may be named (20121008-133445.avi, so yyyyMMdd-hhmmss.avi).

    Question : Using ffmpeg/ffserver (preferably but I'm open), how can I create a stream such that when a person accesses it that they are presented a continuous video that starts at a position that is as recent as possible and continues to stream the avi files as they are created ?

    I don't have a problem shipping these files off to a Linux box via a samba share (or have the linux box access a share on the windows box) if Linux is more capable. I am however stuck with Windows for the actual generation of the original AVI files.

    The ultimate goal is to be able to view these streams on an iPad, but that process seems pretty well documented elsewhere.

    I found a question that reads similar to my needs but didn't seem to go anywhere : FFmpeg make mpeg2 ts without discontinuity

    Thanks in advance !

  • How to tell if ffmpeg errored or not ?

    12 juin 2015, par dvdmn

    The Situation :
    I’m using ffmpeg (via .net) to save video files. I can get the output from ffmpeg but I dont know how can I customize the output to have better result.

    My Problem :
    My problem is, there is no certain difference between successful and failed operation.

    last line of success :

    video:1006kB audio:134kB subtitle:0 global headers:0kB muxing overhead 0.943510%

    last lines from fails

    c :\x\test-9-8/30/2012-9:29:56-AM.mp4 : Invalid argument

    rtmp ://cdn.tv/cdn-live39/definst/stream01 : Unknown error occurred

    My Question :
    Is there an option (or command line parameter) to add some sort of return code (200 : success, 500 : error, etc)

    Thanks !

    PS : I saw this topic How to tell if ffmpeg errored ? but there is no number before/after last line. I think the last version doesnt have number anymore.