Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (70)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • XMP PHP

    13 mai 2011, par

    Dixit 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 (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (10702)

  • Anomalie #3536 : Incompatibilité avec le navigateur Lynx si forcer_lang=true

    31 août 2015, par Raphaël MELIOR

    Oups, pour "config/mes_options.php" les balises ont été supprimés dans mon ancien message :
    (?php<br />$GLOBALS['forcer_lang']=true;<br />?)
    Remplacez "(" et ")" par "plus petit que" et "plus grand que"

  • Remove Static Pixels from a Video to Mimic a Green Screen Effect [closed]

    2 août 2021, par nKrkan

    I have a video that's 50 seconds in length, resolution of 480x480 and 16 frames per second.

    &#xA;

    There is a person talking in it, with the background being static I thought if there's a way
    &#xA;to remove those static pixels (background) and just extract the moving pixels (foreground)
    &#xA;and possibly mimic a green screen effect ?

    &#xA;

    I was thinking on writing a picture-by-picture comparison tool to do such thing but I don't
    &#xA;believe I'm up to the task, or maybe It's laziness.

    &#xA;

    And now I know, some of you will point out that the video has compression artifacts and that
    &#xA;might cause some problems but It doesn't have to be Studio quality stuff.

    &#xA;

    I tried the ffmpeg command from this question : Remove random background from video using ffmpeg or Python
    &#xA;And it does mask the person, but... I couldn't quite get it to work, apparently putting the
    &#xA;reference image in the input makes that image burned into the video, thus having no way to
    &#xA;remove it, but it did mask the background as black and the person as greenish, so still not a
    &#xA;viable way to do it.

    &#xA;

    Have also tried some Python projects I've found on the GitHub but none of them worked as
    &#xA;I expected.

    &#xA;

    So, what I thought to do is simply compare the first and the second frame of the video, check
    &#xA;all the pixels by comparing them with the two sources, and change those that stay within a
    &#xA;certain range of the initial pixel value.

    &#xA;

    I should point out I'm not very knowledgeable with mathematics and the majority of the
    &#xA;methods used in these type of things, but perhaps someone could point me to an interesting
    &#xA;source to read and learn, or by providing an alternative to the methods aforementioned above.

    &#xA;

  • FFmpeg - Rotating at angle

    23 septembre 2017, par connor

    I’ve been working through FFmpeg, but I have been unable to get a rotation to run from the examples they have on their site. I am trying to "wiggle" a video back and forth at a fixed point on the bottom - think a head moving left to right (and so on).

    I am attempting to do this with the filter "rotate" (https://ffmpeg.org/ffmpeg-filters.html#rotate). Attempting to use their examples, I get an error.

    This is what I have so far :

    ffmpeg -i vid1.mp4 -i vid2.mov -loop 1 -i image.png -filter_complex "\
       [2:v]alphaextract, scale=240x160[mask];\
       [0:v] scale=240x160, rotate=A*sin(2*PI/T*t) [ascaled];\
       [ascaled][mask]alphamerge[masked];\
       [1:v]scale=480x360[background];\
       [background][masked]overlay=120:20"\
       -c:a copy 65B6354F61B4AF02_HD_sq.MOV

    I am using "rotate" directly from an example in an attempt to get something to run at all.

    The error I get back is :

    [Parsed_rotate_3 @ 0x7ff4476045e0] [Eval @ 0x7fff5b3e3f00] Undefined constant or missing '(' in 'T*t)'
    [Parsed_rotate_3 @ 0x7ff4476045e0] Error occurred parsing angle expression 'A*sin(2*PI/T*t)'
    [Parsed_rotate_3 @ 0x7ff4476045e0] Failed to configure output pad on Parsed_rotate_3
    Error reinitializing filters!
    Failed to inject frame into filter network: Invalid argument
    Error while processing the decoded data for stream #1:0

    If I remove ’A’, ’T’, ’sin’, etc, rotate does actually work, but far from the desired behavior.

    Am I missing something to expose those params ?