
Recherche avancée
Autres articles (62)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
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 (4992)
-
Can't Install FFMPEG with homebrew
6 mai 2021, par dcnaberI tried installing FFmpeg with homebrew today. When I enter "brew install FFmpeg" I get this :




I tried running commands like
brew doctor
andgit -C $(--repo homebrew/core)


I'm using macOS Big Sur btw.


EDIT : I installed FFmpeg as a final solution it seems to be working now. Thanks for helping, guys. I don't know what's wrong with my homebrew though.


-
ffmpeg convert video file with 8 audio channels to multichannel wav
6 avril 2017, par imgoingtoshaboomson run input, parameters
tell application "Terminal"
activate
set filesString to ""
repeat with file_ in input
set filesString to filesString & " " & quoted form of (POSIX path >of file_)
end repeat
do script "for f in" & filesString & " ; do
/Documents/ffmpeg/ffmpeg -i \"$f\" -acodec pcm_s16le \"$f%.*.wav\"
done"
end tell
return input
end runI wrote an applescript to add a right-click service in OS X, but this only takes the first channel and creates a mono wav file. How can i create a multichannel wav to accommodate 8 mono tracks ?
-
ffmpeg convert video file with 8 audio channels to multichannel wav
10 juin 2020, par imgoingtoshabooms

on run input, parameters
 tell application "Terminal"
 activate
 set filesString to ""
 repeat with file_ in input
 set filesString to filesString & " " & quoted form of (POSIX path >of file_)
 end repeat
 do script "for f in" & filesString & " ; do
 /Documents/ffmpeg/ffmpeg -i \"$f\" -acodec pcm_s16le \"$f%.*.wav\"
 done"
 end tell
 return input
 end run





I wrote an applescript to add a right-click service in OS X, but this only takes the first channel and creates a mono wav file. How can i create a multichannel wav to accommodate 8 mono tracks ?