
Recherche avancée
Médias (1)
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (53)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Les notifications de la ferme
1er décembre 2010, parAfin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
Les notifications de changement de statut
Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
À la demande d’un canal
Passage au statut "publie"
Passage au (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (6706)
-
License or not ? As website owner do i have to pay license for using ffmpeg (x264) -> mp4 decoding in my webiste ?
28 août 2014, par lindermanI am very confused about my legal or illegal rights to use H.264 mp4 file.
I had long time reading various websites about should i pay license or not ... still cant understand ..
So here is the exact situation :
I have website , where users can upload their videos. Videos are taken with their smart-phones or home cameras , or webcam etc.
After they upload their videos , i am using FFMPEG (x264) to convert the video from 3gp, mov, or even "mp4 to mp4".
Then other users can watch these decoded videos on my website.
I am not charging the end users anything. My website is free for uploaders and viewers.
You will be right if you say that my website have the same purpose as youtube - and you will be right.. video sharing !
So ME - as website owner , hosting buyer and ffmpeg user ... should i have to pay license ? OR ABANDON THE MP4 decoding in my website ?
Thank you
-
Using NReco.VideoConverter commercially [closed]
1er octobre 2020, par BillyDayHi I am looking at using NReco.VideoConverter commercially for a product were looking at building, it will be used to generate videos but I'm a bit unsure on the licensing terms.


If we have an NReco enterprise license according to the terms we can use it. However when you run NReco.VideoConverter for the first time it generates FFMpeg.exe.


The terms of FFMpeg.exe is a little confusing and if NReco are not following the "License Compliance Checklist" it would fall under GNU General Public License (GPL) version 2 which can not be distributed commercially does anyone know if NReco is ok to use commercially or any guidance would be much apricated


Thanks all.






-
lavc/vaapi_decode : add missing flag when picking best pixel format
5 août 2022, par Philip Langdalelavc/vaapi_decode : add missing flag when picking best pixel format
vaapi_decode_find_best_format currently does not set the
VA_SURFACE_ATTRIB_SETTABLE flag on the pixel format attribute that it
returns.Without this flag, the attribute will be ignored by vaCreateSurfaces,
meaning that the driver's default logic for picking a pixel format will
kick in.So far, this hasn't produced visible problems, but when trying to
decode 4:4:4 content, at least on Intel, the driver will pick the
444P planar format, even though the decoder can only return the AYUV
packed format.The hwcontext_vaapi code that sets surface attributes when picking
formats does not have this bug.Applications may use their own logic for finding the best format, and
so may not hit this bug. eg : mpv is unaffected.