
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (98)
-
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 (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (8722)
-
Unable to store pcm audio in .mp4 container file
7 février 2014, par mrsatishIs it possible to store a pcm audio file into .mp4 file ?
I used ffmpeg command "ffmpeg -i tempA.wav -acodec copy temp.mp4" but unable to store it in mp4 container file.
Input #0, wav, from 'tempA.wav' :
Duration : 00:01:36.51, bitrate : 128 kb/s
Stream #0.0: Audio: pcm_s16le, 8000 Hz, 1 channels, s16, 128 kb/s
[mp4 @ 0x7d70e0] Tag [1][0][0][0]/0x00000001 incompatible with output
codec id '65536'Output #0, mp4, to 'temp.mp4' :
Stream #0.0: Audio: pcm_s16le, 8000 Hz, 1 channels, 128 kb/s
Stream mapping :
Stream #0.0 -> #0.0
Could not write header for output file #0 (incorrect codec parameters
?)Where in converting to .AVI (ffmpeg -i tempA.wav -acodec copy temp.avi)
& .MOV (ffmpeg -i tempA.wav -acodec copy temp.mov) file formats works perfectly fine. -
Store extracted frame name inside an array - ffmpeg
19 février 2013, par asprinI'm a complete newbie to C. I'm from PHP background, but it so happens that the code that I wrote in PHP needs to be converted to C. It was Java at first, but now the requirement is C.
After going through some tutorials, I got the basics of C and coded the following to run
ffmpeg.exe
from within a c program#include
#include
int main()
{
char *app = "D:\\ffmpeg\\bin\\ffmpeg.exe -i";
char *input = " D:\\video.mpg";
char *output = " D:\\frames\\image%d.jpg";
char *param = " -r 10";
char str[300];
snprintf(str, sizeof str, "%s%s%s%s", app, input, param, output);
// str contains "D:\ffmpeg\bin\ffmpeg.exe -i D:\video.mpg -r 10 D:\frames"\image%d.jpg
system(str); // <-- working fine, frames are being extracted
/*
do something here to store each extracted frame in an array
so that the array contains image1.jpg, image2.jpg, image3.jpg...and so on
*/
getch();
return 0;
}On compiling and running the program, I'm getting the frames in the output folder as expected. The issue is I want to store each frame name inside an array as it gets extracted. So far, I haven't been able to come across a similar issue and so I decided to create a new thread for it. I'm hoping this is possible and would appreciate a nudge in the right direction.
-
lavfi/stereo3d : remove pointless store
16 avril 2013, par Paul B Mahollavfi/stereo3d : remove pointless store