Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (99)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (7208)

  • fftools/cmdutils : extend stream specifiers to match by disposition

    15 septembre 2024, par Anton Khirnov
    fftools/cmdutils : extend stream specifiers to match by disposition
    
    • [DH] Changelog
    • [DH] doc/fftools-common-opts.texi
    • [DH] fftools/cmdutils.c
    • [DH] fftools/cmdutils.h
    • [DH] tests/fate/ffmpeg.mak
    • [DH] tests/ref/fate/ffmpeg-spec-disposition
  • Why don't VideoIntelligence end_time_offset values match for the same video ?

    3 septembre 2022, par ProGirlXOXO

    When parsing the results of Google's Video Intelligence API, I've noticed that speech_transcriptions and all other annotation results are split into two separate list items within annotation_results. See the example output below.

    


    Digging further, I've noticed they have slightly varied end_time_offset values.

    


      

    1. Why are these end_time_offset values different ? I expect them both to show the exact same value since the exact same video is being analyzed for both sets of features. In some cases this value is off by more than a second.
    2. 


    3. Assuming this is not an error, which end_time_offset I trust if I want to determine the total duration of the video ?
    4. 


    5. Why is feature output split into two different list items ?
    6. 


    


    {&#xA;    "annotation_results": [&#xA;        {&#xA;            "input_uri": "<redacted>.mp4",&#xA;            "segment": {&#xA;                "start_time_offset": {},&#xA;                "end_time_offset": {&#xA;                    "seconds": 57,&#xA;                    "nanos": 849516000&#xA;                }&#xA;            },&#xA;            "shot_label_annotations": [],&#xA;            "shot_annotations": [],&#xA;            "explicit_annotation": {},&#xA;            "text_annotations": [],&#xA;            "logo_recognition_annotations": []&#xA;        },&#xA;        {&#xA;            "input_uri": "<redacted>.mp4",&#xA;            "segment": {&#xA;                "start_time_offset": {},&#xA;                "end_time_offset": {&#xA;                    "seconds": 58,&#xA;                    "nanos": 69333000&#xA;                }&#xA;            },&#xA;            "speech_transcriptions": []&#xA;        }&#xA;    ]&#xA;}&#xA;</redacted></redacted>

    &#xA;

  • ffprobe output frame with read_intervals no match given time range

    6 juillet 2016, par scott1028

    I have read ffprobe document at here.

    I don’t know why my first time of the frame is 11.745 seconds, even given "-read_intervals 12%13". (12sec 13sec )

    $ ffprobe -i chrome.webm -show_frames -select_streams v:0 -read_intervals 12%13 -hide_banner -loglevel panic

    [FRAME]
    media_type=video
    stream_index=0
    key_frame=1
    pkt_pts=11745
    pkt_pts_time=11.745000
    pkt_dts=11745
    pkt_dts_time=11.745000
    best_effort_timestamp=11745
    best_effort_timestamp_time=11.745000
    pkt_duration=33
    pkt_duration_time=0.033000
    pkt_pos=717643
    pkt_size=5864
    width=480
    height=270
    pix_fmt=yuv420p
    sample_aspect_ratio=1:1
    pict_type=I
    coded_picture_number=0
    display_picture_number=0
    interlaced_frame=0
    top_field_first=0
    repeat_pict=0
    [/FRAME]
    ...