
Recherche avancée
Autres articles (101)
-
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. -
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté. -
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (7421)
-
some of google drive mp4 files are not playing in jwplayer
14 juin 2017, par devI am working on to play the mp4 videos from google drive but I am facing the problem that some mp4 files are playing well while some mp4 files are not playing at all insteal "file not found" error shows.
This is what I am doing.
link :https://drive.google.com/file/d/0BwnSGB-C8mEGUmY2U1dhcVNiWjQ/view?usp=sharing
My code is :
jwplayer("player_embed").setup ({
file: "https://docs.google.com/uc?id=0BwnSGB-C8mEGUmY2U1dhcVNiWjQ",
type: "mp4",
primary: "flash",
image: image_link,
width: 950,
height: 370,
tracks:[{
file: subtitle_link,
label: "English",
kind : "captions",
default: "true",
}]
});is there any mime type issue or something else I need to do ?
is there any other player that can play videos,subtitles,image poster from google drive ? -
How can I encode a video in a MP4 container using OpenCV 2.4.10 ? (Win 8.1)
24 juin 2015, par Angie QuijanoI have been trying to encode a
vector
that contains images, in a MP4 video. I have tried to use a lot of FOURCC codecs for this purpose, but I have not been successful.
I have achieved to encode my vector in a AVI video using as CV_FOURCC code this : CV_FOURCC(’X’,’V’,’I’,’D’), but I really need to obtain a MP4 video. I have tried the following FOURCC codes : MP4S, MP4V, XVID, DVIX, X264, H264, FMP4, and others than I can’t remember.My line of code is :
VideoWriter(videoName, CV_FOURCC('X','2','6','4'), fps, outputSize)
where videoName = "OutputVideo.mp4", fps = 47, outputSize = [4225x2030].I checked if I built my OpenCV with Ffmpeg support and I got this :
Video I/O:
Video for Windows: YES
DC1394 1.x: NO
DC1394 2.x: NO
FFMPEG: YES (prebuilt binaries)
codec: YES (ver 55.18.102)
format: YES (ver 55.12.100)
util: YES (ver 52.38.100)
swscale: YES (ver 2.3.100)
gentoo-style: YES
OpenNI: NO
OpenNI PrimeSensor Modules: NO
PvAPI: NO
GigEVisionSDK: NO
DirectShow: YES
Media Foundation: NO
XIMEA: NO
Intel PerC: NOI don’t know what I’m doing wrong. Can anyone help me, please ?
Sorry for my english.
-
How create video from image and sound (ffmpeg)
29 novembre 2019, par sibbasaI need to make a video out of images and music. I use this code :
Process process = new Process();
ProcessStartInfo start = new ProcessStartInfo();
start.FileName = @"d:\test\ffmpeg.exe";
string argumets = String.Format("-r 6/1 -i d:\\test\\img\\img%d.jpg -i
d:\\test\\outfiles\\29112019111455.wav -c:v libx264 -c:a aac -b:a 192k -pix_fmt yuv420p -shortest
d:\\test\\outfiles\\out.mp4");
Console.WriteLine(argumets);
start.Arguments = argumets;
start.WindowStyle = ProcessWindowStyle.Minimized;
process = Process.Start(start);
process.WaitForExit();
process.Refresh();But the video is longer than the audio track.
If the audio track is 60 seconds and there are 6 images, then each image should last 10 seconds.Sorry for my English.