
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (69)
-
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 (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 (9606)
-
How to execute FFMPEG commands for merging audio and caption in video in android
28 juin 2016, par Tejas ShelkeI am able to merge videos using following code, but i am not getting perfect commands to merge audio and caption in video n how to execute these commands in android.
Videokit vk = new Videokit();
String commandArray[] = new String[]{
"ffmpeg",
"-f",
"concat",
"-i",
list,
"-c",
"copy",
outputFile
};
vk.run(commandArray, Environment.getExternalStorageDirectory() + "/" + "vidkit", true); -
ubuntu - Detect image on screen [on hold]
16 octobre 2018, par Willian ElmyrI’d like to know if there’s any package or command on ubuntu that can detect if a image or similar appears on screen and pipe its output to script.
I would like to work on a video detection script, basically it would search for a few patterns that could always appear on screen like ImageSearch on autohotkey and then download that video through a bash script.
I just want to know if there’s a package or command that can detect a image on screen or another method that could get the same results, there’s no need to help with the rest.
Also it would be better if it could detect non-perfect 1x1 image, as some will have slightly different resolution and quality.
Thanks !
It doesnt necessarily have to be a script, it could be a software that then triggers a script.
Example : What i want
-
There is no audio in the video wich I recording with "android camera" in mobile ffmpeg
30 novembre 2019, par kadr0idI use mobile ffmpeg version v4.3-dev-1181. But I can’t save the video with sound.
This is my code :
_flutterFFmpeg.execute('-y -f android_camera -video_size hd720 -framerate 30 -i 0:0 -f flv \"/storage/emulated/0/file85.flv\"');
Video save perfect but without sound. Maby I do something wrong ?
In support is an example :
Record video and audio into a file with this command :
-y -f android_camera -i 0:0 -r 30 -pixel_format bgr0 -t 00:00:05 <record file="file" path="path">
</record>