
Recherche avancée
Autres articles (106)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
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 (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (9581)
-
Android FFmpeg ComplexCommand to remove frames from the back of a video
17 août 2017, par TixCompiled using
compile ’com.writingminds:FFmpegAndroid:0.3.2’
Currently i have only managed to come up with a complexcommand that removes duplicate frames, and only start to capture frames from frame 25 onwards of a video like so :
String[] complexCommand = {"-y", "-i", yourRealPath, "-an", "-framerate", "60", "-vf", "select='gte(n,25)'", "-vsync", "0", dest.getAbsolutePath()};
select='gte(n,25)'
will return me all frames from frame 25 onwards."-vsync", "0"
will remove duplicate frames.Now i want to ALSO remove certain number of frames from the back of the video, for e.g. i want to remove the last 20 frames. How do I go about doing that ?
-
How to implement multiple video resolutions on front and back-end
25 février 2021, par LanGuuI need a solution or hint on how should I handle multiple resolutions on front-end and back-end. I have been reading about hls, dash, and mse for last few days but the more information I read, the more lost I am.


Right now I have only a microservice for downscaling video using FFmpeg. The FFmpeg returns mp4 with no hls or dash, 4 video resolutions with no sound, and 2 different audio quality.
On front-end, I use react-player. The hardest part is that I need to merge audio and video, synchronize and handle change quality events.
I have found Media source extensions but it won't work I am not sure, but probably because I am using raw mp4 files.


I would like to ask you a few questions


- 

- It is possible to combine video and audio sources without MSE and still keep video and audio separate
- Do I need HLS or Dash to use MSE ?
- What is a difference between progressive download and progressive streaming ?
- If I have to choose what is better right now hls or dash ? what is much easier to implement ?










-
avformat/wtvdec : Check for EOF before seeking back in parse_media_type()
1er août 2021, par Michael Niedermayeravformat/wtvdec : Check for EOF before seeking back in parse_media_type()
Fixes : Infinite loop
Fixes : 36311/clusterfuzz-testcase-minimized-ffmpeg_dem_WTV_fuzzer-4889181296918528Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Reviewed-by : Peter Ross <pross@xvid.org>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>