
Advanced search
Medias (91)
-
Géodiversité
9 September 2011, by ,
Updated: August 2018
Language: français
Type: Text
-
USGS Real-time Earthquakes
8 September 2011, by
Updated: September 2011
Language: français
Type: Text
-
SWFUpload Process
6 September 2011, by
Updated: September 2011
Language: français
Type: Text
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 May 2011
Updated: July 2013
Language: français
Type: Text
-
Podcasting Legal guide
16 May 2011, by
Updated: May 2011
Language: English
Type: Text
-
Creativecommons informational flyer
16 May 2011, by
Updated: July 2013
Language: English
Type: Text
Other articles (60)
-
MediaSPIP v0.2
21 June 2013, byMediaSPIP 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 (...) -
MediaSPIP version 0.1 Beta
16 April 2011, byMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...) -
Publier sur MédiaSpip
13 June 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
On other websites (6815)
-
x86/vvcdec: inter, add optical flow avx2 code
20 August 2024, by Nuo Mix86/vvcdec: inter, add optical flow avx2 code
BDoF used about 10%–25% of the CPU for some clips.
Here are the FPS for one run; please ignore the negative values, as they may be due to round-to-round variationclips | before | after | delta
|--------|-------|------
RitualDance_1920x1080_60_10_420_37_RA.266 | 310.0 | 363.0 | 14.60%
NovosobornayaSquare_1920x1080.bin | 322.3 | 339.7 | 5.12%
Tango2_3840x2160_60_10_420_27_LD.266 | 71.0 | 68.7 | -3.35%
RitualDance_1920x1080_60_10_420_32_LD.266 | 250.0 | 245.3 | -1.92%
Chimera_8bit_1080P_1000_frames.vvc | 359.3 | 422.7 | 15.00%
BQTerrace_1920x1080_60_10_420_22_RA.vvc | 142.3 | 147.7 | 3.66%Reviewed-by: James Almer <jamrial@gmail.com>
-
How to extract video's file volume information using FFMPEG?
31 July 2013, by Oberdan NunesWe need to extract the volume information for every second from a video file in order to produce a graphical representation of volume changes during the video progress.
I'm trying to useFFMPEG
with audio filter but I get stucked in how to extract the volume information for every second (or frame) and then export this information to some report file.Thanks in advance.
-
ffmpeg volume fade error when executing on Android device
31 January 2017, by Dean WildI execute ffmpeg with the following arguments:
-threads 0 -i concat:/data/test-l3vRnL5DwJ18ZOeZ2.mpg -i /data/soundtrack.aac -shortest -strict -2 -acodec aac -c:v libx264 -preset ultrafast -vf scale=1024:576 -r 15 -af volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame -y /storage/Test.mp4
I’m fading the audio using:
-af volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
ffmpeg errors giving me the following:
log: [Parsed_volume_0 @ 0xb7bda9d0] [Eval @ 0xbee3cb28] Missing ')' or too many args in 'lt(t'
log: [Parsed_volume_0 @ 0xb7bda9d0] Error when evaluating the volume expression 'if(lt(t'
log: [AVFilterGraph @ 0xb7bda8c0] Error initializing filter 'volume' with args 'if(lt(t'
log: Error opening filters!I’ve based this on the example given in https://www.ffmpeg.org/ffmpeg-filters.html#volume
Any ideas why it does not like my syntax?