Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (67)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (8850)

  • ffbuild/common : Make deletion of templates possible

    28 janvier 2021, par Andreas Rheinhardt
    ffbuild/common : Make deletion of templates possible
    

    If a target to be built includes a template file, the target's .d file
    includes the template file as a prerequisite ; if the code were changed so
    that the template file no longer exists, one would get an error from
    make that it has no rule for the template file target. Therefore add a
    dummy rule for template files to make deleting them possible.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] ffbuild/common.mak
  • Get rtsp udp streaming with ffmpeg utility failed

    16 février 2021, par Lidor Abo

    Hey there,&#xA;I have a problem with get streaming from wowza stream engine as described below :&#xA;I try to get streaming in private network from wowza stream engine in UDP with ffmpeg as following :&#xA;ffmpeg -loglevel debug -rtsp_transport udp -i "rtsp ://192.168.8.117:1935/live/ecad838c-b431-4c8b-b2e8-d43f78a8d2f2.stream" -acodec copy -vcodec copy test.mp4&#xA;and i get the following error :&#xA;rtsp ://192.168.8.117:1935/live/ecad838c-b431-4c8b-b2e8-d43f78a8d2f2.stream : Connection timed out&#xA;Few remarks about that :

    &#xA;

      &#xA;
    1. When i try to get streaming using public ip with ffmpeg utility i success in UDP and TCP
    2. &#xA;

    3. I success to get streaming with private IP with TCP connection through ffmpeg utility as following :&#xA;ffmpeg -loglevel debug -rtsp_transport tcp -i "rtsp ://192.168.8.117:1935/live/ecad838c-b431-4c8b-b2e8-d43f78a8d2f2.stream" -acodec copy -vcodec copy test.mp4
    4. &#xA;

    5. I open 1935 UDP and TCP ports in security group of wowza stream engine for machines that will need to get streaming from wowza stream engine. Also, i opened UDP in 6970-9999 range for any ip address.
    6. &#xA;

    7. I added relevant IP address in Whitelist property in Server.xml conf in wowza stream engine.
    8. &#xA;

    9. I using vpn service (perimeter) to access the machine that from it i get streaming from wowza streaming engine.
    10. &#xA;

    11. iptables in machine that i try to get stream allow any rule and not enabled any firewall.&#xA;Note : i adding link to zip file with logs and config files because is not me your upload limitations :
    12. &#xA;

    &#xA;

  • Link FFmpeg with CMake on Windows

    6 juillet 2021, par ldall03

    I'm new to CMake and I've been scratching my heads for a couple of days on this. I downloaded the FFmpeg source code and built it without issues. I got a lib folder and an include folder which I placed in my project structure :

    &#xA;

    project&#xA;   \--- build&#xA;   \--- dep&#xA;      \---ffmpeg&#xA;         \--- include&#xA;         \--- lib&#xA;   main.cpp&#xA;   CMakeLists.txt&#xA;

    &#xA;

    Here is my CMakeLists.txt :

    &#xA;

    cmake_minimum_required(VERSION 3.19)&#xA;project(VidShare)&#xA;&#xA;set(CMAKE_CXX_STANDARD 17)&#xA;set(CMAKE_INCLUDE_CURRENT_DIR ON)&#xA;set(CMAKE_CXX_STANDARD_REQUIRED ON)&#xA;&#xA;add_executable(VidShare main.cpp)&#xA;include_directories(dep/ffmpeg/include)&#xA;target_link_libraries(VidShare&#xA;        ${CMAKE_SOURCE_DIR}/dep/ffmpeg/lib/libavformat.a&#xA;        ${CMAKE_SOURCE_DIR}/dep/ffmpeg/lib/libavcodec.a)&#xA;

    &#xA;

    and here is my main.cpp :

    &#xA;

    extern "C" {&#xA;#include "libavcodec/avcodec.h"&#xA;#include "libavformat/avformat.h"&#xA;}&#xA;&#xA;#include <iostream>&#xA;&#xA;int main() {&#xA;    AVFormatContext *pFormatContext = avformat_alloc_context();&#xA;    return 0;&#xA;}&#xA;</iostream>

    &#xA;

    As soon as I add this line of code : AVFormatContext *pFormatContext = avformat_alloc_context(); I get this error when building in CLion :

    &#xA;

    [ 50%] Linking CXX executable VidShare.exe&#xA;CMakeFiles\VidShare.dir/objects.a(main.cpp.obj): In function `main&#x27;:&#xA;D:/Users/dalla/Documents/Coding Projects/C&#x2B;&#x2B;/VidShare/main.cpp:9: undefined reference to `avformat_alloc_context&#x27;&#xA;collect2.exe: error: ld returned 1 exit status&#xA;mingw32-make.exe[3]: *** [CMakeFiles\VidShare.dir\build.make:107: VidShare.exe] Error 1&#xA;mingw32-make.exe[2]: *** [CMakeFiles\Makefile2:94: CMakeFiles/VidShare.dir/all] Error 2&#xA;mingw32-make.exe[1]: *** [CMakeFiles\Makefile2:101: CMakeFiles/VidShare.dir/rule] Error 2&#xA;mingw32-make.exe: *** [Makefile:136: VidShare] Error 2&#xA;

    &#xA;

    I'm guessing this is a linker error and that I don't know how to link it properly (might be something stupid I am missing) as avformat_alloc_context() seems to be in the header file. Anyways, I'm quite desperate and some help would be appreciated.

    &#xA;

    I am using :

    &#xA;

      &#xA;
    • MinGW
    • &#xA;

    • CLion
    • &#xA;

    • Windows 10
    • &#xA;

    • CMake
    • &#xA;

    &#xA;