
Recherche avancée
Autres articles (54)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (4476)
-
How to install ffmpeg on linux(CentOs 6.8) dedicated server [on hold]
27 septembre 2016, par Kiran PardeshiI am trying to install ffmpeg on linux(CentOs 6.8) dedicated server.
I used below links for reference but could not succeed.https://www.webhostpython.com/billing/knowledgebase.php?ction=displayarticle&id=10
https://chrisjean.com/install-ffmpeg-and-ffmpeg-php-on-centos-easily/
http://wiki.razuna.com/display/ecp/FFMpeg+Installation+on+CentOS+and+RedHat
Please suggest me how to install ??
-
How to Play Smooth 4K Video with FFplay ? [closed]
14 mai 2020, par Matan MarcianoIm trying to play 4K video with ffplay and the video is not smooth.



Video File :



- 

- Big Buck Bunny, 4K, 60fps, 30Mbps
- http://distribution.bbb3d.renderfarming.net/video/mp4/bbb_sunflower_2160p_60fps_stereo_abl.mp4







Hardware :



- 

- Dell OptiPlex 7070 Micro (8 Cores, 8GB RAM, GPU : Intel Corporation UHD Graphics 630)
- Samsung U28E590D, 4K Screen
- DisplayPort to HDMI Cable









Software :



- 

- Ubuntu 19.04
- ffplay with libmvx (according this guide : https://github.com/Intel-Media-SDK/MediaSDK/wiki/Build-and-use-ffmpeg-with-MediaSDK)







The FFplay command I used is :
ffplay -vcodec h264_qsv -i input.ts



- 

- Notes :
- During the playing, my CPU usage is around 25% (according to 'top' command)
- FFplay logs indicate on many frame drops
- I also tried VLC and MPV player's- VLC looks bad also. MPV player looks better but still not smooth.











So, its looks like my hardware is good enough for 4K playing. What am I missing ?
How can I play smooth 4K video via FFplay ?


-
FFMPEG throwing error nb_cpb invalid, what went wrong ?
21 août 2023, par qkhanhproI am trying to play with this file from Kodi sample page https://kodi.wiki/view/Samples




HDR10+ Profile A HEVC 10-bit 23.976 Sample (in MKV with DTS:X audio)




The ffmpeg command throw this error on every line, with the number always being 93 for multiple different output video codec


nb_cpb 93 invalid.0 q=0.0 size= 0kB time=00:00:00.65 bitrate= 0.5kbits/s speed=3.95x 



A search point to this source file https://github.com/FFmpeg/FFmpeg/blob/master/libavcodec/hevc_ps.c


if (!hdr->flags.low_delay_hrd_flag) {
 hdr->cpb_cnt_minus1[i] = get_ue_golomb_long(gb);
 if (hdr->cpb_cnt_minus1[i] > 31) {
 av_log(NULL, AV_LOG_ERROR, "nb_cpb %d invalid\n",
 hdr->cpb_cnt_minus1[i]);
 return AVERROR_INVALIDDATA;
 }
}



What went wrong ?


ffmpeg -i E:\HDR.mkv -c:v libx265 -c:a copy "HDR.mp4" 

ffmpeg -i E:\HDR.mkv -c:v hevc_nvenc -c:a copy "HDR.mp4"