
Recherche avancée
Médias (10)
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (49)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (5246)
-
Is ffmpeg giving incorrect frame count ?
15 mai 2020, par trshmanxThe videos
Duration: 00:00:06.93
and25 fps

If we do the math it's 173.25 (173 rounded) frames.
However this commandffmpeg -i video.mp4 -qscale:v 1 filename_%06d.jpg
extracts 172 frames. Am I calculating or doing something wrong ?
I want to use this of some automation in my Python project.


Edit :



I do have video frame in 6.840000



[FRAME]
media_type=video
stream_index=1
key_frame=0
pkt_pts=171000
pkt_pts_time=6.840000
pkt_dts=N/A
pkt_dts_time=N/A
best_effort_timestamp=171000
best_effort_timestamp_time=6.840000
pkt_duration=1000
pkt_duration_time=0.040000
pkt_pos=22689592
pkt_size=213060
width=1920
height=1080
pix_fmt=yuv420p
sample_aspect_ratio=N/A
pict_type=P
coded_picture_number=169
display_picture_number=0
interlaced_frame=0
top_field_first=0
repeat_pict=0
color_range=tv
color_space=bt709
color_primaries=bt709
color_transfer=bt709
chroma_location=left
[/FRAME]




My full frame dump here



Edit 2 :



My intention is to get the frames exactly, as when watching the video. I don't care about some frame being longer / shorter, audio longer etc. I tried to force the fps
ffmpeg -i LUCKY_BRUNETTE.mp4 -vf fps=25 -qscale:v 1 filename_%06d.jpg
but still got 172 frames.

-
FFMPEG FFBROBE Get Frame Count On Powershell [duplicate]
27 avril 2020, par ilham zackyI am new to FFmpeg, I have some audio and video files, I need to get the duration with frames, I need it in this format H:M:S:F - "00:00:00:00", I am using Powershell



currently, my duration works, but instead of frames, it prints a decimal value.
note : in my output maximum number of frames should be 30



This is my code



$audioId = "$id.m4a"
$videoId = "$id.mp4"

$duration1 = if ((ffprobe -i $audioId 2>&1 | Out-String) -match 'Duration:\s+([\d:"."]+)') { $matches[1] };

$duration = if ((ffmpeg -i $videoId 2>&1 | Out-String) -match 'Duration:\s+([\d:"."]+)') { $matches[1] };

$newduration1 = ("$duration1").Replace(".",":")
$newduration = ("$duration").Replace(".",":")

echo $duration1 
echo $duration





my output be like



00:00:03.48
00:00:03.46




-
How to count from zero to 1200.80 in ffmpeg ?
19 avril 2020, par Josias da Paixao juniorI am wanting to create a count from a number starting from zero until another number specified in the variable, I intend to choose at which point in the video this number appears and at what point it should disappear.



It would be like this, I choose when the number zero appears and starts counting up to the number 1200.80, then I choose when the number disappears.



I have no idea how to start.



The code I have is this :



ffmpeg -loop 1 -i bgImage.png -vf "drawtext=fontfile='C:\\Windows\\fonts\\Arial.ttf':
 fontcolor=yellow:fontsize=45:x=100:y=65:text=codCountnumberHere out.mp4




if possible I would like to choose the counting speed.



Every help is welcome.



HELP-ME !!!