
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (71)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (7348)
-
rtl_fm piped to ffmpeg for udp stream
4 novembre 2014, par user3936148rtl_fm piped to ffmpeg for udp stream
Using Windows 7. I would like to pipe the rtl_fm standard out (pipe) to ffmpeg and udp stream it to an ip address. I have downloaded and installed rlt_sdr and other files and I have also installed sox. The console example given with the rtl_fm application using sox to play the radio station is below :
rtl_fm -f 106500000 -M wbfm -s 200000 -r 48000 -l 0 -E deemp -g 50 - | play -r 48000 -t s16 -L -c 1 -
This works great, using sox.
Update :
Below works with ffplay sounds ok not great..
rtl_fm -f 106500000 -M wbfm -s 200000 -r 48000 -l 0 -E deemp -g 80- | ffplay -f s16le -ar 48000 -ac 1 -
I would like to use ffmpeg instead, below is a non working example (just to give you an idea)
rtl_fm -f 106500000 -M wbfm -s 200000 -r 48000 -l 0 -E deemp -g 50 - | ffmpeg -i - -f s16le -ar 48000 -ac 1 -acodec libmp3lame -ab 24k -ar 22050 -f mpegts udp ://192.168.1.196:1234 -
useful links :
http://kmkeen.com/rtl-demod-guide/
http://sdr.osmocom.org/trac/wiki/rtl-sdr
Thank you for your help
-
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" 



-
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 ?