Recherche avancée

Médias (1)

Mot : - Tags -/ipad

Autres articles (91)

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

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (11341)

  • Writing video files with dynamic image watermarks on Android

    11 septembre 2014, par mrmoment

    I want to add dynamic watermarks (images, not texts) on video files on Android. For example, a user selects a video file on his phone, after processing, when the video is played, the watermarks are shown. And on different frames the watermark position and image is changing. Is it possible to realize this ?

  • convert video without losing frames and have same fps and tbr using ffmpeg

    15 août 2021, par srinivast6

    My original video "test1.mp4" has following properties

    


    Stream #0:0(eng): Video: mpeg4 (Simple Profile) (mp4v / 0x7634706D), yuv420p, 640x360 [SAR 1:1 DAR 16:9], 283 kb/s, 34.55 fps, 50 tbr, 50k tbn, 50 tbc (default).


    


    I got it from running ffmpeg -i test1.mp4.

    


    I had to change the video codec to h264. So I converted the above video using below command

    


    ffmpeg -i test1.mp4 test1.mp4.

    


    However the props of the converted video has changed. fps is 50 and tbr is 50. And also frame count has increased compared to original video.

    


     Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 640x360 [SAR 1:1 DAR 16:9], 114 kb/s, 50 fps, 50 tbr, 12800 tbn, 100 tbc (default)


    


    After following this link https://superuser.com/questions/1307863/why-is-ffmpeg-changing-framerate-from-60-to-120, I found that ffmpeg uses tbr values instead of fps while converting in order to not to lose any frames but at the cost of duplicate frames. As suggested in the link above I used vsync 0 option while converting video.

    


    ffmpeg -i test1.mp4 -vsync 0 test1_sync.mp4.


    


    Now the Frame count is same as the input video (checked using ffprobe). But the fps is still little different from the original video.

    


     Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 640x360 [SAR 1:1 DAR 16:9], 61 kb/s, 12.88 fps, 50 tbr, 12800 tbn, 100 tbc (default).


    


    How come frame count remains same even when fps is different ?

    


    To my use case I need the converted video to have same number of frames at the same timestamps as the original video, i just need the codec to be changed to h264. I dont want duplicate or losing frames.

    


    How can I achieve this ?

    


  • MP4 codec support in Chromium

    9 décembre 2015, par Staggan

    We have integrated Chromium Embedded Framework into our Windows game to allow us to render web pages from within our application, and everything works fine, except MP4 videos.

    I understand Chromium does not include this codec due to licensing issues, but can anyone provide details on how we can add support, even if we have to license a codec for it.

    All the information we can find seems to be old, and the functions referred to appear to be deprecated... so we are at a bit of a loss.

    All the video serving networks we have spoken to appear to serve MP4s.. so changing encoding does not seem to be an option.

    Any advice would be greatly appreciated.

    Thanks