Advanced search

Medias (3)

Tag: - Tags -/pdf

Other articles (61)

  • HTML5 audio and video support

    13 April 2011, by

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

  • Support audio et vidéo HTML5

    10 April 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 (...)

  • List of compatible distributions

    26 April 2011, by

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

On other websites (10346)

  • How to tell if ffmpeg errored or not?

    12 June 2015, by 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.

  • ffmpeg time unit explanation and av_seek_frame method

    3 September 2013, by user325320

    What does time_base mean in ffmpeg? document(here) says it is "frames per second".
    and I see in a real example that:

    AVFormatContext->streams[video_index]->time_base == 1 / 30000

    But video's AVCodecContext->time_base == 1001 / 60000

    This makes me quite confused, and I don't understand them.

    The second question is about av_seek_frame method.
    If seeking via time stamp (last parameter is AVSEEK_FLAG_BACKWARD or 0),
    the seek is started from current position read by av_seek_frame?
    or from the start of the file? or from the start position of decoding after last av_seek_frame call ?

  • How to obtain titles and chapters information in DVD?

    2 August 2016, by Tarhan

    I found many question about creating DVD menu using ffmpeg but i did not find any one about programmically access to DVD structure information. When i using libav (or FFmpeg) library i can open DVD image (iso file) and access to video, audio and subtitle streams. But i could not find any API.

    I can play video and found information using VLC player (and so libvlc library). But I need to do some processing on audio and subtitle stream programmically. I don’t want to split VOBs using tools like SmartRipper, and only then do processing.

    Does libav(ffmpeg) contain any API for dealing with DVD menus? If not can you recommend any other library which can be used to obtain information about title(chapter) start and end time with one frame(sample, AVPacket) accuracy?

    I heard about libdvdnav library but i don’t know if it right for me.
    I’m new to libav and DVD format internals.