
Recherche avancée
Autres articles (29)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)
Sur d’autres sites (5141)
-
avfilter/vf_geq : Add support for reading sample sums and means of rectangles
6 décembre 2019, par Michael Niedermayeravfilter/vf_geq : Add support for reading sample sums and means of rectangles
This allows integrating box blur style filters in geq.
Without this computing the mean of an area in geq would have been excessivly slow
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>
-
Vcpkg building FFmpeg with libxml2
15 décembre 2019, par SubestimaFirst off all im a newbie in this area so if im asking something really stupid or non sense im sorry in advance, so lets get right to the point... im trying to add features to the ffmpeg, and by what i know i have to modify CONTROL file and portfile.cmake but as it seems its not enough i dont understand the errors and i cant get more info about this in the internet so if you could give me some info how to do it properly it would allready mean a lot to me ! i will leave the portions of code and error file
**portfile.cmake:**
if("libxml2" IN_LIST FEATURES)
set(OPTIONS "${OPTIONS} --enable-libxml2")
endif()
**CONTROL:**
Feature: libxml2
Description: Libxml2 is the XML C parser and toolkit developed for the Gnome project (but usable outside of the Gnome platform)
Build-Depends: zlib, libiconv, liblzma
**Command Prompt after (vcpkg install ffmpeg[libxml2]:x64-windows)**
CMake Error at scripts/cmake/vcpkg_execute_required_process.cmake:72 (message):
Command failed: C:/vcpkg/downloads/tools/msys2/msys64/usr/bin/bash.exe --noprofile --norc C:/vcpkg/ports/ffmpeg\build.sh C:/vcpkg/buildtrees/ffmpeg/x64-windows-rel C:/vcpkg/buildtrees/ffmpeg/src/n4.2-02d8c63f80 C:/vcpkg/packages/ffmpeg_x64-windows "--enable-asm --enable-yasm --disable-doc --enable-debug --enable-runtime-cpudetect --enable-libxml2 --disable-openssl --disable-ffmpeg --disable-ffplay --disable-ffprobe --disable-libvpx --disable-libx264 --disable-opencl --disable-lzma --disable-bzlib --enable-avresample --disable-static --enable-shared --extra-cflags=-DHAVE_UNISTD_H=0 --extra-cflags=-MD --extra-cxxflags=-MD"
Working Directory: C:/vcpkg/buildtrees/ffmpeg/x64-windows-rel
Error code: 1
See logs for more information:
C:\vcpkg\buildtrees\ffmpeg\build-x64-windows-rel-out.log
Call Stack (most recent call first):
ports/ffmpeg/portfile.cmake:197 (vcpkg_execute_required_process)
scripts/ports.cmake:94 (include)
Error: Building package ffmpeg:x64-windows failed with: BUILD_FAILED
Please ensure you're using the latest portfiles with `.\vcpkg update`, then
submit an issue at https://github.com/Microsoft/vcpkg/issues including:
Package: ffmpeg:x64-windows
Vcpkg version: 2019.09.12-nohash**strong text**
**Log Error file:**
=== CONFIGURING === ERROR: libxml-2.0 not found using pkg-config
If you think configure made a mistake, make sure you are using the latest version from Git. If the latest version fails, report the problem to the ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net. Include the log file "ffbuild/config.log" produced by configure as this will help solve the problem.Thank you for your attention,
Regards Pedro Cunha ! -
PHP FFmpeg after execution controls
3 décembre 2019, par thunderfuryI’ve checked every error handling about ffmpeg but didnt get any result in my script on localhost. What is my fault below execution ?
I’m trying to develop a script on windows platform with XAMMP. Script routine works if file does not X264 then automatically convert video to X264 mp4. Everythings ok, shell_exec and exec methods successfully convert my videos but didnt get any error or success results.
exec("C:/ffmpeg/ffmpeg.exe -i "G:/System/Stock2/resources/test/input.flv" -hide_banner -y -vcodec libx264 -preset ultrafast -b:v 1024k -bufsize 1024k -r 24 -ar 44100 -ac 2 -ab 192k "G:/System/Stock2/resources/test/output.mp4" 2>&1 ",$out,$res);
if($res===0){
// Success
}else{
// Error
}This code successfully convert video but I cant get success process on if..then area like removing input file or printing success text.
Some topics points on end of line could be blank etc but If I put a echo("test") ; after exec it doesnt work and there no errors in error log. How can I check and manupilate of older/new file after successfully converts ?
Whats wrong on that ?