
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (96)
-
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (10019)
-
FFmpeg error loading shared libraries libx265.so.113
19 février 2019, par SenDjasniI recently installed libx265, I dont know what happened, but when I execute ffmpeg command I got this error :
ffmpeg: error while loading shared libraries: libx265.so.113: cannot open shared object file: No such file or directory
I google it but got nothing specific about it.
I also executed this command :
ldd $(which ffmpeg)
and got the following output :linux-vdso.so.1 => (0x00007ffd147e7000)
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007f1cea052000)
libxcb.so.1 => /usr/lib/x86_64-linux-gnu/libxcb.so.1 (0x00007f1ce9e30000)
libxcb-xfixes.so.0 => /usr/lib/x86_64-linux-gnu/libxcb-xfixes.so.0 (0x00007f1ce9c27000)
libxcb-shape.so.0 => /usr/lib/x86_64-linux-gnu/libxcb-shape.so.0 (0x00007f1ce9a23000)
libasound.so.2 => /usr/lib/x86_64-linux-gnu/libasound.so.2 (0x00007f1ce9723000)
libx265.so.113 => not found
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f1ce9419000)
liblzma.so.5 => /lib/x86_64-linux-gnu/liblzma.so.5 (0x00007f1ce91f7000)
libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007f1ce8fdc000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007f1ce8dbf000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f1ce89f6000)
/lib64/ld-linux-x86-64.so.2 (0x0000559e03a1d000)
libXau.so.6 => /usr/lib/x86_64-linux-gnu/libXau.so.6 (0x00007f1ce87f1000)
libXdmcp.so.6 => /usr/lib/x86_64-linux-gnu/libXdmcp.so.6 (0x00007f1ce85eb000)
librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 (0x00007f1ce83e3000)Could someone help me ?
-
Merge Multiple Videos using node fluent ffmpeg
5 août 2024, par shyamshyrerequirement is to read all the files in the directory and merge them.
 I am using node fluent-ffmpeg to achieve this.
 First of all reading all the files in the directory appending concatenating the string by adding
.input
.


var finalresult="E:/ETV/videos/finalresult.mp4"
outputresult : It consists of all the files read in the directory.

/*Javascript*/
MergeVideo(outputresult);
function MergeVideo(outputresult){
console.log("in merge video");
var videostring = "";

for(i=1;i<5;i++)
 {
videostring = videostring+".input("+"'"+outputresult[i]+"'"+")";
}
console.log("Video String"+videostring);
 var proc = ffmpeg()+videostring
 .on('end', function() {
 console.log('files have succesfully Merged');
 })
 .on('error', function(err) {
 console.log('an error happened: ' + err.message);
 })
 .mergeToFile(finalresult);
}




It gives the following error :



TypeError: Object .input('ETV 22-02-2015 1-02-25 AM.mp4').input('ETV 22-02-2015
9-33-15 PM.mp4').input('ETV 22-02-2015 9-32-46 AM.mp4').input('ETV 22-02-2015 8-
32-44 AM.mp4') has no method 'on'
 at MergeVideo (D:\Development\Node\node-fluent-ffmpeg-master\node-fluent-ffm
peg-master\examples\demo.js:140:6)
 at Object.<anonymous> (D:\Development\Node\node-fluent-ffmpeg-master\node-fl
uent-ffmpeg-master\examples\demo.js:129:1)
 at Module._compile (module.js:456:26)
</anonymous>



Any help is appreciated.


-
how to get a mp4 file with g711 audio format [duplicate]
21 décembre 2017, par xiaoxuThis question already has an answer here :
I have a mp4 file with
Video: mpeg4
andAudio: aac
, now I want to convert it withG711
audio format. I use command lineffmpeg -i output.mp4 -vcodec h264 -acodec pcm_alaw output-G711.mp4
, but an error happened like this, so what happend with my ffmpeg. Thanks for any help.