Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (42)

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (4544)

  • Invalid Timestamps MPEG-TS - Nexio Server Errors

    25 octobre 2022, par Cody Greene

    I am trying to copy SAP audio from a 4ch MPEG-TS file to create an 8ch MPEG-TS file to help out a TV station partner that's struggling to do it on their own, but also running into problems.

    


    This pass copies ch 1-4 to 5-8

    


    


    ffmpeg -i input.ts -map 0:v -c:v copy -map 0:a -c:a copy -map 0:a -c:a copy firstpass.ts

    


    


    This pass mutes 3-6 (they wanted to "move" ch3-4 to ch7-8 and silence on 3-6) :

    


    


    ffmpeg -i firstpass.ts -map 0:v -c:v copy -map 0:a -filter:a:1 "volume=0" -filter:a:2 "volume=0" -c:a aac -b:a 128k output.ts

    


    


    The problem is that the Nexio is rejecting it for invalid timestamps, and copyts or flagging to genpts and gendts doesn't seem to work.

    


    It's fine with the source if I don't re-encode audio, and it's fine if I re-encode both video and audio (which we do not want to re-encode the video at all costs).

    


    Anyone got any ideas ?

    


    FFmpeg error :

    


    


    [mpegts @ 0x7fcadd204200] Invalid timestamps stream=0, pts=10714614, dts=10720620, size=3646

    


    


    Nexio error :

    


    


    [12:00:13] [33352 M] [XXXXX DISCONTINUITY : currentVideoFrameInfo.start = 631109472, expectedVideoFrameStart = 624238608]
[12:00:13] [33352 M] [XXXXX SMALL DISCONTINUITY. NOT CORRECTING TIME BASE HERE]
[12:00:13] [33352 M] [Error : PTL Error : discontinuous time stamp is detected. Actual lxf packet start = 630053424 (frame number = 26226). Expected lxf packet start = 623182560 (frame number = 25940)]
[12:00:13] [33352 M] [Error : PTL Error : processing is aborted (AbortImportIfMissingPacket = 1)]

    


    


  • avcodec/nvenc : add UHQ to AV1 for NVENC

    8 janvier, par Diego de Souza
    avcodec/nvenc : add UHQ to AV1 for NVENC
    

    This commit adds support for Ultra High Quality mode for AV1 on
    NVIDIA GPUs.

    Signed-off-by : Diego de Souza <ddesouza@nvidia.com>
    Signed-off-by : Timo Rothenpieler <timo@rothenpieler.org>

    • [DH] libavcodec/nvenc.h
    • [DH] libavcodec/nvenc_av1.c
  • FFMPEG android very slow converting raw aac to mp3

    24 novembre 2013, par Feras

    I managed to compile ffmpeg for android from this repo :
    https://github.com/aksalj/ffmpeg-android
    So you can see the configuration options in here :
    https://github.com/aksalj/ffmpeg-android/blob/master/config.sh

    The only changes I did were to change the darwin-x86_54 to darwin-x86 since the new r9b NDK only comes with it and also change the androideabi-4.4.3 to androideabi-4.6 again because of the new NDK. I am encoding a raw ADTS aac to mp3, the decoder for aac is libav and encoder for mp3 is libmp3lame. Even though the process works a simple 5 minute aac files (44100, 2ch) is taking about 3 minutes to process. The same file on my mac (with the macports ffmpeg) takes a few seconds.

    I am not sure but are there any optimizations that can be made to the ffmpeg config script or maybe i need to compile ffmpeg with something like libaacplus(even though i think aacplus is used for encoding only, so shouldnt make a difference).Anyways any performance optimizations will be highly appreciated !

    The android device is a US Galaxy S3 (i747m model which has the Snapdragon S4).