
Recherche avancée
Médias (3)
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (44)
-
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 -
Déploiements possibles
31 janvier 2010, parDeux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
Version mono serveur
La version mono serveur consiste à n’utiliser qu’une (...) -
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 (...)
Sur d’autres sites (12225)
-
How to encrypt video in code with FFmpeg ? [closed]
15 octobre 2023, par Vivian GreenI want to use FFmpeg to push some video through UDP protrol,and now I am trying to encrypy my connection.


I find a command to do this thing, it seems like this :


ffmpeg -i input.mp4 -c copy -f mpegts -encryption_scheme aes-128-cbc -encryption_key 0123456789ABCDEF0123456789ABCDEF -y udp://remote_address:port



However,when I trying to do the thing in Qt, I found it difficult to finish !
I got some code on the website,but it never works :


// 设置加密参数
AVDictionary *options = nullptr;
av_dict_set(&options, "encryption_scheme", "aes-128-cbc", 0);
av_dict_set(&options, "encryption_key", "0123456789ABCDEF0123456789ABCDEF", 0);
// 写入文件头
avformat_write_header(outputFormatContext, &options);



How can I finish encrypt with FFmpeg in the code just like what I done in the CMD ?


Really thanks for your answer !


-
FFMPEG How to copy stream but limit upload bitrate
16 octobre 2022, par user2028856I'm using the following command to copy a video stream and push it to an rtmp URL :


ffmpeg -re -i "http://example.com/index.m3u8" -g 50 -c copy -bf 0 -b:v 2M -maxrate 2M -bufsize 1M -f flv "rtmp://example"



I need to limit the upload bitrate to 2M since there are bandwidth limitations. However, when using
-c copy
FFMPEG seems to ignore the-maxrate
limits.

How can I set a maximum upload bitrate whilst still using
-c copy
?

-
ffmpeg mkv to mp4 conversion has color tint
25 novembre 2020, par razvanI am recording the screen in a lossless format to have small CPU load


ffmpeg -f gdigrab -framerate 30 -i desktop -vcodec libx264rgb -crf 0 -preset ultrafast rec.mkv

ffprobe rec.mkv

Input #0, matroska,webm, from 'vid.mkv':
 Metadata:
 ENCODER : Lavf58.64.100
 Duration: 00:00:29.67, start: 0.000000, bitrate: 2829 kb/s
 Stream #0:0: Video: h264 (High 4:4:4 Predictive), gbrp(pc, gbr/unknown/unknown, progressive), 1920x1200, 30 fps, 30 tbr, 1k tbn, 60 tbc (default)
 Metadata:
 ENCODER : Lavc58.112.103 libx264rgb
 DURATION : 00:00:29.666000000



then I convert/compress it in mp4


ffmpeg -i rec.mkv rec.mp4

ffprobe rec.mp4

Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'vid.mp4':
 Metadata:
 major_brand : isom
 minor_version : 512
 compatible_brands: isomiso2avc1mp41
 encoder : Lavf58.64.100
 Duration: 00:00:29.67, start: 0.000000, bitrate: 326 kb/s
 Stream #0:0(und): Video: h264 (High 4:4:4 Predictive) (avc1 / 0x31637661), gbrp(tv, gbr/unknown/unknown), 1920x1200, 248 kb/s, 30 fps, 30 tbr, 15360 tbn, 60 tbc (default)



but the resulting mp4 it is tinted by green and pink color (white areas are tinted green and dark areas are tinted pink)


I have the same results on windows and ubuntu.
I am using latest git versions.


Any idea how to properly convert this to mp4 ?