Recherche avancée

Médias (0)

Mot : - Tags -/serveur

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (50)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Les notifications de la ferme

    1er décembre 2010, par

    Afin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
    Les notifications de changement de statut
    Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
    À la demande d’un canal
    Passage au statut "publie"
    Passage au (...)

Sur d’autres sites (6155)

  • avformat/mxfdec : use both body_sid and track_number to find the track of a packet

    6 février 2018, par Marton Balint
    avformat/mxfdec : use both body_sid and track_number to find the track of a packet
    

    In order to do that we have to parse the EssenceContainerData and assign the
    proper body_sid and index_sid to the tracks from the corresponding source
    packages.

    This fixes packets returned in the wrong stream for some OP1-b files.

    Based on a patch by Alex Mogurenko from https://github.com/da8eat/FFmpeg

    Reference : http://mogurenko.com/2018/01/02/mxf-op1b-ffmpeg-part1/

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/mxfdec.c
  • Evolution #3924 : Changer #FILE dans la boucle DATA source ls pour mettre le chemin complet

    28 février 2018, par BoOz -

    Fil : oui le seul risque avec ça c’est si on est dans ecrire/
    autrement dit il faut peut-être _DIR_RACINE.$v

    Dans écrire avec $b[’file’] = $v ; j’ai le bon résultat, avec _DIR_RACINE un ../ de trop.

    */ !par mtime"
    "
    0,10> [(#VALY-m-d H:i:s|date#MTIME)] - file : [(#FILE)] - basename : [(#BASENAME)]

    Donne

    2018-02-28 17:33:25 - file : ../IMG/gif/ - basename : gif
    2018-02-28 17:33:20 - file : ../IMG/png/ - basename : png
    2018-02-28 17:30:03 - file : ../IMG/jpg/ - basename : jpg
    

    Donc je mets $b[’file’] = $v

  • How to encode KLV stream into MPEGTS with FFMPEG ?

    27 février 2018, par gediminasgu

    I’m playing with muxing h264 video with KLV data into mpegts to make video with included KLV data like in ffmpeg samples http://samples.ffmpeg.org/MPEG2/mpegts-klv/Day%20Flight.mpg

    My command line :

    ffmpeg.exe -re -f lavfi -i testsrc=rate=30 -re -f data -i out_day.klv -map 0:0 -map 1:0 -c:v h264 -c:d klv -f mpegts test.ts

    It creates video, but data is encoded with bin_data code, but not klv :

    > ffmpeg.exe -i test.ts
    ffmpeg version 3.4.2 Copyright (c) 2000-2018 the FFmpeg developers
     built with gcc 7.3.0 (GCC)
     configuration: --enable-gpl --enable-version3 --enable-sdl2 --enable-bzlib --enable-fontconfig --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libfreetype --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libtheora --enable-libtwolame --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libzimg --enable-lzma --enable-zlib --enable-gmp --enable-libvidstab --enable-libvorbis --enable-libvo-amrwbenc --enable-libmysofa --enable-libspeex --enable-libxvid --enable-libmfx --enable-cuda --enable-cuvid --enable-d3d11va --enable-nvenc --enable-dxva2 --enable-avisynth
     libavutil      55. 78.100 / 55. 78.100
     libavcodec     57.107.100 / 57.107.100
     libavformat    57. 83.100 / 57. 83.100
     libavdevice    57. 10.100 / 57. 10.100
     libavfilter     6.107.100 /  6.107.100
     libswscale      4.  8.100 /  4.  8.100
     libswresample   2.  9.100 /  2.  9.100
     libpostproc    54.  7.100 / 54.  7.100
    [mpegts @ 0000017fad6124a0] start time for stream 1 is not set in estimate_timings_from_pts
    Input #0, mpegts, from 'test.ts':
     Duration: 00:00:04.93, start: 1.466667, bitrate: 78 kb/s
     Program 1
       Metadata:
         service_name    : Service01
         service_provider: FFmpeg
       Stream #0:0[0x100]: Video: h264 (High 4:4:4 Predictive) ([27][0][0][0] / 0x001B), yuv444p(progressive), 320x240 [SAR 1:1 DAR 4:3], 30 fps, 30 tbr, 90k tbn, 60 tbc
       Stream #0:1[0x101]: Data: bin_data ([6][0][0][0] / 0x0006)
    At least one output file must be specified

    How to set data stream codec to KLV ?

    p.s. out_day.klv is extracted from Day Flight.mpg with command ffmpeg -i "Day Flight.mpg" -map data-re -codec copy -f data out_day.klv

    Thank you