
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (72)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, 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 (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
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 (...)
Sur d’autres sites (7705)
-
Can't Transfer .DAT (mpeg2 codec) Video to Any Other Format [closed]
14 mai 2021, par Juan JinpingI have a PS2 official bonus DVD which is full of 3 hour cutscenes of MGS3. But I don't have my PS2 anymore to watch it. So I decided to transfer lossless or at least the most lossless possible. Because I am some kind of obsessed.


I tried to use FFMPEG but it doesn't look it worked. At least once a minute the video goes blocky, pixelated. I tried the codes given below. I could find way more better videos on YouTube.


Neither of these and their variations worked :

ffmpeg -i DEMO_3.dat DEMO_3.mkv

ffmpeg -i DEMO_3.dat -c:v libx264 -crf 0 DEMO_3.mkv


I also tried it to use 3000k bitrate because it's the original bitrate of this video
ffmpeg -i DEMO_3.dat -c:v libx264 -b 3000k DEMO_3.mkv


Then I thought I could convert them into .png frames then reencode h264 to with "-crf 0". But frames that I extracted were blocky and pixelated too.
ffmpeg -i DEMO_3.dat -r 29.970/1 %06d.png


I wanted to check if my disc is broken or damaged. I downloaded the disc that I own as .iso on the internet and tried the same things but got the same results.


And also the audio is not even extracted eventhough Mediainfo says there is 4 audio tracks. (probably besides English any other 3 dubs and I want them too)


Long story short I want the .dat file with highest quality possible video and all audio tracks in the original mpeg2 codec or h264 codec in mkv container. You can recommend me any other program to do it or just give me code advices.


-
How To Make Make A Video File From Images Using FFMPEG If Your Images Start At A Random Number [duplicate]
13 mai 2019, par teot 59This question already has an answer here :
So I am making a program on my raspberry pi and I am constantly saving pictures in the background and deleting them. So for instance in the images folder I have images from 123.png to 234.png
for now I have been using this command :
os.system("ffmpeg -f image2 -r 15 -pattern_type glob -i 'videos/*.png' -vcodec mpeg4 -y movie.avi")
But it’s unreliable, because it mixes image numbers up
(sorry for bad English)
-
FFMPEG command works in shell ! but not in my node.js
29 juillet 2021, par Kuno KimWhen my ffmpeg command is built by my node.js application it does not run.



error



Unrecognized option 'ss 3.2 -t 1.9 -i videoplayback.mp4 -vf fps=15,scale=240:-1:flags=lanczos,palettegen palette.png'.




command



ffmpeg -ss 3.2 -t 1.9 -i videoplayback.mp4 -vf \ fps=15,scale=240:-1:flags=lanczos,palettegen palette.png




this is my code



var child_process = require('child_process')

function recordVideo() {

var spawn = child_process.spawn;

var args = [
 '-y', 
 '-ss', '3.2',
 '-t', '1.9', 
 '-i', '../getback/bin/videos/videoplayback.mp4', 
 '-vf', ' \\ ', 
 'fps=', '15', 
 'scale=', '320:-1', 
 'flags=','lanczos,palettegen palette.png', 
];



var ffmpeg = spawn('ffmpeg', args);

ffmpeg.stdout.on('data', function (data) {
 console.log(data);
});

ffmpeg.stderr.on('data', function (data) {
 console.log('grep stderr: ' + data);
});

ffmpeg.on('close', (code) => {
 console.log('child process exited with code ' + code);
}); 
};
recordVideo();




what is this error ?
I think.. 'fps=', '15', In the following code 
 '=' options a problem.



I am still learning English.
I'm sorry if it was hard to understand.