Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (53)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

Sur d’autres sites (7482)

  • avutil/frame : add an LCEVC enhancement data payload side data type

    20 juillet 2024, par James Almer
    avutil/frame : add an LCEVC enhancement data payload side data type
    

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] doc/APIchanges
    • [DH] libavutil/frame.c
    • [DH] libavutil/frame.h
    • [DH] libavutil/version.h
  • Revision 522d4bf852 : Add 'superframe' index A 'superframe' is a group of frames that share the same

    5 mars 2013, par John Koleszar

    Changed Paths : Modify /test/encode_test_driver.cc Modify /test/encode_test_driver.h Add /test/superframe_test.cc Modify /test/test.mk Modify /vp9/encoder/vp9_onyx_if.c Modify /vp9/vp9_cx_iface.c Modify /vp9/vp9_dx_iface.c Add 'superframe' index A 'superframe' (...)

  • I want to get the data of the MPEG2ts data stream

    26 juin 2020, par 夏目たかし

    I want to get the data of the MPEG2ts data stream using FFMPEG.

    &#xA;

    Delivery side :

    &#xA;

    ffmpeg -re -i hoge.ts -map 0 -c copy -f mpegts udp://127.0.0.1:5004&#xA;

    &#xA;

    Receiver :

    &#xA;

    ffmpeg -i udp://127.0.0.1:5004 -map 0:1 -codec copy -f data stream.txt&#xA;

    &#xA;

    I started two command prompts and both were running on one PC.

    &#xA;

    disp Delivery side message :

    &#xA;

    Input #0, mpegts, from &#x27;E:/Day_Flight.mpg&#x27;:&#xA;  Duration: 00:03:14.88, start: 10.000000, bitrate: 4187 kb/s&#xA;  Program 1&#xA;    Stream #0:0[0x1e1]: Video: h264 (Main) ([27][0][0][0] / 0x001B), &#xA;yuv420p(progressive), 1280x720, 60 fps, 60 tbr, 90k tbn, 180k tbc&#xA;    Stream #0:1[0x1f1]: Data: klv (KLVA / 0x41564C4B)&#xA;Output #0, mpegts, to &#x27;udp://127.0.0.1:5004&#x27;:&#xA;  Metadata:&#xA;    encoder         : Lavf58.47.100&#xA;    Stream #0:0: Video: h264 (Main) ([27][0][0][0] / 0x001B), yuv420p(progressive), 1280x720, q=2-31, 60 fps, 60 tbr, 90k tbn, 90k tbc&#xA;    Stream #0:1: Data: klv (KLVA / 0x41564C4B)&#xA;Stream mapping:&#xA;  Stream #0:0 -> #0:0 (copy)&#xA;  Stream #0:1 -> #0:1 (copy)&#xA;

    &#xA;

    disp Receiver message :

    &#xA;

    Input #0, mpegts, from &#x27;udp://127.0.0.1:5004&#x27;:&#xA;  Duration: N/A, start: 1.400000, bitrate: N/A&#xA;  Program 1&#xA;    Metadata:&#xA;      service_name    : Service01&#xA;      service_provider: FFmpeg&#xA;    Stream #0:0[0x100]: Video: h264 (Main) ([27][0][0][0] / 0x001B), &#xA;yuv420p(progressive), 1280x720, 60 fps, 60 tbr, 90k tbn, 180k tbc&#xA;    Stream #0:1[0x101]: Data: klv (KLVA / 0x41564C4B)&#xA;Output #0, data, to &#x27;stream.txt&#x27;:&#xA;  Metadata:&#xA;    encoder         : Lavf58.47.100&#xA;    Stream #0:0: Data: klv (KLVA / 0x41564C4B)&#xA;Stream mapping:&#xA;  Stream #0:1 -> #0:0 (copy)&#xA;

    &#xA;

    However, the contents of steram.txt are empty.&#xA;Please give me some advice.

    &#xA;