Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (55)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (11074)

  • x264 failed to load avisynth - ubuntu 14.04

    23 juin 2015, par Shoham

    Im trying to reduce a video.mov file (taken with canon dslr).
    Im using x264 like so :

    x264 -o '/home/user/Desktop/MVI_0390.mp4'  '/home/user/Desktop/MVI_0390.MOV'

    And Im getting following error :

    avs [error]: failed to load avisynth
    raw [error]: raw input requires a resolution.
    x264 [error]: could not open input file `/home/user/Desktop/MVI_0390.MOV' via any method!

    What am I doing wrong ?

  • Anomalie #3359 (Fermé) : Syntaxes incomprises

    3 décembre 2014, par jluc -

    Quelques syntaxes sont incomprises par le compilateur spip (2 ou 3)

    Exemples :

    #SETtel,(#TEL
    #SETweb,(#WEB
    #SETmel,[(#WEB|non) (#EMAIL]
    Le message d’erreur est : "Argument manquant dans la balise SET".

    Par ailleurs, #ID_ANNONCE n’est pas interprété dans
    #URL_ACTION_AUTEUR
    ajouter_lien,
    annonce-#ID_ANNONCE-auteur-#SESSIONid_auteur-candidater,
    #SELF

    mais l’est dans
    #URL_ACTION_AUTEUR
    ajouter_lien,
    auteur-#SESSIONid_auteur-annonce-#ID_ANNONCE-candidater,
    #SELF

    Ici, il semble que c’est ok selon les types de balises utilisées en argument :
    - 2 balises avec des arguments, c’est bon.
    - 2 balises sans arguments, c’est bon.
    - une balise avec et une balise sans, c’est pas bon.

    cf http://contrib.spip.net/Erreurs-du-parseur-SPIP

  • FFMPEG on Heroku exceeds memory quota in testing

    5 juillet 2022, par Patrick Vellia

    After following this tutorial, and getting it to work locally on my own development environment, before really getting my hands dirty and working deeper on my own project implementation, I decided to push it up to Heroku to test in a staging environment.

    


    I had to have Heroku add the FFMPEG build-pack and turn on the Redis Server for ActionCable to work.

    


    I didn't link the staging to a cloud storage bucket on Google or Amazon yet, just allowed it to upload directly to the dymo disk for testing. So it would go into the storage directory as it would in development for now.

    


    the test MOV file is 186 MB in size.

    


    The system uploaded the file fine.

    


    According to the logs, it then copied the file from storage to tmp as the tutorial has us do.

    


    Then it called streamio-ffmpeg's transcode method.

    


    At this point, Heroku forcibly kills the dymo because it far exceeds the memory quota.

    


    As this is a test environment, it's only on the free tier of Heroku.

    


    I'm thinking I won't be able to directly process video projects on Heroku itself, unless I'm wrong ? Would it be better to call an API like Cloud Functions or Amazon Lambda, or spin up a Compute Engine long enough to process the FFMPEG command ?