
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (87)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)
Sur d’autres sites (12162)
-
HTML5 video source video type codecs parameter with ffmpeg [duplicate]
25 juin 2016, par Matt JoinerThis question already has an answer here :
-
html5 video tag codecs attribute
2 answers
I’m programmatically adding source tags to a HTML5 video tag. I’m using ffmpeg to generate the content for the source tags. How can I get the appropriate codec value for the source type attribute ?
<video>
<source src="{{.StreamURL}}" type="video/mp4; codecs=?">
<video>
</video></source></video> -
html5 video tag codecs attribute
-
WebM Video Codec in Skype 5.0 Group Video
9 novembre 2010, par noreply@blogger.com (John Luther)Our friends at Skype recently released Skype 5.0 for Windows and Mac, which features a beta group video feature using VP8, the video codec in WebM. In the first half of 2010, approximately 40% of Skype-to-Skype calls were video calls and we’re excited that in the future many of those calls will be made using VP8.
To check out the new group video feature, simply download the Skype Software.
Note : For group video to work, everyone on the call needs the new Skype for Windows or Mac, a webcam and a broadband connection.
For more info about Skype group video, visit the Skype website.
-
FFMPEG - create video in with images and video file
15 novembre 2018, par Pramod GehlotI am creating video using ffmpeg
I have some images and video so i want to create video with images and also video
in node jsmy code
ffmpeg() .addInput(__dirname + '/test/fixtures/step_%1d.png')
// .outputOptions(['[0:v]scale=200x200'])
.complexFilter([
// 'scale=640:480[rescaled]',
{
filter: 'zoompan',
options: {
x: '200',
y: 'ih/2-(ih/zoom/2)',
z: 'min(zoom+0.0005,1.5)',
d: '125',
s: "200x200",
},
// "inputs":'[0:v]scale=200x200'
},
])
.format('mp4')
.videoBitrate('1024k')
.videoCodec('mpeg4')
.output(finalVideoPath)
.on("error", function (er) {
console.log("error occured: " + er.message);
})
.on('end', function () {
console.log('Finished processing');
}).run();I want to add video , how we can do in this code, Please help me