
Recherche avancée
Autres articles (91)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
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 (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)
Sur d’autres sites (6460)
-
Can -axcorrelate be used for time delay analysis ?
31 octobre 2020, par koralI'm trying to find a way to easily automatically synchronize two audio tracks. I've found the axcorrelate filter in ffmpeg's documentation, and I'm curious if it can be used for time delay analysis with cross-correlation.


I've been playing around with correlating different audio files and opening them in Audacity to see some sort of a pattern that can be detected in the output file, but I wasn't able to see anything that stands out to me.


My observations :


- 

- correlating two same tracks results in mostly empty output
- if I delay one of the input files by one second, the correlation start (time in wav file when for the first time a sound is output) is moved by one second forward, but the delay cannot be calculated since the original start time is unknown
- correlating some original file with that original file delayed by some amount results in gibberish data, that seems random to me








Any help would be appreciated. I found this pdf that uses Praat to detect the cross correlation, but I'd like to keep this FFmpeg only to not ship multiple dependencies to my users.


-
Have ffplay output current time in millisecond resolution
21 août 2020, par 12.yakirWhat are the arguments for
ffplay
to output the duration/time-stamp of the current frame in millisecond resolution (dumping it tostderr
orstdout
, not embedding or overlaying it into the video) ?

Right now playing a video (and pausing it) will look like this :


~$ ffplay -i video.mp4 -hide_banner -loglevel 8 -stats
 2.09 A-V: -0.004 fd= 6 aq= 31KB vq= 84KB sq= 0B f=0/0



Note that the current time, 2.09, is in "centi-seconds" (one hundredth of a second), not millisecond (one thousandeth of a second).


Ideally, it would output only the current time in millisecond resolution :


~$ ffplay -i video.mp4 -hide_banner -loglevel 8 -stats <enter magic="magic" arguments="arguments" here="here">
 2.093
</enter>


-
Grep ffmpeg time/duration to get progress stream ?
2 février 2014, par paulkonIs there a way to grep ffmpeg's unfriendly output to get the progress (time/duration) into a variable ? I've tried this on powershell already but i can't get seem to get a hold of ffmpeg's continuous output via pipe redirection and using the
--line-buffered
flag in grep.Here is what I came up with but it only returns after the encoding process has finished.
ffmpeg -i $input $output 2>&1 | grep --line-buffered -oP "(?<=time=)[0-9:]*"