
Recherche avancée
Autres articles (97)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
L’espace de configuration de MediaSPIP
29 novembre 2010, parL’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
Il permet de configurer finement votre site.
La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)
Sur d’autres sites (10914)
-
The modified audio by ExoPlayer does not match the output saved audio from FFMPEG
29 octobre 2020, par Mouaad Abdelghafour AITALII'm using
ExoPlayer
to modify the pitch and tempo (speed) of an audio file in real-time, since no method provided byExoPlayer
to save the modified audio into SD, I tried usingFFmpeg
to achieve that, but I'm facing an issue, the sound I hear when the audio playing withExoPlayer
is not matching the output ofFFmpeg
:

Here's an example :


Pitch Value : 0.86883157


Tempo Value : 0.8699582800000001


SampleRate Value : 44100


FFmpeg command :


String cmd = "-y -i " + inputNoSpace + " -filter_complex asetrate=" + sampleRate + "*" + pitch + ",atempo=" + tempo + " " + outputNoSpace



My questions :


- 

- Is there anyway to save the modified audio using just
ExoPlayer
? - How I can make the output audio file processing by FFmpeg match the
ExoPlayer audio ?






- Is there anyway to save the modified audio using just
-
Automatically match output file with input file (Applescript x FFMPEG)
2 mars 2018, par WallieI use the following AppleScript as an Automator Service to right click a video file in the finder and burn in a matching subtitle file (.ass) with an ffmpeg terminal command. In this case ffmpeg encodes a new Prores 422(HQ) file.
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
base=$f
ffmpeg -y -i \"$base\" -c:v prores -profile:v 3 -pix_fmt yuv422p10le -vf \"ass=${base%.*}.ass\" -c:a copy \"${base%.*}_sub.mov\";
done"
end tell
return input
end runWould it be possible to automatically match the output file and it’s codec to the input file ?
We use a lot of different input formats due to a mixed windows / mac environment (Prores (mov), dnxhr (mxf/mov)) and I would like to not have 8-12 encoding options in the finder service menu’s of the workstations :).Thanks in advance !!
-
avcodec/options_table : fix strict compliance constant flags to match the strict field
2 mai 2016, par Michael Niedermayer