
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (47)
-
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. -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (9401)
-
Convert mp4 to maximum mobile supported MP4 using FFMPEG
7 octobre 2020, par NotepadI would like to use
ffmpeg
to convert anmp4
to 'low size'mp4
...


I need an
mp4
file withh263
video andaac
audio (or some other settings supported by low cost mobile.) My main concern is that the video be playable on most devices.


What would be some possible
ffmpeg
commands to accomplish this ?


Thanks in advance.


-
Convert mp4 to maximum mobile supported MP4 using FFMPEG
31 mai 2016, par NotepadI would like to use
ffmpeg
to convert anmp4
to ’low size’mp4
...I need an
mp4
file withh263
video andaac
audio (or some other settings supported by low cost mobile.) My main concern is that the video be playable on most devices.What would be some possible
ffmpeg
commands to accomplish this ?Thanks in advance.
-
Keep converting video when quitting ssh session [on hold]
13 août 2015, par JimZerI have a dedicated server with Debian Jessie, I connect to it with ssh.
I launched a list of video conversion with ffmpeg using my terminal with ssh. More precisely it convert a list of videos contained in a folder using this command :for file in *.avi; do ffmpeg -i "$file" "${file%.avi}".webm; done
However I would like the list of tasks to continue even if I close my ssh session.
Is that possible ?Thank you in advance for helping me.