
Recherche avancée
Autres articles (39)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (4236)
-
Save two video streams in one video file c#, Windows 8 application [on hold]
19 septembre 2014, par manosI am developing a Windows store application which will be able to record video from two video sources (e.g. two usb cameras or usb camera and embeded tablet camera) and then save the two video streams in one video file. So, when the saved video will play, it will show a large video frame (video from camera 1) and inside that, in the top right corner, a smaller video frame (video from camera 2). Basically, i want to render one video on top of the other. I think the process is called picture in picture, but I am not 100% sure. I am able two capture the 2 video streams (same length, same video quality) but I do not know how to proceed after that. How to do the rendering. Do I save the streams into two files and then process those files or do i need to process the streams directly (merge them) and then save to file ?
I have read that you can do something like that by using ffmpeg libraries. But so far I have not managed to find any c# code to it. Any ideas ?Thanks in advance,
Manos -
Is there any way to provide different video qualities in my web application without converting each video to each format ?
15 octobre 2019, par Dheeraj Arorai am building a web application which will handle thousand of videos. Currently, I am using ffmpeg to convert each video to 4 formats(1080,720,480,340px). It consumes lot of memory and time to upload for each video. Is there any best way that allows user to stream my videos in different video quality without converting each video ?
-
How can limit video duration before uploading and implement content detection in an ASP.NET Core 6 backend
8 avril 2024, par ashok patelWe are working on a project, essentially a social media app. In this project, I'm handling the backend development. Users can upload videos of up to one minute duration.


Before saving the videos to the server, I need to convert all uploaded videos to MP4 format.


Additionally, I also need to check if the videos contain any adult content. I am unsure how to start this task.


I have downloaded an MP4 video from a website https://www.quickpickdeal.com/coding/download-sample-mp4-video-mp4-test-videos, and installed ffmpeg for converting video Mp4 for before saving it to the server but I don't know how to limit 1min video & check if the videos contain any adult content.


Can someone suggest how I can achieve these tasks in ASP.NET Core 6 ?