
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (68)
-
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
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" (...) -
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 (...)
Sur d’autres sites (7946)
-
Set GOP length for HEVC-Encoding in ffmpeg
18 juin 2018, par nm82I want to encode an xxx.y4m file to hevc and set the GOP-length to a particular value, open and closed gop.
To encode I’m using :
...>ffmpeg -i xxx.y4m -c copy xxx.hevc
this gives me the hevc-encoded file, now I want to set a particular gop-length
...>ffmpeg -i xxx.y4m -c:v libx265 -keyint=1 -open-gop=1 -c copy xxx.hevc
is not working because "option not found"
kind regards
-
ffmpeg UDP streaming to HLS/mp4 streaming output
15 septembre 2021, par Mike-Tracy EdgarI'm trying to convert UPD video streams to HLS/mp4 output using ffmpeg.


My current command line looks like this :


@echo off


cd C :\FFMPEG


ffmpeg -i udp ://@225.1.50.6:8208 -codec copy http://192.168.10.1:8090/go10.mp4


@echo off


pause


I can't get it to work and any help would be appreciated !!!


I've also tried this :


@echo off


cd C :\FFMPEG


ffmpeg -i udp ://@225.1.50.6:8208 -codec : copy -vbsf h264_mp4toannexb -strict experimental -f mpegts http://192.168.10.1:8090/go10.mp4


@echo off


pause


I see the traffic being restreamed in wireshark but it would not display on my video modal. The modal works when set to UPD and displaying the original stream


-
swscale : Take the destination range into account for yuv->rgb->yuv conversions
18 février 2022, par Martin Storsjöswscale : Take the destination range into account for yuv->rgb->yuv conversions
The range parameters need to be set up before calling
sws_init_context (which selects which fastpaths can be used ;
this gets called by sws_getContext) ; solely passing them via
sws_setColorspaceDetails isn't enough.This fixes producing full range YUV range output when doing
YUV->YUV conversions between different YUV color spaces.Signed-off-by : Martin Storsjö <martin@martin.st>