
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (111)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Participer à sa documentation
10 avril 2011La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
Pour ce faire, vous pouvez vous inscrire sur (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (3769)
-
ffmpeg underutilizes cpu on AWS EC2 instance [closed]
20 décembre 2024, par Denisi'm running video encoding with ffmpeg on EC2 instance (c5.xlarge - 4 vcpus)


ffmpeg \
 -i "$INPUT_URL" \
 -c:v libvpx-vp9 -b:v 1M -threads 4 \
 -tile-columns 1 -frame-parallel 1 \
 -row-mt 1 \
 -cpu-used 0 \
 -quality 1 \
 -speed 3 \
 -r 6 \
 -f segment -segment_time "$SEGMENT_DURATION" -reset_timestamps 1 \
 "$OUTPUT_DIR/$OUTPUT_FILE_PREFIX$(date +%s)%03d.webm" > ffmpeg.log 2>&1 &



I expected the CPU utilization to be around 390%, but I observed it to be around 170% via
top


why and what i'm doing wrong ?


-
H264 profile change using FFMPEG
16 octobre 2015, par KartheeI have H264 Stream with following details
video stream type : AVC
resolution : 640x368
profile:level : High:4.0
aspect ratio : 40x23(1:1)
chroma format : 4:2:0
interlaced : no
frames count : 15
duration : 00:00:02.800
frame size max : 80 088
avg : 14 538
avg/max (I) : 28 361 / 80 088
avg/max (P) : 2 444 / 3 196
avg/max (B) : 0 / 0
min : 1 880
framerate declared : 5.000
real : 5.000
bitrate type : VBR
bitrate declared : 1 259 968
bit allocation max : 1 126 640
avg : 581 520
min : 124 000is it possible to convert into Baseline profile using FFMPEG or other tools, or is there a way to do myself ?
basic idea is to stream this video to android devices.
-
Install ffmpeg-php on CentOS
29 janvier 2021, par SergioI'm trying to install ffmpeg-php on server (CentOS) but after the "make" command I get an error :



from /usr/local/src/ffmpeg-php-0.6.0/ffmpeg-php.c:40:
 /usr/include/bits/stat.h:91: error: field 'st_atim' has incomplete type
 /usr/include/bits/stat.h:92: error: field 'st_mtim' has incomplete type
 /usr/include/bits/stat.h:93: error: field 'st_ctim' has incomplete type
 In file included from /usr/local/include/php/main/php_streams.h:28,
 from /usr/local/include/php/main/php.h:400,
 from /usr/local/src/ffmpeg-php-0.6.0/ffmpeg-php.c:40:
 /usr/include/sys/stat.h:367: error: array type has incomplete element type
 /usr/include/sys/stat.h:374: error: array type has incomplete element type
 In file included from /usr/local/include/php/main/php.h:406,
 from /usr/local/src/ffmpeg-php-0.6.0/ffmpeg-php.c:40:



/usr/local/include/php/TSRM/tsrm_virtual_cwd.h:218: error: expected specifier-qualifier-list before 'time_t'
/usr/local/include/php/TSRM/tsrm_virtual_cwd.h:246: error: expected declaration specifiers or '...' before 'time_t'
/usr/local/src/ffmpeg-php-0.6.0/ffmpeg-php.c: In function 'zm_startup_ffmpeg':
/usr/local/src/ffmpeg-php-0.6.0/ffmpeg-php.c:94: warning: implicit declaration of function 'avcodec_init'
make: *** [ffmpeg-php.lo] Error 1




The ffmpeg was installed successfully as well as mplayer and mencoder.



ffpeg :



configuration: --enable-gpl --enable-libmp3lame --enable-libtheora --enable-libvo-aacenc --enable-libvorbis --enable-libvpx --enable-libx264 --enable-version3
 libavutil 51. 73.101 / 51. 73.101
 libavcodec 54. 56.100 / 54. 56.100
 libavformat 54. 27.101 / 54. 27.101
 libavdevice 54. 2.100 / 54. 2.100
 libavfilter 3. 16.104 / 3. 16.104
 libswscale 2. 1.101 / 2. 1.101
 libswresample 0. 15.100 / 0. 15.100
 libpostproc 52. 0.100 / 52. 0.100




Any help ?