Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (56)

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

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

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

Sur d’autres sites (8766)

  • Looking function in wrong DLL

    23 avril 2021, par Samuel

    I link avcodec.lib, .... avxxx.lib (ffmpeg library) to my vs2008 project, but show the error message box "procedure entry point could not be located in the dynamic link library" while double click it.

    


    I check my program with DLL dependencies tool, it shows the program try to find DXVA2CreateDirect3DDeviceManager9 in avcodec.dll. It is impossible to find that function definitely.

    


    I also saw someone has the same problem with me.
The procedure entry point could not be located in the dynamic link library - looking in wrong DLL

    


    This post solve me problem, but why ?

    


  • BASH : how to make timecode calculations

    31 décembre 2014, par Roger

    I wish to know how to calculate the difference among two video timecodes tha are in frames (in this case, a second equals 30 frames).

    Let say the point A is 600 (00:00:02) and the point B is 120 (00:00:04).

    How can I calculate the difference among pont A and B and echo the result in the 00:00:00.00 format (h:m:s) using bash ?


    UPDATE :

    This is perfection : http://www.1728.com/angle.htm

  • Republish RTMP or RTSP stream to Windows Media Services

    25 novembre 2016, par Ioannis Kokkinis

    I would like a definite answer on if it is possible to republish an RTMP stream to a windows media services publishing point with any free software (preferably ffmpeg).If yes, how ? This point can be a smooth streaming publishing point or the older version of media services.

    for the smooth streaming scenario there is some information on the internet, but no real answers or working examples on how it was achieved. People suggest to use ffmpeg this way :

    ffmpeg -re -i rtmp://xxx.xxx.xxx.xxx:1935/application/stream  -movflags isml+frag_keyframe -f ismv -threads 0 -acodec copy -vcodec copy 'http://xxx.xxx.xxx.xxx/publishpoint_name.isml/Streams(video)'

    This ofcourse requires for the the source video to be h264 and source audio to be aac. also requires that you have setup IIS and installed the smooth streaming web component and have setup a push publishing point with the name "publishpoint_name" (not sure if the isml is needed)

    The above does not work for me, and information is scarce on the internet.