Recherche avancée

Médias (1)

Mot : - Tags -/ipad

Autres articles (102)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (13791)

  • TS file not playing hls.js

    27 août 2019, par Mark Adrian Estaca

    Need some help. Video loads in browser but never starts playing. I’m using hls.js to stream m3u8 playlist to the browser. And I use FFmpeg to create ts and m3u8 files.

    For FFmpeg :

    ./ffmpeg -rtsp_transport tcp -i rtsp://user:password@ipaddress/axis-media/media.amp -vcodec copy -hls_time 4 -hls_list_size 4 -hls_wrap 4 -start_number 1 -y test.m3u8

    HTML Code :

     
        <code class="echappe-js">&lt;script src=&quot;https://cdn.jsdelivr.net/npm/hls.js@latest&quot;&gt;&lt;/script&gt;

    &lt;script&gt;<br />
        var video = document.getElementById('video');<br />
        if(Hls.isSupported()){<br />
           var hls = new Hls();<br />
           hls.loadSource('/images/live/test.m3u8');<br />
           hls.attachMedia(video);<br />
           hls.on(Hls.Events.MANIFEST_PARSED,function() {<br />
                 video.play();<br />
            });<br />
         }<br />
         else if (video.canPlayType('application/vnd.apple.mpegurl')){<br />
            video.src = '/images/live/test.m3u8';<br />
            video.addEventListener('loadedmetadata',function() {<br />
                 video.play();<br />
            });<br />
         }<br />
      &lt;/script&gt;
  • Audio is not playing properly in ffmpeg player

    10 juillet 2019, par user1241903

    I need to create a player which will decrypt the input on-fly and play the content.
    I have choosen ffmpeg libs (libav*) to create player and to start I have followed this link

    but audio is not playing properly,video is playing fine.
    I am using ubuntu 12.04LTS 64bit OS with the following ffmpeg version,

    admin@vz-X401A1:~$ ffmpeg
    ffmpeg version 2.0 Copyright (c) 2000-2013 the FFmpeg developers
     built on Sep 11 2013 13:46:26 with gcc 4.6 (Ubuntu/Linaro 4.6.3-1ubuntu5)
     configuration: --prefix=/home/admin/ffmpeg_build --extra-cflags=-I/home/admin/ffmpeg_build/include --extra-ldflags=-L/home/admin/ffmpeg_build/lib --bindir=/home/admin/bin --extra-libs=-ldl --enable-gpl --enable-libass --enable-libfdk-aac --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-nonfree --enable-x11grab
     libavutil      52. 43.100 / 52. 43.100
     libavcodec     55. 31.101 / 55. 31.101
     libavformat    55. 16.102 / 55. 16.102
     libavdevice    55.  3.100 / 55.  3.100
     libavfilter     3. 84.100 /  3. 84.100
     libswscale      2.  5.100 /  2.  5.100
     libswresample   0. 17.103 /  0. 17.103
     libpostproc    52.  3.100 / 52.  3.100
    Hyper fast Audio and Video encoder
    usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}...

    Use -h to get full help or, even better, run 'man ffmpeg'
    admin@vz-X401A1:~$

    and downloaded tutorial07.c from this link

    still, with this also, sound is not playing properly.

    I need help to solve the following issues,

    1. How can I fix this audio issue(I have gone through similar question in StackOverflow and installed old ver. of ffmpeg, but issue still remains).

    2. And also suggest some steps or tutorial, how to implement on-fly decryption process (in C) and integrate this with the player.

  • Crash is happening while playing a video where my iOS app is integrated with VideoKit and mobileFFMpeg frameworks

    25 juin 2019, par vinay

    I am using MobileFFMpeg for executing the FFmpeg commands in ios application , As I am using mobileFFMPeg for sending the live stream from ip camera to Azure server ..... And it is working fine

    And the problem is my application is crashing when I integrate the iOS VideoKit with this MobileFFmpeg

    This is the cocoapod that I have used to installed the MobileFFMpeg

    pod 'mobile-ffmpeg-full-gpl', '~> 4.2'

    MobileFFmpeg.execute("-i video.mkv -codec copy video.mp4") ---------- for executing ffmpeg commands

    if(avformat_find_stream_info(_avFmtCtx, opts) &lt; 0) {
       [self setDecoderState:kVKDecoderStateConnectionFailed errorCode:kVKErrorStreamInfoNotFound];
       return kVKErrorStreamInfoNotFound;
    }

    ---------------------------> This is the point where the application is crashing while playing a video with the videoKit framework. :)

    I expect iOS VideoKit with work fine with MobileFFmpeg without any crashes and execute the ffmpeg commands. :)