
Recherche avancée
Autres articles (111)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...) -
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 (...)
Sur d’autres sites (10725)
-
ffmpeg : How to set AVFormatContext from NSData
21 janvier 2014, par SUKIYAKII'm using FFmpeg library in Objective-C.
I want to set AVFormatContext from NSData which contain imagedata.
I know I can set AVFormatContext with av_open_input_file().
so writing contents of NSData to a temporary file, I can do it like this.[data writeToFile:@"./temp.mov" atomically:YES];
av_open_input_file(&pFormatCtx, "./temp.mov", NULL, 0, NULL);
.
.
.
NSFileManager *fm = [NSFileManager defaultManager];
[fm removeFileAtPath:@"./temp.mov" handler:nil];but, I don't want to use temporary file.
Does anyone know smart way ?
sorry my poor English.
Thanks
-
Make a video made of frames in subfolders with ffmpeg
6 mars 2021, par R3JlZW4gYW5kIEJsdWUgZ2FtaW5nI have multiple frames of a video divided into parts in multiple subfolders


Parte 1/Parte 1.1/Parte 1.1.1/000000000000001.png
Parte 1/Parte 1.1/Parte 1.1.1/000000000000002.png
...
Parte 1/Parte 1.1/Parte 1.1.2/000000000000307.png
...
Parte 3/Parte 3.3/Parte 3.3.3/000000000008284.png < The last one



How a can make one video in h265 without an audio track with ffmpeg ?


English ? Not my primary language


-
Trim and loop audio to the length of video
20 mai 2020, par Nguyễn TrọngI have a 30 second video and a 120 second audio.
I ran the following command to loop audio into the video but it only stopped when the audio length was reached even though I added "-shortest".
Help me. (sorry for my bad english)



String[] cmd = {"-y", "-i", video.mp4, "-i", audio.mp3,
 "-filter_complex",
 "[1:a]atrim=0:100,asetpts=PTS-STARTPTS," +
 "asetrate=44100,aloop=1:size=1*44100," +
 "aformat=sample_fmts=fltp:sample_rates=44100:channel_layouts=stereo,volume=1.0[bg];" +
 "[0:v][bg]concat=n=1:v=1:a=1[video]", "-shortest",
 "-map", "[video]", "-c:v", "libx264", "-c:a", "aac",
 "-preset", "veryfast", output, "-hide_banner"};