
Recherche avancée
Autres articles (44)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (4563)
-
Even though I installed ffmpeg , I got "ERROR:spleeter:ffmpeg binary not found"
15 janvier 2023, par KWSKWSEven though I installed ffmpeg , I got error saying "ERROR:spleeter:ffmpeg binary not found"


how can I solve this problem


I installed ffmpeg using "pip install ffmpeg"


-
FFmpeg infile path, my domain
26 avril 2017, par user892134I have a file located at
html://www.example.com/wp-content/music.mp3
I’ve tested and confirmed ffmpeg is installed and have run
exec("ffmpeg -help",$output);
I successfully get an output. Now i want to start converting but i cannot locate the file above. I’ve tried
exec("ffmpeg -i html://www.example.com/wp-content/music.mp3",$output);
exec("ffmpeg -i home/mywebsite/public_html/wp-content/music.mp3",$output);I get no output for either. ffmpeg is located in
/usr/bin/ffmpeg
.How do i solve ?
-
How to convert an mkv (with subtitles) to something Nexus One friendly ?
21 décembre 2011, par Daniel QuinnI have this ffmpeg one-liner that's been good for generating video files for my Nexus One :
ffmpeg -i infile.mkv -acodec aac -s 572x238 -vcodec libx264 -vpre ipod640 -ab 128k -b 512k -f mp4 -strict experimental outfile.mp4
But it does this ignorant of the subtitles in
infile.mkv
— usually not a problem, unless I'm dealing with a non-english movie. In cases like this, I'd like to use the Japanese audio track, and the English subtitles.The funny bit is that I can use
mplayer
to play it using-alang
and-slang
, but don't know how to usemencoder
to make Nexus One friendly videos. I can useffmpeg
to generate Nexus One friendly videos, but can't figure out how to get it to use a specific subtitle track.If someone can solve one of these for me, I'll be a happy camper.