
Recherche avancée
Médias (2)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (30)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
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 -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)
Sur d’autres sites (5898)
-
Split video with MobileFFmpeg
17 septembre 2020, par Vitor FerreiraI need to split a video into pieces smaller than 15 seconds using ffmpeg on android.


For this I am using this library to use FFmpeg and tried to use the code below, but it did not work.


private val destPath = "/storage/emulated/0/DCIM/TESTFOLDER"



if (video != null) {
 val command =
 "ffmpeg -i $video -c copy -map 0 -segment_time 00:00:15 -f segment $destPath output%03d.mp4"

 mProgressDialog.show()

 try {
 val executionId = FFmpeg.executeAsync(command) { _: Long, returnCode: Int ->
 when (returnCode) {
 RETURN_CODE_SUCCESS -> {
 mProgressDialog.dismiss()
 Toast.makeText(
 this,
 "Async command execution completed successfully",
 Toast.LENGTH_SHORT
 ).show()
 }
 RETURN_CODE_CANCEL -> {
 mProgressDialog.dismiss()
 Toast.makeText(
 this,
 "Async command execution cancelled by user.",
 Toast.LENGTH_SHORT
 ).show()
 }
 else -> {
 mProgressDialog.dismiss()
 Toast.makeText(
 this,
 "Async command execution failed",
 Toast.LENGTH_SHORT
 )
 .show()
 }
 }
 }
 } catch (e: Exception) {
 e.printStackTrace()
 Toast.makeText(this, e.message, Toast.LENGTH_SHORT).show()
 }
 }



I tried with
video = /data/user/0/com.vitor238.videoEditor/cache/e4c9d2f3-6127-43fa-a293-e0de614f4993.mp4
andvideo = content://media/external/video/media/187130
but neither worked.

-
Showing in-video visual progress bar with FFMPEG ?
20 mai 2024, par TaapoAs OBS Studio lacks a visual indicator to show how far a video has progressed (and when you need to advance to the next scene), I was wondering if there is a command-line option (or solution) to get FFMPEG to re-encode the video and show a progress bar at the bottom of the video that shows how long the video has been playing so far.


Is there such a feature ?


-
How convert High bitrate mp3 to lower rate using ffmpeg in android
23 mars 2018, par Android TeamWe want to convert 320kbps mp3 file to 128kbps mp3 so currently we are using below ffmpeg command but its not working.
ffmpeg -i input.mp3 -codec:a libmp3lame -qscale:a 5 output.mp3
Result :-the output bitrate same as input mp3.
And we are following the FFmpeg Encoding guideline for that here is the link :- https://trac.ffmpeg.org/wiki/Encode/MP3
so please suggest any solution.