
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
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 -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
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 (...)
Sur d’autres sites (9533)
-
Still getting FFMPEG "Segmentation fault" with network stream source with the AmazonLinux 2023 distro [closed]
28 décembre 2023, par Matthew DrookerAfter referencing https://docs.yucca.app/en/troubleshooting/Segmentation_fault_core_dumped


And using


FFMPEG "Segmentation fault" with network stream source


I thought I had this solved.
But still having the same issue as documented as fixed.


Im using AmazonLinux 2023 distro in a Lambda custom image.


Im trying to use baseImage from
FROM --platform=linux/amd64 public.ecr.aws/lambda/nodejs:20


Then doing-
RUN dnf install nscd -y
in my Dockerfile allowing the nscd service to be installed per the answer.

But, Im still getting the
ffprobe was killed with signal SIGSEGV
error with the new AmazonLinux Distro.

Has anyone else faced this with the 2023 Distro ? Or have an answer to this question ?


-
Best practice FFmpeg command, for convert video(unknown quality) to .m3u8 with 1080p,720p,480p quality
2 mars 2019, par sadeghI’m working on a video share service like youtube.com
When an user upload a video i need to create a .m3u8 file
below item are important :
1- i don’t know what quality the file have (1080p,720p,480p,360p)
2- i don’t know what format the file have (MPEG4(mp4),flv,AVI,WMV)
3- i have .str subtitle
I need export with this Specification :
1- .m3u8 output support all quality(1080p,720p,480p,360p) if input file quality support
2- .ts files length be the best practice (2sec, 5sec, 10sec or other is better)
3- output file support subtitle
What is the best command(or commands) for create this output using ffmpeg ?
here is a very good .m3u8 that is my target :
https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8
thank you -
AWS Easiest way to generate video thumbnails without transcoding/MediaConvert
6 février 2021, par dfrancaI used to have a pipeline for transcoding video and generate the thumbnail running on MediaConvert.
Due to the high costs and because most of my videos are already on H264 I came to the conclusion that MediaConvert is not necessary
But I still want to have the thumbnail of course, to show on the videos list


I have tried a few approaches :


- 

- Just removed the video output from the MediaConvert -> doesn't work, MediaConvert requires at least one video output, which is annoying, but ok
- Changed my lambda to not create the pipeline and create the thumbnail using ffmpeg -> Works nice for small videos, but I can have videos up to 2GB, and for that I end up on lambda limitations of tmp storage and time (as I have to download the file from S3)






Another approaches I thought about :


- 

- Using EFS attached to the lambda, but it seems that it is a bit expensive, and not sure if it works as I expect
- Moving to a EC2 instance instead of lambda and a SQS to communicate with the instance, but this adds a lot of complexity and moving parts to something that I want to be simple and that has only one function : generate ONE thumbnail, it seems I'm overcomplicating
- Using a client-side solution and capturing the thumbnail on the fly while loading the list of video, not sure if this will work and how performance would be affected.








It would be perfect if AWS provides a similar service as MediaConvert, but that I could have thumbnails only output, but I couldn't find anything, not even close.


Do you have any other idea on how could I approach this in the simplest way possible ?