Recherche avancée

Médias (0)

Mot : - Tags -/performance

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (95)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

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

  • 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 (3949)

  • Evolution #3964 : mise en forme minimum des formulaires

    6 juin 2018, par b b

    Amha, ces styles ne doivent concerner que les formulaires généré par SPIP ou par un plugin ou un squelette. Et comme les choses sont bien faites, on a une spec à ce sujet qui indique bien qu’un formulaire "SPIP" doit porter la classe formulaire_spip, cf :

    https://www.spip.net/fr_article3791.html

    Il suffit donc d’appliquer cette classe à n’importe quel formulaire pour bénéficier des styles fournis par SPIP, c’est pas mal non ?

    Si on laisse les choses en l’état, tous les gens qui insèrent des formulaires "externes", mailchimp par ex, ou l’exemple que je cite pour les cartes GIS, vont devoir surcharger les styles de form.css, ce qui ne me semble pas très pratique et sympa.

  • Using ffmpeg to read SRTP input

    9 août 2018, par mulg0r

    Related to question and answer in using-ffmpeg-for-stream-encryption-by-srtp-in-windows, I see how to transmit a file as SRTP output flow and it’s played with ffplay.

    Well, I’m trying to do the opposite operation : I need to launch a ffmpeg that reads SRTP input and saves a mpegtsfile into disk.

    I’ve tried something like this :

    1. Launch ffmpeg to generate a SRTP output flow (same step than previous link)

      ffmpeg -re -i input.avi -f rtp_mpegts -acodec mp3 -srtp_out_suite AES_CM_128_HMAC_SHA1_80 -srtp_out_params zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz srtp://127.0.0.1:20000

    2. Launch ffmpeg, not ffplay, to get this output as a new input and save it to a mpegts file, according to ffmpeg-srtp-documentation

      ffmpeg -i srtp://127.0.0.1:20000 -srtp_in_suite AES_CM_128_HMAC_SHA1_80 -srtp_in_params zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz -vcodec copy -acodec copy -f mpegts myfile.ts

    And I get :

    srtp ://127.0.0.1:19000 : Invalid data found when processing input

    Can anyone help me, please ?

  • ffplay / ffmpeg with audio and video filters

    20 juillet 2018, par user10104150

    i tried to modify a already existing code for ffplay for hours, but I could not get it.
    I could not find a manual for vertical and horizontal stacking parameters. I’m always getting invalid argument errors when I try to adopt it to my needs.
    So I’m asking here for help.

    My idea is based on that : ffplay / ffmpeg setup table with audio and video filters

    The working code that I modified a little but want to modify further without luck is :

    ffplay -f lavfi \
            "amovie=in.mp4,asplit=3[sv][eb][av]; \
             [sv]showvolume=b=4:f=0:ds=log:c=VOLUME:w=720:h=68[sv-v]; \
             [eb]ebur128=video=1:size=720x540:meter=18[eb-v][out1]; \
             [av]avectorscope=s=720x540:zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7[av-v]; \
             [sv-v][eb-v][av-v]vstack=3[1c]; \
             movie=in.mp4,split=4[v][wf][wfc][vs]; \
             [wf]waveform=m=1:d=0:r=0:c=7[wf-vus]; \
             [wf-vus][v]scale2ref=iw:1220-ih[wf-va][sig]; \
             [wf-va]setsar=1[wf-v]; \
             [wfc]waveform=m=0:d=0:r=0:c=7,scale=610x610,setsar=1[wfc-v]; \
             [vs]vectorscope=m=color3:g=color,scale=610x610,setsar=1[vs-v]; \
             [sig][wf-v]vstack[2c]; \
             [wfc-v][vs-v]vstack[3c]; \
             [1c][2c][3c]hstack=3,scale=1920:-1[out0]"

    I’d like to change it to that style - I’m not yet allowed to post images directly in this question, so I need to link it :

    Link to image how I’d like the layout to be

    I’d like to have the video shown in 1920x1080 (keeping aspect ratio, downscale if necessary).