Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (24)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

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

Sur d’autres sites (3504)

  • AAC bitstream not in ADTS format and extradata missing in MPEG-TS output

    6 décembre 2022, par Antonio

    I am using ffmpeg 5.1.2 stable version, and fdk-aac v0.1.6 .
I am trying to encapsulate a LATM/LOAS in an MPEGTS DVB standard output, using this cmdline :

    


    ffmpeg -i <source> -af volume=volume=1dB:precision=fixed -c:a libfdk_aac -latm 1 -b:a 128k -c:v libx264 -pix_fmt yuv420p -preset veryfast -x264-params "nal-hrd=cbr:keyint=50:min-keyint=50" -b:v 3200k -minrate 3200k -maxrate 3200k -bufsize 6400k -flush_packets 0 -f mpegts -mpegts_original_network_id 1 -mpegts_transport_stream_id 1 -mpegts_service_id 1 -mpegts_service_type &#x27;0x19&#x27; -mpegts_flags &#x27;latm&#x27; -mpegts_flags &#x27;system_b&#x27; -mpegts_flags &#x27;nit&#x27; -muxrate 4000000 -metadata service_provider=&#x27;MyRTV&#x27; -metadata service_name=&#x27;My TV&#x27; -tables_version 0 &#x27;udp://238.0.0.1:6000?ttl=1&amp;pkt_size=1316&amp;bitrate=4000000&#x27;&#xA;</source>

    &#xA;

    It logs and error :

    &#xA;

    [mpegts @ 0x556dc3e6a840] AAC bitstream not in ADTS format and extradata missing&#xA;

    &#xA;

    What am I missing ?&#xA;Thanks in advance and best regards

    &#xA;

    I am trying to encapsulate a LATM/LOAS in an MPEGTS DVB standard output, so expect to have a LOAS/LATM output, but I obtain an ADTS output.

    &#xA;

  • fftools/ffmpeg : store forced keyframe pts in AV_TIME_BASE_Q

    17 novembre 2022, par Anton Khirnov
    fftools/ffmpeg : store forced keyframe pts in AV_TIME_BASE_Q
    

    Rather than the encoder timebase. Since the times are parsed as
    microseconds, this will not reduce precision, except possibly when
    chapter times are used and the chapter timebase happens to be better
    aligned with the encoder timebase, which is unlikely.

    This will allow parsing the keyframe times earlier (before encoder
    timebase is known) in future commits.

    • [DH] fftools/ffmpeg.c
    • [DH] fftools/ffmpeg.h
  • FFmpeg not splitting videos precisely

    23 novembre 2022, par SRK7Kyros

    I was trying to use FFmpeg to split videos into 30s segments, here is the full code :

    &#xA;

    from tkinter import filedialog, Tk&#xA;import subprocess&#xA;import os&#xA;Tk().withdraw()&#xA;path_to_video = filedialog.askopenfilename()&#xA;&#xA;segment_duration = input("Enter each segment duration in second: ")&#xA;&#xA;os.chdir(os.path.dirname(__file__))&#xA;subprocess.run([&#xA;    "E:\\Programs\\FFmpeg\\ffmpeg-master-latest-win64-gpl\\bin\\ffmpeg.exe", &#xA;    "-i", path_to_video, &#xA;    "-c:", "copy", &#xA;    "-map", "0", &#xA;    "-segment_time", segment_duration, &#xA;    "-f", "segment", &#xA;    "-reset_timestamps", "1",&#xA;    "Output_%03d.mp4"])&#xA;

    &#xA;

    But it actually splits it into videos with really low precision, how can I fix it ? Another post regarding this topic suggested adding this line :

    &#xA;

    "-force_key_frames", f"expr:gte(t,n_forced*{segment_duration})",&#xA;

    &#xA;

    But it didn't really work...

    &#xA;