
Recherche avancée
Autres articles (30)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (4918)
-
piping variable to another one fails
26 mai 2021, par ilkoBasically, I would like to pipe ffmpeg to qaac from variables. The following works only if it's all written on a single line :


set "var1=cmd1"
set "var2=cmd2"

!var1! | !var2!



and returns this error : "The filename, directory name, or volume label syntax is incorrect".
DelayedExpansion is enabled, as you can see. And here is the whole command in short :


ffmpeg -i !input! -f wav - | qaac - -o !output!



My question is, is it even possible to pipe from var to var ?


-
Using ffmpeg in Powershell
27 avril 2016, par Matthew GoodeCan’t find much information on this, as I believe it’s a pretty noobish problem and there aren’t really any tutorials on it. Can anyone explain how I can use ffmpeg in a powershell script ? I downloaded ffmpeg and I have the path to ffmpeg.exe. Shouldn’t I be able to do something like this ?
"C:\path\ffmpeg.exe" -i stuff.mp3 stuff.wav
It returns an error message along the lines of -i not being a recognized parameter. Am I missing something pretty basic here ? Thanks for any help. I’m trying to convert some audio files between .wav, .mp3. and .flac, and if anyone has any better suggestions than ffmpeg then please let me know.
-
FFMPEG - avformat_open_input() always return error with flv file
23 septembre 2015, par Tony Thanconst char* filename = "D:\\abc.flv";
err = avformat_open_input(&ic, filename, NULL, 0);This function always returns error when filename is
*.flv
.
If I use file mp4(*.mp4)
, it’s ok.Please help me find the cause of this problem !!