
Recherche avancée
Autres articles (21)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP 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 (...) -
Contribute to documentation
13 avril 2011Documentation 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 (6198)
-
Additional : Add Brazillian CNPJ validation rule (#2222)
5 novembre 2018, par jcspaderAdditional : Add Brazillian CNPJ validation rule (#2222)
-
I ues FFMPEG to convert bitmap to yuv,and try to save it,but failed
20 avril 2013, par liaoyuandeyehuoI use this way to convert bitmap to yuv
Save bitmap to video (libavcodec ffmpeg)
and then save the buffer like this :FILE* fp=fopen("aha.yuv","w");
if(!fp) return NULL;
fwrite(outPic->data[0],nbytes,1,fp);
fwrite(outBuffer,nbytes,1,fp);
fclose(fp);but it has only several lines. All most all of the .yuv file is gray.
I am sure theinbuffer
points to the input BGR32 data. So where is wrong ?
Is The way to save theoutBuffer
right ? -
vulkan_decode : fix pedantic validation issue
24 octobre 2023, par Lynnevulkan_decode : fix pedantic validation issue
"Validation Error : [ VUID-VkImageViewCreateInfo-imageViewType-04974 ] Object 0 : handle = 0x9f9b41000000003c, type = VK_OBJECT_TYPE_IMAGE ; | MessageID = 0xc120e150 | vkCreateImageView() :
Using pCreateInfo->viewType VK_IMAGE_VIEW_TYPE_2D and the subresourceRange.layerCount VK_REMAINING_ARRAY_LAYERS=(17) and must 1 (try looking into VK_IMAGE_VIEW_TYPE_*_ARRAY).
The Vulkan spec states : If viewType is VK_IMAGE_VIEW_TYPE_1D, VK_IMAGE_VIEW_TYPE_2D, or VK_IMAGE_VIEW_TYPE_3D ; and subresourceRange.layerCount is VK_REMAINING_ARRAY_LAYERS,
then the remaining number of layers must be 1"