
Recherche avancée
Autres articles (74)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
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 (7978)
-
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.