
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (58)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (4692)
-
How to sample `audio/video bit rate and fps ` every second on ffmepg
25 février 2014, par pocI can dump the rtsp streaming into video file by
ffmpeg -y -t 5 -i rtsp://172.19.1.42/live.sdp -acodec copy -vcodec copy lala.avi
Now, I wanna sample the streaming's
audio/video bit rate and fps
every second and dumpinto a text file,I can write a script for helping the work ,How could I get it ?
-
avformat/matroskadec : force 48kHz sample rate when rescaling Opus inital padding
6 juin 2016, par James Almeravformat/matroskadec : force 48kHz sample rate when rescaling Opus inital padding
Mkvtoolnix stores the sample rate of the original stream as reported by the
"OpusHead" stream header instead of 48kHz, the actual sample rate of the Opus
stream.
Ignoring the stored sample rate and forcing 48kHz preserves the correct initial
padding when remuxing such files.Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by : James Almer <jamrial@gmail.com> -
Converting the sample rate of alac files with ffmpeg [on hold]
23 décembre 2014, par sodiumnitrateI am using
ffmpeg
in terminal inOS X
Yosemite. I have alac files I have previously converted from.flac
without realizing that the sample rate is too high for my iPod. Thus, I have a bunch of.m4a
files that I am trying to reduce the sample rate from88,200
to44,100
. I tried the following, which I modified from a command I found elsewhere :for f in *.m4a; do ffmpeg -i "$f" -ar 44100 -y "${f%.m4a}.m4a"; done
This gives me the following message :
buffer @ 0x7ffed8e002a0] Unable to parse option value "-1" as pixel format
Last message repeated 1 times
[buffer @ 0x7ffed8e002a0] Error setting option pix_fmt to value -1.
[graph 0 input from stream 0:0 @ 0x7ffed8e003a0] Error applying options to the filter.
Error opening filters!And overwrote the files with gibberish.