
Recherche avancée
Autres articles (77)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
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 (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (9630)
-
ffmpeg output video size limits to 4GB
14 avril 2015, par rajendra332I have a video file of .mp4 format. I want to convert it into .mpeg.
But when the output file size reaches 4GB, the conversion stops with a message something like "av_interleaved_write_frame() file too large"My file system is ext4.
The commands I used are as below :
ffmpeg -i "input_file.mp4" -q:v 0 -q:a 0 -c:v mpeg2video "output_file.mpeg"
ffmpeg -i "input_file.mp4" -q:v 0 -q:a 0 -c:v mpeg2video -fs 8G "output_file.mpeg"
I understand that the conversion target defaults to DVD, so, the 4GB is the upper limit. can I tweak the target ?
Or, is it possible to dump the output to a subsequent file2Out.mpeg once file1Out.mpeg reaches 4GB
-
arm : vp9itxfm16 : Avoid reloading the idct32 coefficients
24 février 2017, par Martin Storsjöarm : vp9itxfm16 : Avoid reloading the idct32 coefficients
Keep the idct32 coefficients in narrow form in q6-q7, and idct16
coefficients in lengthened 32 bit form in q0-q3. Avoid clobbering
q0-q3 in the pass1 function, and squeeze the idct16 coefficients
into q0-q1 in the pass2 function to avoid reloading them.The idct16 coefficients are clobbered and reloaded within idct32_odd
though, since that turns out to be faster than narrowing them and
swapping them into q6-q7.Before : Cortex A7 A8 A9 A53
vp9_inv_dct_dct_32x32_sub4_add_10_neon : 22653.8 18268.4 19598.0 14079.0
vp9_inv_dct_dct_32x32_sub32_add_10_neon : 37699.0 38665.2 32542.3 24472.2
After :
vp9_inv_dct_dct_32x32_sub4_add_10_neon : 22270.8 18159.3 19531.0 13865.0
vp9_inv_dct_dct_32x32_sub32_add_10_neon : 37523.3 37731.6 32181.7 24071.2Signed-off-by : Martin Storsjö <martin@martin.st>
-
ffmpeg AVIOContext saving file from remote server
3 juillet 2015, par Ivan BalakshaI’m using ffmpeg for downloading and decoding video files from remote server(avformat_open_input method). I think probably save file using custom read_packet method for AVIOContext, but i can’t do it now.
May be who have experience with custom AVIOContext.
I found examples,but i don’t found solution for my problem. (sorry for my bad english).