Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (94)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (7739)

  • RTSP streaming to html5 video

    24 décembre 2017, par Gautier Drusch

    On a project, we have a camera with a RTSP stream (video & audio, encoded in H264). We need to make the stream available on all browsers (desktop & mobile).

    I’ve seen some solutions :

    • Convert the stream on HLS (iOS) and MPEG DASH (other browsers) with FFMPEG on a server
    • Video only with jsmpeg

    The problem is since we need a really live streaming (e.g. the user can record some pictures/video on live), a low the latency solution is a specification of the project.

    Any ideas ?

  • Screenshot every 5 or 10 min from rtsp source using ffmpeg

    24 octobre 2017, par user8826215

    Hello i try make script who get screenshot from ip camera every 5 or 10 min
    this script is work

    ffmpeg -rtsp_transport tcp -i "$SOURCE"-vf fps=fps=1/20 -update 1 /picture1.jpg

    But when i start script. It make one shot for 20 second. I need just one pictures and wanna script stop.
    I can make bash script to run script every 5 or 10 min.
    When start for 2 time script ask me to Overwrite and i need say Y. This is not good for me.

    PS. sorry for my bad english

  • How to transcode avi or mov file to mpeg-ts with specific results ?

    15 juillet 2015, par Andy Do

    Can someone please help me convert a mov or mp4 file to mpeg-ts to look like the output below ?

    So far I have this :

    ffmpeg -i test_5.mp4 -c copy -bsf h264_mp4toannexb -b:a test_5.ts

    and want to replicate this :

    Format                                   : MPEG-TS
    File size                                : 1.48 GiB
    Duration                                 : 11mn 45s
    Overall bit rate mode                    : Constant
    Overall bit rate                         : 18.0 Mbps

    Video
    ID                                       : 481 (0x1E1)
    Menu ID                                  : 1 (0x1)
    Format                                   : MPEG Video
    Format version                           : Version 2
    Format profile                           : Main@Main
    Format settings, BVOP                    : Yes
    Format settings, Matrix                  : Custom
    Format settings, GOP                     : M=3, N=15
    Format settings, picture structure       : Frame
    Codec ID                                 : 2
    Duration                                 : 11mn 45s
    Bit rate                                 : 16.9 Mbps
    Maximum bit rate                         : 15.0 Mbps
    Width                                    : 720 pixels
    Height                                   : 480 pixels
    Display aspect ratio                     : 4:3
    Frame rate                               : 29.970 fps
    Standard                                 : NTSC
    Color space                              : YUV
    Chroma subsampling                       : 4:2:0
    Bit depth                                : 8 bits
    Scan type                                : Interlaced
    Scan order                               : Top Field First
    Compression mode                         : Lossy
    Bits/(Pixel*Frame)                       : 1.633
    Time code of first frame                 : 00:00:00;00
    Time code source                         : Group of pictures header
    Stream size                              : 1.39 GiB (94%)

    Audio
    ID                                       : 482 (0x1E2)
    Menu ID                                  : 1 (0x1)
    Format                                   : AC-3
    Format/Info                              : Audio Coding 3
    Mode extension                           : CM (complete main)
    Format settings, Endianness              : Big
    Codec ID                                 : 129
    Duration                                 : 11mn 45s
    Bit rate mode                            : Constant
    Bit rate                                 : 192 Kbps
    Channel(s)                               : 2 channels
    Channel positions                        : Front: L R
    Sampling rate                            : 48.0 KHz
    Bit depth                                : 16 bits
    Compression mode                         : Lossy
    Stream size                              : 16.2 MiB (1%)
    Language                                 : English

    Thanks if you can !