Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (59)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (6435)

  • Flash player seek not working when ffmpeg encoded with gop(-g) = 1 [migrated]

    3 mars 2015, par Brian

    I am trying to deliver video content with frame-by-frame viewing via the SMP Flash player. For encoding, I am using FFMPEG with the x264 video codec for files with .mp4 containers. I am using the latest ffmpeg build and using the OSMF SMP flash video player.

    I am taking a series of png files and creating a .mp4 file :

    ffmpeg -nostdin -loglevel warning  -i out.%d.png -g 1 -crf 15 -c:v libx264 -movflags faststart -pix_fmt yuv420p -r 24 out.mp4

    By encoding with the gop(-g) flag = 1, I am encoding to make each frame a keyframe. When I seek using the scrub bar of the SMP flash player, it always seeks to the start of the video. If I play and scrub/seek the video using the default HTML player, it works perfectly.

    When I encode with the gop(-g) flag = 2, the SMP Flash player scrubs/seeks and plays correctly.

    It looks like there may be some kind of bug or incompatibility with the Flash player. I have found this problem mentioned back in 2009. I think my only hope is to find a work around. Any suggestions ?

  • Upscale the key frames while decoding in H.264

    25 janvier 2023, par Monaco

    I would like to just upscale the keyframes in an H.264 video. I've been trying to see where can I hold the key frame, in the C src code, in order to scale it. I'm confused whether to apply the scaling in the parsing packet part, or in the decoding part.

    


    I also don't know if upscaling the B & P frames would be enough to not damage the video frames.

    


    I hope you guide me as there are no sufficient documentation about FFmpeg. If you have any suggestions please let me know.

    


  • How can i encode a video using a QP map in x264 ? [closed]

    5 septembre 2022, par JustABeginner

    I have a qp table contains x and y coordinates, poc and QP value of each block.

    


    How can I change x264 source code so that I could encode a video with this table ?

    


    I tried using qpfile but its for each frame, not each blocks.

    


    Hope someone could help me.

    


    Here's the table I mentioned :