Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (77)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (8687)

  • x264 stream color shift

    15 mars 2017, par useprxf

    I was using swscale + x264 to encode a sequence of RGB images to an h264 stream. When the RGB values in the input image (in red) are all (255, 0, 0), the YUV outputted by swscale + x264 is (81, 90, 240). By using swscale, this YUV value can be transformed back to the original RGB value. However there is color shifting when I used PotPlayer to play the stream.

    I captured the first frame and saved it as a bmp file. The RGB value in the bmp file is (255, 24, 0), where the green channel is not zero.

    How to solve this color-shift problem ?

    I solve this problem by changing the ITU-601 color space to ITU-709 using sws_setColorspaceDetails.

  • x264 stream color shift

    15 mars 2017, par useprxf

    I was using swscale + x264 to encode a sequence of RGB images to an h264 stream. When the RGB values in the input image (in red) are all (255, 0, 0), the YUV outputted by swscale + x264 is (81, 90, 240). By using swscale, this YUV value can be transformed back to the original RGB value. However there is color shifting when I used PotPlayer to play the stream.

    I captured the first frame and saved it as a bmp file. The RGB value in the bmp file is (255, 24, 0), where the green channel is not zero.

    How to solve this color-shift problem ?

    I solve this problem by changing the ITU-601 color space to ITU-709 using sws_setColorspaceDetails.

  • Why pixels color are different before and after encoding ? , How to set the same ?

    11 mars 2015, par mitli

    I want to change some pixels of some frames, I do this steps :

    1 - Extract frames from FLV video to PNG

    2 - Change frame pixels color ,For example I set color of Pixel(0,0) to ARGB (0,0,0,0)

    3 - Encode frames to a video by below code :

    -i Frame%04d.png -filter_complex "[0:0] scale= [wm]; [wm][1:0] overlay=1:1 [out]" -map "[out]" -map 0:a  -c:v libx264 -vprofile low outfile.flv

    But when I check "outfile.flv" frames , pixel 0,0 is 255,7,2,3 instead of 0,0,0,0 , why ? Please tell me that how can I get same pixels color after encode ?