Recherche avancée

Médias (0)

Mot : - Tags -/organisation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (89)

  • À propos des documents

    21 juin 2013, par

    Que faire quand un document ne passe pas en traitement, dont le rendu ne correspond pas aux attentes ?
    Document bloqué en file d’attente ?
    Voici une liste d’actions ordonnée et empirique possible pour tenter de débloquer la situation : Relancer le traitement du document qui ne passe pas Retenter l’insertion du document sur le site MédiaSPIP Dans le cas d’un média de type video ou audio, retravailler le média produit à l’aide d’un éditeur ou un transcodeur. Convertir le document dans un format (...)

  • 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 (...)

  • 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 (17004)

  • Running node (ffmpeg) on linux produces Error : spawn EACCES

    18 juillet 2022, par ThePinkLyan

    So I'm using a nodejs frontend app on android (Arm v7a) to run ffmpeg, especially fluent-ffmpeg, the problem here is that when I run a command the console just says "error spawn /ffmpeg eacces", yes, I moved ffmpeg to the root partition and I tried all kind of permissions to the folder and the file of ffmpeg, starting from 777 because my phone is rooted. And well, I don't know how to run the app with superuser rights.

    


    How can I solve the eacess error ?

    


  • ffmpeg.a : No such file or directory while running ccViewer iOS Swift [closed]

    22 janvier 2023, par Sarwat

    I am running a build which is available in in GitHub (https://github.com/lithium0003/ccViewer/tree/v1.4.3) to connect direct storages through RCLONE (Google Drive, OneDrive etc.)

    


    I am following steps to compile which provided GitHub ccViewer readme
how to compile :

    


    if you did not set up, run these commands.

    


    sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer/
brew install nasm
brew install yasm
prepare depencency

./chromecast.sh
cd work
./clone.sh
./build.sh
open with Xcode and compile

open workspace "ccViewer.xcworkspace"
select scheme "CryptCloudViewer" and build


    


    but I am getting ffmpeg.a not found. Please check attached images of Xcode and Command prompt.

    


    error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't open file: lib/*.a (No such file or directory)
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't open file: lib/*.a (No such file or directory)
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't open file: lib/*.a (No such file or directory)
cp: ../output/ios/include/*: No such file or directory
cp: ../output/ios/ffmpeg.a: No such file or directory
cp: ../output/simulator/include/*: No such file or directory
cp: ../output/simulator/ffmpeg.a: No such file or directory
cp: ../output/macos/include/*: No such file or directory
cp: ../output/macos/ffmpeg.a: No such file or directory


    


    enter image description here

    


  • interrupt and resume long running ffmpeg encoding

    17 octobre 2022, par simon

    When i have a longer high res video (full-hd or 4k) which are not compressed well, encoding to webm/vp9 can take very long even with a recent system due to the lack of hardware acceleration with webm/vp9.
Are there any options to interrupt an encoding with ffmpeg and resume which survives a reboot.
So i don't want to pause encoding using bg but save & stop encoding state and resume from there.

    


    The next best thing i could think of is to split the source into smaller subsets (by time) and process them and stitch results together again. But this only allows predefined interruption points and requires the split & merge to be done in addition.
On the pro side it could allow parallel processing if multithreading is not using all available cores yet.