
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (63)
-
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 (9831)
-
looking for the right regex expression to pick some specific sentences from a file using java regex
26 novembre 2014, par sachh_ke_nasdiikI am writing a program in java that records the screen.
it is actually something that uses the ffmpeg tool
with a simple GUI.
what I actually need is a way to grab from the following file :- ffmpeg version N-57367-g2f31b73 Copyright (c) 2000-2013 the FFmpeg developers
-
built on Oct 23 2013 20:22:19 with gcc 4.8.2 (GCC)
-
configuration : —enable-gpl —enable-version3 —disable-w32threads —enable-avisynth
— enable->bzlib —enable-fontconfig —enable-frei0r —enable-gnutls —enable-iconv —enable-
libass —enable-libbluray —enable-libcaca —enable-libfreetype —enable-libgsm —enable-libilbc —enable-
libmodplug —enable-libmp3lame —enable-libopencore-amrnb —enable-libopencore-amrwb —enable-
libopenjpeg —enable-libopus —enable-librtmp —enable-libschroedinger —enable-libsoxr —enable-
libspeex —enable-libtheora —enable-libtwolame —enable-libvidstab —enable-libvo-aacenc —enable-
libvo-amrwbenc —enable-libvorbis —enable-libvpx —enable-libwavpack —enable-libx264 —enable-
libxavs —enable-libxvid —enable-zlib - libavutil 52. 47.101 / 52. 47.101
- libavcodec 55. 38.101 / 55. 38.101
- libavformat 55. 19.104 / 55. 19.104
- libavdevice 55. 4.100 / 55. 4.100
- libavfilter 3. 89.100 / 3. 89.100
- libswscale 2. 5.101 / 2. 5.101
- libswresample 0. 17.104 / 0. 17.104
- libpostproc 52. 3.100 / 52. 3.100
- [dshow @ 02482700] DirectShow video devices
- [dshow @ 02482700] "screen-capture-recorder"
- [dshow @ 02482700] DirectShow audio devices
- [dshow @ 02482700] "Microphone (ASUS Xonar DGX Audio Device)"
- [dshow @ 02482700] "virtual-audio-capturer"
- [dshow @ 02482700] "Line In (ASUS Xonar DGX Audio Device)"
- [dshow @ 02482700] "Stereo Mix (ASUS Xonar DGX Audio Device)"
- [dshow @ 02482700] "Aux (ASUS Xonar DGX Audio Device)"
- [dshow @ 02482700] "Wave (ASUS Xonar DGX Audio Device)"
- dummy : Immediate exit requested
only the sentences between the quotation marks,
those that describes the different devices,
that shows up at the end of the file,
ignoring of course the line numbering, that does not appear in the
output file, but inserted here for better fluency.
does anyone have any ideas how to work it out using java regex ?
assuming I am using an enhanced for loop over a string array
checking each line for its contents. -
how to combine multiple ffmpeg commands into one command ?
22 juin 2023, par sonamRight now, I am running separate commands to reduce volume, add fade in at start and fade out audio at end, add silence to start and end of audio. How do I combine all these single command into one ?


ffmpeg -y -i /home/music/memories.mp3 -filter:a "volume=0.5" -write_xing 0 /home/music/memories-volume.mp3
ffmpeg -y -i /home/music/memories-volume.mp3 -af "afade=in:st=0:d=5,afade=t=out:st=5:d=5" -write_xing 0 /home/music/memories-fade.mp3
ffmpeg -y -i /home/music/memories-fade.mp3 -af areverse,apad=pad_dur=5s,areverse -write_xing 0 /home/music/memories-silence-front.mp3
ffmpeg -y -i /home/music/memories-silence-front.mp3 -af apad=pad_dur=5s -write_xing 0 /home/music/memories-silence-end.mp3



-
fluent-ffmpeg throwing SIGSEGV in nodejs
22 mars 2023, par C GI am using fluent-ffmpeg to resize a video, split into frames, etc.
Here's my code :


ffmpeg("./uploads/video.mp4")
 .output("./uploads/small-video.mp4")
 .noAudio()
 .size('320x?')
 .on('end', function() {
 extractVideoFrames("./uploads/small-video.mp4")
 })
 .run()



I am getting a SIGSEGV error, which I suspect might be because of some weird memory issue ?
Here's the error :


Error: ffmpeg was killed with signal SIGSEGV
 at ChildProcess.<anonymous> (/home/admin/superformweb/node_modules/fluent-ffmpeg/lib/processor.js:180:22)
 at ChildProcess.emit (node:events:513:28)
 at ChildProcess._handle.onexit (node:internal/child_process:291:12)
Emitted 'error' event on FfmpegCommand instance at:
 at emitEnd (/home/admin/superformweb/node_modules/fluent-ffmpeg/lib/processor.js:424:16)
 at /home/admin/superformweb/node_modules/fluent-ffmpeg/lib/processor.js:433:16
 at wrapper (/home/admin/superformweb/node_modules/async/dist/async.js:271:20)
 at next (/home/admin/superformweb/node_modules/async/dist/async.js:5795:24)
 at /home/admin/superformweb/node_modules/async/dist/async.js:327:20
 at wrapper (/home/admin/superformweb/node_modules/async/dist/async.js:271:20)
 at next (/home/admin/superformweb/node_modules/async/dist/async.js:5795:24)
 at /home/admin/superformweb/node_modules/async/dist/async.js:327:20
 at /home/admin/superformweb/node_modules/fluent-ffmpeg/lib/capabilities.js:519:16
 at handleExit (/home/admin/superformweb/node_modules/fluent-ffmpeg/lib/processor.js:170:11)

</anonymous>


I have installed ffmpeg first :
sudo apt-get install ffmpeg

Then I installed node packages :

npm install ffmpeg
npm install fluent-ffmpeg