
Recherche avancée
Médias (17)
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (63)
-
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (10638)
-
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.
-
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 ?


-
Scripting FFmpeg to move text in y co-ordinate by some delta at specific time-codes
27 février 2019, par distro.obsI’m using the basic drawtext command like this
ffmpeg -i output.mp4 -vf \
'drawtext=textfile='textfile.txt':x=0:y=0 \
:fontsize=30:fontcolor=white:borderw=3 \
:bordercolor=black:box=0' output.mp4"which puts stationary text at location (x, y) = (0,0)
What I want to do is move this text by 10 points in y plane at certain time codes.
at 00:00:10, y would be 0
at 00:00:11, y would be 10
at 00:00:43, y would be 20
...
...
at 00:10:44, y would be 30so the ’y’ co-ordinate has a fix increment of 10 at ’keytimes’
Is there a way to do that ?