Recherche avancée

Médias (1)

Mot : - Tags -/embed

Autres articles (22)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

  • Windows : How to build X264.lib instead of .dll

    25 juin 2015, par user1884325

    I downloaded the X264 source and installed mingw.

    Step 1 :

    Executed this in the MINGW bash :

    ./configure —disable-cli —enable-shared —enable-win32thread -
    - extra-ldflags=-Wl,—output-def=libx264.def

    and then ’make’

    Step 2 :

    Renamed the libx264-142.dll to libx264.dll and Opened up VS2012 Command Prompt and executed this :

    LIB /DEF:libx264.def

    which gave me libx264.lib and object libx264.exp

    Step 3 :

    Included the lib file in a VS2012 project which uses the X264 API.

    Problem :

    When I start the project I get the following error message :

    "The program can’t start because libx264.dll is missing from your computer"

    Question :

    Why is it looking for the dll when I’m linking the static library in ?

    How do I resolve this ? I would like to build a static X264 library which I can link in with my project.

    EDIT :

    I just had to put the dll in the same directory as the project executable.

    However - My question still stands : How do I build a static x264 library ? So I don’t need the dll ?

  • FFmpeg concatenation, no Audio in Final Output

    12 septembre 2016, par user4889724

    I have the following command working in ffmpeg, which adds 1 second of a black frame to the beginning of the video. However, I lose the audio from the original video in the output video. How can I adjust the command to make sure the original audio stays with the final output, or better yet, there is 1 second of "blank" audio at the beginning so it matches the new output video.

    ffmpeg -i originalvideo -f lavfi -i color=c=black:s=1920x1080:r=25:sar=1/1 -filter_complex "[0:v] setpts=PTS-STARTPTS [main]; [1:v] trim=end=1,setpts=PTS-STARTPTS [pre]; [pre][main] concat=n=2:v=1:a=0 [out]" -map "[out]" finaloutputvideo.mp4
  • avformat/ape : Use 64bit for final frame size

    22 mai 2024, par Michael Niedermayer
    avformat/ape : Use 64bit for final frame size
    

    Fixes : CID1505963 Unintentional integer overflow

    Sponsored-by : Sovereign Tech Fund
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/ape.c