Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (81)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (13317)

  • mp4 wont play in Chrome 17, but plays in Safari, IE etc

    12 janvier 2013, par marca

    File is from a Nikon D3s (mov) converted with ffmpeg to mp4.
    Working without problems with all other files (avi, flv, mp4 etc)

    Please see file : http://shootitlive.s3.amazonaws.com/output.mp4
    (Same non working result in Chrome when served from diffrent hosts, and always works in Safari and with flash in Firefox, Chromium)

    /usr/local/bin/ffmpeg -i nonworking.MOV -acodec libfaac -ab 128k -vcodec libx264 -preset slow -crf 30 -threads 0 -s 768x576 -aspect 1.33333333333 -ar 48000 output.mp4

    Cant find anything strange with (but dont really know what to look for) :

    ffmpeg -v 5 -i filename -f null - 2>error.log`

    Any ideas ?

  • ffmpeg how to record and preview at the same time

    28 octobre 2022, par mahdi gh

    I want to capture video+audio from directshow device like webcam and stream it to RTMP server. This part no problem. But the problem is that I want to be able to see the preview of it. After a lot of search someone said pipe the input using tee muxer to ffplay. but I couldn't make it work. Here is my code for streaming to rtmp server. how should I change it ?

    



    ffmpeg -rtbufsize 8196k -framerate 25 -f dshow -i video="Microsoft® LifeCam Studio(TM)":audio="Desktop Microphone (Microsoft® LifeCam Studio(TM))" -vcodec libx264 -acodec aac -strict -2 -b:v 1024k -b:a 128k -ar 48000 -s 720x576 -f flv "rtmp://ip-address-of-my-server/live/out"


    


  • Visual C++ linker can't resolve FFmpeg's external symbols

    25 février 2016, par JustPingo

    I’m making a C++ program and I want to use FFmpeg pre-built for x64, which is a C-compiled library.
    I’m using this code in order to include its header :

    extern "C" {
       #include "libavcodec/avcodec.h"
       #include "libavformat/avformat.h"

       #pragma comment (lib,"G:/Documents/ffmpeg/lib/avcodec.lib")
       #pragma comment (lib,"G:/Documents/ffmpeg/lib/avformat.lib")
    }

    I’m then calling the symbols like I would do for a normal function, for example with av_interleaved_write_frame(out->formatContext, &packet);

    However, when I try to compile it with Visual Studio 2015’s built-in C++ compiler, I get a lot of error like

    Error   LNK2019 unresolved external symbol _av_write_trailer referenced in function "void __cdecl closeArenaVideo(struct VideoOutput *)" (?closeArenaVideo@@YAXPAUVideoOutput@@@Z)  Sparta2 c:\Users\Théo\documents\visual studio 2015\Projects\Sparta2\Sparta2\video.obj  

    for basically any of the symbols I’m refering to.

    I tried to import everything in Visual Studio, to compile with command-line, to manually put FFmpeg’s libraries in the default libraries path, without success.

    Thank you in advance !