Recherche avancée

Médias (91)

Autres articles (75)

  • 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 ;

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (9430)

  • When creating ffmpeg segments instead of "-t" I cannot move inside the resulting MP4 file [closed]

    2 mai 2024, par pavlii

    We are using ffmpeg for grabbing X11 session and we had changed a bit the commant run. I will write only the different part of the command ; the rest were maintained so are not important for this problem :

    


    ffmpeg ..... -t 00:14:58 (old command)

    


    ffmpeg ..... -f segment -segment_time 900 -strftime 1 (new command)

    


    Resulting files are (in both cases) MP4. But in new - using segments - variant I am able to open the file in VLC player as usual but I cannot do any location inside. So I have to wait for example 700s to see what had happened at that time - I cannot use VLC slider to muve to that position.

    


    I am sure there is parametric solution I cannot find out yet :-)

    


    Many thanx for any ideas ; in case of further details no problem to add them.

    


    Regards, Pavel

    


    I am just browsing internet whether I find any tip for possible solution. I expected the behaviour like before, i.e. to be able to move to any location in resulting MP4 file when played back.

    


  • lavu/hwcontext_vulkan : Support write on drm frame

    11 juin 2024, par Haihao Xiang
    lavu/hwcontext_vulkan : Support write on drm frame
    

    Otherwise nothing is written into the destination when a write mapping
    is requested.

    For example, a vulkan frame mapped from a drm frame (which is wrapped as
    a vaapi frame in the example) is used as the output of scale_vulkan
    filter, it always gets a green screen without this patch.

    ffmpeg -init_hw_device vaapi=va -init_hw_device vulkan=vulkan@va
    - filter_hw_device vulkan -f lavfi -i testsrc=size=352x288,format=nv12
    - vf
    "hwupload,scale_vulkan,hwmap=derive_device=vaapi:reverse=1,format=vaapi,hwdownload,format=nv12"
    - f nut - | ffplay -

    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] libavutil/hwcontext_vulkan.c
  • Oddly-named file "not found" when trying to move/copy via MacOS Terminal [closed]

    15 juin 2024, par Ben C

    This is a head scratcher.

    &#xA;

    I need to move these three oddly-named files from an external 2.5" SSD to my desktop. The file names were intended to have variables replaced by date info, however, clearly it didn't work. So I'm left with these filenames that MacOS seems to want to interpret rather than treat as a string. I wish it was as easy as tossing in single quotes or escaping chars, but so far, that hasn't worked.

    &#xA;

    Files: Test01-$(internal:date_y)-$(internal:date_m)-$(internal:date_d)-.mp4 Test01-$(internal:date_y)-$(internal:date_m)-$(internal:date_d)-0001.mp4 Test01-$(internal:date_y)-$(internal:date_m)-$(internal:date_d)-0002.mp4

    &#xA;

    I'm on MacOS. In the Finder, the files are not visible. But they are not hidden files.

    &#xA;

    In Terminal, however, when I navigate to "/Volumes/TestDrive", then run a quick "ls", I can see all three files no problem. Including permissions, size, owners, full filename, etc.

    &#xA;

    However, when I attempt to move the files to my desktop, and rename in the process (even if I don't rename), Terminal tells me that "No such file or folder can be found" or something very close to that.

    &#xA;

    I've tried using mv and cp commands to put the filename in single quotes so the filename is read literally. Yet, I'm still given feedback that the file cannot be transferred because it cannot be found or doesn't exist.

    &#xA;

    mv &#x27;Test01-$(internal:date_y)-$(internal:date_m)-$(internal:date_d)-.mp4&#x27; ~/Desktop/Test01-01.mp4&#x27; &#x27;cp &#x27;Test01-$(internal:date_y)-$(internal:date_m)-$(internal:date_d)-.mp4&#x27; ~/Desktop/Test01-01.mp4

    &#xA;

    When I try to escape special characters instead of quotes, I am also told the file doesn't exist. But clearly it does when I list out the contents of the drive. And there's only 3x .mp4 files, two hiddne files .fseventsd and some spotlight file.

    &#xA;

    mv Test01-\$\(internal\:date_y\)-\$\(internal\:date_m\)-\$\(internal\:date_d\)-.mp4 ~/Desktop/Test01-01.mp4

    &#xA;

    I've tried copying by inode. No luck. I've tried pulling the videos into ffmpeg (CLI based media mgmt tool) to see if I can get some info on the files, and same thing, ffmpeg (or ffprobe) both will tell me the file doesn't exist...even though I can list the files and see that it does.

    &#xA;

    I hope I'm missing something obvious, but but it seems all the obvious approaches are not yet working for me.

    &#xA;

    So my question is, what do I need to do to make these files "exist" so that I can rename them and back them up ? Happy to go down any rabbit hole.

    &#xA;

    Thanks in advance !

    &#xA;