
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (107)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (11824)
-
pod mobile-ffmpeg-full (4.2.2) : installation issues, does anyone know how to fix this error ?
11 janvier 2020, par João PauloCOMMAND USED
$ pod installERROR RESULT
Analyzing dependencies
Downloading dependencies
Installing mobile-ffmpeg-full (4.2.2)[!] Error installing mobile-ffmpeg-full
[!] /usr/bin/curl -f -L -o /var/folders/vn/r7ghkzmn67114_hn0knf3jt30000rs/T/d20200111-2077-qf6xcl/file.zip https://github.com/tanersener/mobile-ffmpeg/releases/download/v4.2.2/mobile-ffmpeg-full-4.2.2-ios-framework.zip —create-dirs —netrc-optional —retry 2% Total % Received % Xferd AverageDload SpeedUpload TimeTotal TimeSpent TimeLeft CurrentSpeed
100 633 0 633 0 0 1063 0 — :— :— — :— :— — :— :— 1063
3 143M 3 5380k 0 0 14074 0 2:57:36 0:06:31 2:51:05 0
curl : (56) LibreSSL SSL_read : SSL_ERROR_SYSCALL, errno 54
FORM THAT WAS WRITTEN IN THE PODFILE
pod ’mobile-ffmpeg-full’, ’ > 4.2.2’ -
Consume FFmpeg XCFramework from Objective-C, headers not found
19 novembre 2020, par jamoneI built FFmpeg for Apple's platforms as an XCFramework. I used the script in https://github.com/kewlbear/FFmpeg-iOS-build-script/pull/147 to do so.



I'm trying to now consume that framework inside a traditional iOS/macOS framework (named VideoEditing), that then is used inside my iOS app (soon to try and be Catalyst).



In
VideoEditing
I have linked toFFmpeg.xcframework
and then in the app that usesVideoEditing
I have linked & embeddedFFmpeg.xcframework
. Previously I was building FFmpeg as a standard static library, and using that from insideVideoEditing
in a Objective-C++ wrapper so I can use it all from Swift.


In that Objective-C++ file I would import FFmpeg headers like
#import <libswscale></libswscale>swscale.h>
To make that work, I had to set header search paths. How are you supposed to do it once you convert to the XCFramework ? I've tried@import FFmpeg
,#import <ffmpeg></ffmpeg>libswscale/swscale.h>
,#import <ffmpeg></ffmpeg>swscale.h>
as well as#import <libswscale></libswscale>swscale.h>
. In every case I just get afile not found
error on theimport
line.


All of Apple's examples are showing it just in Swift with the framework vending a module. If I was to try and still set a header search path, you now have different headers per architecture.





-
Shell command error with XAMPP on Yosemite - dyld : Symbol not found : _sqlite3_intarray_bind
17 juin 2015, par HyperionI’m trying to run a simple shell command with PHP. I’m using XAMPP on OS X Yosemite, this is my script
<?php
$output = shell_exec(PHP_BINDIR.'/ffmpeg 2>&1');
echo "<pre>$output</pre>";
?>I’ve placed my ffmpeg executable in
/Applications/XAMPP/xamppfiles/bin
but when I run it, I got this error on the page instead of the shell output :dyld: Symbol not found: _sqlite3_intarray_bind
Referenced from: /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
Expected in: /Applications/XAMPP/xamppfiles/lib/libsqlite3.dylib
in /System/Library/Frameworks/CoreData.framework/Versions/A/CoreDataWhat this error means ? Why is involved Sqlite3 ?