Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (49)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (5505)

  • How to specify size of output image in FFmpeg command ?

    30 juillet 2023, par saladguy

    I'm extracting frame images from an MP4 video using ffmpeg in terminal.

    



    I used the command :

    



    ffmpeg -i Video.MP4 Pictures%d.bmp


    



    Problem is that the extracted images have a size of 4.5-5MB ! I want smaller images, say around 1-2 MB. How do I limit the size of output images ?

    


  • fate/gif : Remove nonsense requirement

    28 avril 2022, par Andreas Rheinhardt
    fate/gif : Remove nonsense requirement
    

    It seems as if it was intended to declare fate-gif-color as prerequisite
    of the fate-gifenc% tests. Yet the latter do not need anything from
    the former, so this would be unnecessary. Furthermore, given that this
    line has no associated recipe, it actually cancels implicit rules for
    fate-gifenc% instead of adding a prerequisite.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] tests/fate/gif.mak
  • HEVC/H.265 interlaced format support in ffmpeg or VLC

    30 décembre 2020, par Ernestas Gruodis

    "Music Box Russia" channel over satellite transmits in HEVC 1920x1080 25fps interlaced - and after recording VLC recognizes file as 50 fps, and resolution 1920x540 - half a height. But on satellite tuner the player works fine - it plays a file as 1920x1080 25fps... When we can expect support for HEVC/H.265 interlaced ? Here is recorded file (Garry Grey & Eva Miller - wtf). Also - a lot of lost frames in VLC player statistics..

    &#xA;

    EDIT :

    &#xA;

    I found some interesting info how in HEVC the interlace video content can be indicated here :

    &#xA;

    &#xA;

    Unlike to H.264/AVC, interlace-dedicated coding in HEVC is not exist :

    &#xA;

      &#xA;
    • No mixed frame-field interaction (like PAFF in H.264/AVC)
    • &#xA;

    • No interlace scanning of transform coefficients
    • &#xA;

    • No correction MVX[1] (or y-component of MV) if current and reference pictures are in different polarity (top-bottom or&#xA;bottom-top).
    • &#xA;

    &#xA;

    However, in HEVC the interlace video content can be indicated&#xA;(signaled in VPS/SPS and pic_timing SEI messages the latter are&#xA;transmitted for every picture in the sequence). Interlace-related&#xA;setting :

    &#xA;

      &#xA;
    • in VPS/SPS set general_interlaced_source_flag=1 and general_progressive_source_flag=0. Indeed, the HEVC standard says :

      &#xA;

      if general_progressive_source_flag is equal to 0 and&#xA;general_interlaced_source_flag is equal to 1, the source scan type of&#xA;the pictures in the CVS should be interpreted as interlaced only.

      &#xA;

    • &#xA;

    • in VPS/SPS set general_frame_only_constraint_flag=0

      &#xA;

    • &#xA;

    • in SPS VUI set field_seq_flag=1 and frame_field_info_present_flag=1. Notice that if these flags are ON&#xA;then picture timing SEIs shall be present for each picture.

      &#xA;

    • &#xA;

    • transmission of Picture Timing SEI per picture with the following parameters :

      &#xA;

      source_scan_type = 0 to indicate interlace mode&#xA;for top field picture signal pict_struct=1 and for bottom field picture pict_struct=2

      &#xA;

    • &#xA;

    &#xA;

    &#xA;

    Perhaps it is possible to pass these parameters to ffmpeg/vlc before playing a file ?

    &#xA;