
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (21)
-
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 -
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté. -
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 (3293)
-
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 ?


-
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.

-
Video frames with timestamp or export frame name and timestamp to excel file
20 avril 2022, par Melodic_KneeI need to break a video into frames (60fps) and frame name must be in the fashion of %d_hh-mm-ss.ms.png, Or, any solution that gives frame name, and the time in excel file will work


Note : - time here must be the time at which the frame appeared in the video