
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (59)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Qualité du média après traitement
21 juin 2013, parLe bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (7558)
-
Revision e8923fe492 : Changes to auto partition size selection. Changes to code to auto select a part
16 août 2013, par Paul WilkinsChanged Paths :
Modify /vp9/encoder/vp9_encodeframe.c
Modify /vp9/encoder/vp9_onyx_if.c
Changes to auto partition size selection.Changes to code to auto select a partition size range
based on data from spatial neighbors.Now looks at the sb_type in each 8x8 block of above
and left SB64.The effect on speed 1 is now weaker giving better
quality but less speed gain. Now also used in speed 2.Change-Id : Iace33a97d5c3498dd2a9a8a4067351941abcbabc
-
FFprobe (part of FFmpeg) command output to variable in a Windows Batch File [duplicate]
12 décembre 2017, par Bazza DownUnderThis question already has an answer here :
-
batch store ffprobe as variable
1 answer
I want to capture the Audio codec in a variable when I execute an FFprobe command within a batch file.
The FFprobe command when executed on its own :
ffprobe "myvideo.mkv" -v error -select_streams a:0 -show_entries stream=codec_name -of default=noprint_wrappers=1:nokey=1
Results in :
aac
I want to check if the audio codec of the video is aac. If so then no need to convert the videos audio.
This is the bat file :
@echo off
for %%f in (*.%1) do (
(Echo "%%f" | FIND /I ".srt" 1>NUL) || (
For /F %%I in ('ffprobe "%%~nf.%1" -v error -select_streams a:0 -show_entries stream=codec_name -of default=noprint_wrappers=1:nokey=1') Do Set StrCodecs=%%I
echo Audio Codecs = %StrCodecs%
echo Creating "New\%%~nf.%1"
ffmpeg -i "%%~nf.%1" -loglevel panic -movflags +faststart -c:v copy -c:a aac -b:a 384k "New\%%~nf.%1"
echo Done with "New\%%~nf.%1"
)
)The error I get with above is :
Argument ’codec_name’ provided as input filename, but ’myvideo.mkv’
was already specified.Even if I remove the single quotes, those in the brackets just after in, and have it look like this :
For /F %%I in (ffprobe "%%~nf.%1" -v error -select_streams a:0
-show_entries stream=codec_name -of default=noprint_wrappers=1:nokey=1)
Do Set StrCodecs=%%IThe result is :
The system cannot find the file ffprobe.
Audio Codecs = Creating
"New\myvideo.mkv"
Everything else works in the bat file.
-
batch store ffprobe as variable
-
twinvq : Split VQF-specific part from common TwinVQ decoder core
4 août 2013, par Kostya Shishkov