Advanced search

Medias (91)

Other articles (33)

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

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

  • De l’upload à la vidéo finale [version standalone]

    31 January 2010, by

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier; La génération d’une vignette : extraction d’une (...)

On other websites (6027)

  • FFmpeg, Icecast and ice_name in Cyrillic

    6 June 2021, by Alexandr Kuznetsov

    Sorry for my English, I hope you can understand me.

    


    To set stream names (-ice_name), I need to use Cyrillic characters. But on Icecast server I get hieroglyphs.

    


    If I use software other than ffmpeg, then everything is displayed fine. But I need to use ffmpeg exactly.

    


    Here's the source:

    


    "c:\ffmpegrec\ffmpeg.exe" -i rtmp://... -fflags nobuffer -vn -c:a libmp3lame -b:a 192K -content_type audio/mpeg -f mp3 -ice_name "Имя стрима" -ice_description "Описание стрима" -ice_public 0 -password ... icecast://...


    


    All this is run through a .bat file.

    


  • Input RTP stream to web html5 page ffmpeg

    6 August 2013, by Tommy

    I am working on school project and I need to transfere RTP from multicast IP and I would like play live stream on web page, preferrably in html5.

    So far i have started recording stream with ffmpeg. And it only recording audio. I have output of ffmpeg.

    enter image description here

    Addtionaly if you have any good sulution to transfere rtp stream from multicast domain to web page so give your ideas.

    Sorry for my english guys.

    Thank you in advance.

  • FFMPEG - convert video with multiple audio and subtitles

    3 July 2022, by Armitage2k

    I have a MKV video file with 1x video track, 3x audio tracks and 2x subtitle tracks.

    


    Now, I use the code below convert the video to x265 but sadly have no control over which audio and subtitles to convert. Can someone advise how I can tweak the statement to use audio track #0:3 and subtitle #0:4?

    


    ffmpeg -i INPUT.mkv -c:v libx265 -c:a copy -x265-params crf=25 OUTPUT.mkv

    


    This is what the .mkv file contains:

    


      Stream #0:0(jpn): Video: h264 (High), yuv420p(progressive), 1280x692 [SAR 1:1 DAR 320:173], 23.98 fps, 23.98 tbr, 1k tbn, 47.95 tbc (default)
  Stream #0:1(eng): Audio: aac (LC), 48000 Hz, stereo, fltp (default)
    Metadata:
      title           : English 2.0 channel AAC (Original)
  Stream #0:2(eng): Audio: aac (LC), 48000 Hz, stereo, fltp
    Metadata:
      title           : English 2.0 channel AAC (New)
  Stream #0:3(jpn): Audio: aac (LC), 48000 Hz, stereo, fltp
    Metadata:
      title           : Japanese 2.0 channel AAC
  Stream #0:4(eng): Subtitle: ass (default)
    Metadata:
      title           : Signs/Karaoke [Kametsu]
  Stream #0:5(eng): Subtitle: ass
    Metadata:
      title           : Re-styled [Kametsu]
  Stream #0:6: Attachment: ttf
    Metadata:
      filename        : nyala.ttf
      mimetype        : application/x-truetype-font
  Stream #0:7: Attachment: ttf
    Metadata:
      filename        : fontastique.ttf
      mimetype        : application/x-truetype-font
  Stream #0:8: Attachment: ttf
    Metadata:
      filename        : ARIALNB.TTF
      mimetype        : application/x-truetype-font
  Stream #0:9: Attachment: ttf
    Metadata:
      filename        : BorisBlackBloxx.ttf
      mimetype        : application/x-truetype-font
  Stream #0:10: Attachment: ttf
    Metadata:
      filename        : CODE2000.TTF
      mimetype        : application/x-truetype-font
  Stream #0:11: Attachment: ttf
    Metadata:
      filename        : CronosPro-Semibold.ttf
      mimetype        : application/x-truetype-font
Stream mapping:
  Stream #0:0 -> #0:0 (h264 (native) -> hevc (libx265))
  Stream #0:1 -> #0:1 (copy)
  Stream #0:4 -> #0:2 (ass (ssa) -> ass (ssa))


    


    Thank you very much