Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (50)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

Sur d’autres sites (7449)

  • Multiple running with executable built with pyinstaller

    2 avril 2020, par seokrae.kim

    I build my main.py to exe by pyinstaller like this.

    



    pyinstaller main.py --add-binary C:\sources\untitled\venv\Lib\site-packages\cv2\opencv_videoio_ffmpeg420_64.dll;.


    



    It is simple RTSP receiver program so it need opencv_ffmpeg binary to run.
Running command like this

    



    main.exe -address rtsp://127.0.0.1/profile1/media.smp


    



    It works I expected.
But when the process running in multiple, (I mean more than 2 same process running)
all process not responding and shutting down.

    



    I try clone whole result (dist folder content) to another folder
and run process another path but result is same. like this.

    



    D:\main1\main.exe -address rtsp://127.0.0.1/profile1/media.smp
D:\main2\main.exe -address rtsp://127.0.0.2/profile1/media.smp


    


  • Simultaneously video overlaying in ffmpeg

    30 août 2013, par Kaan Yurdakök

    i'm trying to merge 2 videos. i have one main video and one transparent video . i want to overlay the transparent video over the main video. So far i've tried this code in ffmpeg

    ffmpeg -i D:\ffmpeg\Main.mov -i D:\ffmpeg\transparent.mov -filter_complex"blend=all_mode='overlay':all_opacity=0.1" output.mp4

    this code gives me a output.mp4 but only the main video, not merging. What's wrong with that code ?

  • target_link_libraries in CMAKE using android studio 2.2.2

    22 novembre 2016, par fadi

    I am facing a weird issue and it’s difficult to know why because the compiler doesnt give any errors.

    I created a new project in android studio 2.2.2 with C++ support.
    I edited the .cpp file inside src/main/cpp and compiled the project to obtain (.so) file that i can use as a shared library. To this point everything works perfect.

    Here is where the problem occurs :

    I am trying to link prebuild shared libraries from ffmpeg. I have already build the libraries in .so format and all I need to do is link them to my .cpp file.

    To link the libraries, I opened the CMakeLists.txt inside android studio and told cmake to link those prebuild shared libraries using the following code :

    add_library(libavformat SHARED IMPORTED)

    set_target_properties(libavformat PROPERTIES IMPORTED_LOCATION  C:/Android  /SDK/MyProjects/ffmpeg_to_jpg/P3/app/src/main/jniLibs/libavformat-55.so)

    include_directories(src/main/cpp/include/)

    target_link_libraries(native-lib  libavformat)

    This code basically links libavformat to native-lib (which is created from my .cpp file)

    The linking process works fine, the reason is because the compiler doesn’t cry about any dependencies.

    However, my original shared library (native-lib) stops working, and by that I mean, I cannot call any functions from within it.

    If i remove the linking line

    target_link_libraries(native-lib  libavformat)

    The native-lib.so works fine and I can call any function from within that does not depend on libavformat.

    I am not sure what is going on, like I said the compiler doesnt issue any warnings or errors. it is almost like after the linking process the content of native-lib is overwritten by libavformat !!!!

    any ideas ?