
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (21)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (3748)
-
Revision 5e766ccee0 : Use rate/distortion thresholds to control non-RD partition search Compare the e
15 octobre 2014, par Jingning HanChanged Paths :
Modify /vp9/encoder/vp9_encodeframe.c
Modify /vp9/encoder/vp9_speed_features.c
Use rate/distortion thresholds to control non-RD partition searchCompare the estimated rate and distortion to the thresholds scaled
according to the operating block size and determine if further
split partition search will be run. The compression performance of
speed -5 is changed by -0.074%. The encoding speed is 10% - 15%
faster.vidyo1 720p
16545 b/f, 40.492 dB, 11475 ms -> 16535 b/f, 40.486 dB, 10100 msnik720p
16624 b/f, 36.310 dB, 10071 ms -> 16617 b/f, 36.313 dB, 8346 msChange-Id : Ic9197ab5761279ae55d2fb7813b2af0e0db497b8
-
rtmpproto : Don’t mistake app for playpath.
19 octobre 2014, par Kacper Michajłowrtmpproto : Don’t mistake app for playpath.
For URLs "rtmp ://server[:port]/foo" determine what `foo` refers to. If
application name has been defined by the user assume that `foo` is a
playpath, otherwise assume application name.Signed-off-by : Kacper Michajłow <kasper93@gmail.com>
Signed-off-by : Michael Niedermayer <michaelni@gmx.at> -
Bash Syntax near unexpected token 'done'
28 octobre 2014, par YasharI have a bash script running within Automator that utilizes ffmpeg to determine whether a file is avi or not, then convert appropriately. I am new to bash, but I have a feeling it has to do with my "do" being outside my if then statement.
However I am receiving the following error when running through an avi file :
- : -c : line 12 : syntax error near unexpected token `done’
This is my existing code :
for f in "$@"
do
${f%.*}.mp4
if [[ $file == *.avi ]]
then
ffmpeg -i "$f" -acodec libfaac -b:a 128k -vcodec mpeg4 -b:v 1200k -flags +aic+mv4 -movflags faststart "${f%.*}.mp4"
mv "${f%.*}.mp4" /Users/admin/Documents/Movies/
rm "$f"
else
ffmpeg -i "$f" -c copy -movflags faststart "${f%.*}.mp4"
mv "${f%.*}.mp4" /Users/admin/Documents/Movies/
rm "$f"
doneFor reference, this furthest I’ve reached with working code :
for f in "$@"
do
${f%.*}.mp4
ffmpeg -i "$f" -c copy -movflags faststart "${f%.*}.mp4"
mv "${f%.*}.mp4" /Users/yasharsahaleh/Documents/Movies/
rm "$f"
doneThis is the code as it appears within Automator :