Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (108)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (13548)

  • Core : removed aria-required attribute (#2012)

    12 juin 2017, par alexbokii
    Core : removed aria-required attribute (#2012)
    

    Fixes #1841

  • Unable to link FFMpeg libraries in Visual studio 2012

    29 juin 2013, par Pferd

    I have been trying to link the FFMPEG static libraries to Visual studio 2012 in c++ environment. But i get the following error.

    • Error 1 error LNK1104 : cannot open file
      'avcodec.lib' C :\Users\username\Documents\Visual Studio
      2012\Projects\ConsoleApplication5\ConsoleApplication5\LINK ConsoleApplication5

    my lib files were located in C :\Users\username\Documents\Visual Studio 2012\Projects\ConsoleApplication5\ConsoleApplication5\ExtLib\lib

    The compile seems to be fine. The command line is

    • /Yu"stdafx.h" /GS /W3 /Zc:wchar_t
      /I"C :\Users\username\Documents\Visual Studio
      2012\Projects\ConsoleApplication5\ConsoleApplication5\ExtLib\include"
      /Zi /Gm /Od /sdl /Fd"x64\Debug\vc110.pdb" /fp:precise /D "WIN32" /D
      "_DEBUG" /D "_CONSOLE" /D "_UNICODE" /D "UNICODE" /errorReport:prompt
      /WX- /Zc:forScope /RTC1 /Gd /MTd /Fa"x64\Debug\" /EHsc /nologo
      /Fo"x64\Debug\" /Fp"x64\Debug\ConsoleApplication5.pch"

    The main issue seems to be at the linking stage where I have just not been able to get VS2012 to find my ffmpeg .lib files

    The linker command line is below :

    • /OUT :"C :\Users\username\Documents\Visual Studio
      2012\Projects\ConsoleApplication5\x64\Debug\ConsoleApplication5.exe"
      /MANIFEST /NXCOMPAT /PDB :"C :\Users\username\Documents\Visual Studio
      2012\Projects\ConsoleApplication5\x64\Debug\ConsoleApplication5.pdb"
      /DYNAMICBASE "avcodec.lib" "kernel32.lib" "user32.lib" "gdi32.lib"
      "winspool.lib" "comdlg32.lib" "advapi32.lib" "shell32.lib"
      "ole32.lib" "oleaut32.lib" "uuid.lib" "odbc32.lib" "odbccp32.lib"
      /DEBUG /MACHINE:X64 /OPT:NOREF /INCREMENTAL
      /PGD :"C :\Users\username\Documents\Visual Studio
      2012\Projects\ConsoleApplication5\x64\Debug\ConsoleApplication5.pgd"
      /SUBSYSTEM:CONSOLE /MANIFESTUAC :"level='asInvoker' uiAccess='false'"
      /ManifestFile :"x64\Debug\ConsoleApplication5.exe.intermediate.manifest"
      /ERRORREPORT:PROMPT /NOLOGO
      /LIBPATH :"/LIBPATH:C :\Users\username\Documents\Visual Studio
      2012\Projects\ConsoleApplication5\ConsoleApplication5\ExtLib\lib"
      /TLBID:1

    I cant figure out why the linker cant locate my ffmpeg lib files even though they are physically located in the /LIBPATH area - c :...\vs12...\ExtLib\lib

  • How to eliminate ffplay delay on local network

    17 janvier 2021, par Vigrond

    I am streaming audio from one computer to another on my local LAN.

    


    Server command :

    


    ffmpeg -re -f alsa -ac 2 -i default -fflags nobuffer -flags low_delay -sdp_file ~/sdp_stream -f rtp rtp://192.168.1.5:1234


    


    Client command :

    


    ffplay -fflags nobuffer -flags low_delay -nodisp -fast -framedrop -infbuf -protocol_whitelist rtp,file,udp sdp_stream


    


    This works with near-zero delay for a while, but after a bit the delay increases over time.

    


    My perception of delay is due to playing a youtube video or spotify on the server, and experiencing a delay on the client (both monitors in front of me).

    


    I am certain that it should be possible to set this up correctly with near zero delay on my local hardwired network, but I can't seem to find the correct setting in the ffmpeg docs.

    


    Any help appreciated.