
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (57)
-
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
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 (...)
Sur d’autres sites (10947)
-
Ffmpeg output files not available immediately for use
11 avril 2018, par virengujariyaI am executing split video Ffmpeg command on Android and it creates
output_%d
files to SD card (external storage)Once command is executed and finished, files are not appearing immediately until I open Gallery App
I tried running media scanner for newly created directory but I see that directory is empty and has no files available immediately.
-
Files of ffmpeg after installation on mac
31 janvier 2018, par HélderWhile reading this post on motion vector on SO, I went to my mac system files and tried to find the vf_codecview.c and frame.c files but without success.
Does anyone know where they are located after we install ffmpeg ?
-
FFmpeg Concatenate a portion of the files
26 avril 2015, par Ziad HalabiI am using FFmpeg in order to mix wav files on Android. I am able to concatenate wav files by printing them to a list then run the command to concatenate them.
private void concatenate_wave_files(String path_list, String output_path){
String cmd_notes = "-f concat -i "+path_list+" -y "+output_path;
ffmpegCmd(cmd_notes);
}Is it possible to concatenate a portion of the files, for example if I have 2 wav files f1 and f2. And I want to get as a result a concatenation of half of f1 and f2 ?