
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (81)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (11883)
-
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


-
using default poster image with video and audio tags
23 décembre 2016, par Ravinder PayalI have a web-application where users can share music and videos ( will be saved on sme-server utilized by Web-Application ) and as we know some audio /video files have posters/thumbnails included/attached with them.
NOW, I want to show those posters with audio or video in HTML5.
I know about poster tag, but it needs a separate image file to show. However, I want to show image file attached with song (audio / video).
Any suggestion related anyjava-script
or HTML api will be appreciated.
I know about obtaining poster images withff-mpeg
(or similar libraries), but that will add an extra work load on my server. Thanks.Note :-I may consider any server side efficient solution alo.
Thanks in advance.