
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (64)
-
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 ;
-
Formulaire personnalisable
21 juin 2013, parCette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire. (...) -
MediaSPIP en mode privé (Intranet)
17 septembre 2013, parÀ partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)
Sur d’autres sites (7804)
-
Unable to store pcm audio in .mp4 container file
18 août 2022, 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.


-
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.