
Recherche avancée
Autres articles (98)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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 (...) -
Installation en mode standalone
4 février 2011, parL’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
[mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...) -
XMP PHP
13 mai 2011, parDixit 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 (6717)
-
Can not find / install ffmpeg and nasm with homebrew in MacOS
8 janvier 2023, par t_pointerWhen I try to install ffmpeg using brew, I am prompted to install the “nasm” formula first. However, when I tried to install “nasm” formula, made the following error


➜ ~ brew install ffmpeg 
Running `brew update --preinstall`...
fatal: Could not resolve HEAD to a revision
==> Auto-updated Homebrew!
Updated 1 tap (homebrew/cask).
==> Updated Casks
Updated 5 casks.

Warning: No available formula with the name "nasm" (dependency of homebrew-ffmpeg/ffmpeg/ffmpeg).
==> Searching for similarly named formulae...
Error: No similarly named formulae found.
==> Searching for a previously deleted formula (in the last month)...
Error: No previously deleted formula found.
==> Searching taps on GitHub...
Error: No formulae found in taps.
➜ ~ brew install nasm
Warning: No available formula with the name "nasm".
==> Searching for similarly named formulae...
Error: No similarly named formulae found.
==> Searching for a previously deleted formula (in the last month)...
Error: No previously deleted formula found.
==> Searching taps on GitHub...
Error: No formulae found in taps.



-
Bundle FFmpeg with Qt6 application using CMake
10 janvier 2023, par AliOsmI'm trying to bundle FFmpeg with my Qt6 application that uses CMake as build system on Mac OS system (Apple chip). I tried the following :


FetchContent_Declare(
 ffmpeg
 GIT_REPOSITORY https://github.com/FFmpeg/FFmpeg.git
 GIT_TAG n5.1.2
)

FetchContent_MakeAvailable(ffmpeg)

include_directories(
 "/Volumes/ieasybooks/taqtie/build-repo-Qt_6_4_0_for_macOS-Debug/_deps/ffmpeg-src/libavutil"
 "/Volumes/ieasybooks/taqtie/build-repo-Qt_6_4_0_for_macOS-Debug/_deps/ffmpeg-src/libavcodec"
 "/Volumes/ieasybooks/taqtie/build-repo-Qt_6_4_0_for_macOS-Debug/_deps/ffmpeg-src/libavformat"
)

target_link_libraries(
 taqtie
 PRIVATE
 "/Volumes/ieasybooks/taqtie/build-repo-Qt_6_4_0_for_macOS-Debug/_deps/ffmpeg-src/libavutil/libavutil.h"
 "/Volumes/ieasybooks/taqtie/build-repo-Qt_6_4_0_for_macOS-Debug/_deps/ffmpeg-src/libavcodec/libavcodec.h"
 "/Volumes/ieasybooks/taqtie/build-repo-Qt_6_4_0_for_macOS-Debug/_deps/ffmpeg-src/libavformat/libavformat.h"
)



But when I include FFmpeg libraries like this :


extern "C" {
#ifndef __STDC_CONSTANT_MACROS
#define __STDC_CONSTANT_MACROS
#endif
#include 
}



I got the following error :


main.cpp:6:10: In included file: 'libavutil/avconfig.h' file not found



I spent like 1 month on this issue and I can't find any solution. I even asked ChatGPT :)


Do you have any idea ?


The code of the project could be found here : https://github.com/ieasybooks/taqtie.


-
ffmpeg Installation Error Through Homebrew
19 décembre 2022, par Bob BobI was looking to download ffmpeg to convert some mp4/mp3 files in python but was met with an error I could not find the solution for elsewhere.


When attempting to install ffmpeg on terminal, I was met by this error.


fatal: Could not resolve HEAD to a revision Warning: No available formula with the name "ffmpeg". ==> Searching for similarly named formulae... Error: No similarly named formulae found. ==> Searching for a previously deleted formula (in the last month)... Error: No previously deleted formula found. ==> Searching taps on GitHub... Error: No formulae found in taps.


I was expecting everything to work perfectly but obviously it hasn't. I looked into other users that had similar errors and went through what they did to solve their problems but was not able get anything to work out.