Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (106)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip 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, par

    PHP 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

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

Sur d’autres sites (12421)

  • Anomalie #4707 (Nouveau) : SPIP n’indique plus qu’une nouvelle version disponible

    29 mars 2021

    La dernière version SPIP 3.2.10 est sortie mais on ne le signale pas dans le backoffice

    si on lance le genie de mise à jour sur un SPIP 3.2.7 ou SPIP 3.2.9 par ex. on ne trouve rien.

    pourtant le fichier archives.xml semble bien renseignée avec archives/spip-v3.2.11.zip
    https://files.spip.net/spip/archives.xml

    en regardant le code, cela a l’air de coincer au niveau de la regex
    https://git.spip.net/spip/spip/src/branch/3.2/ecrire/genie/mise_a_jour.php#L123

    je ne sais pas s’il y a qqchose de mal formaté ou non.

  • ffmpeg not working in laravel controller version 7

    29 mars 2021, par Gabriel Quezada Castro

    Hello I am using Laravel Lumen in windows 10, I have installed the libraries in C:\PATHPrograms and I added environment variable and if I put ffmpeg -i C:\Users\Computer\Desktop\videos\commercial-30-seconds-nextel-2.mp4 -vcodec copy -ss 00:00:01 -t 00:00:10 output.mp4 by VIA CMD if it recognizes me and exports the video in Computer (by default, if someone tells me how to change it, great), when I put it inside my controller nothing happens and I put a dd (system ($ myvar)) to see that it prints this result and nothing prints nothing, I attach the image, please some help or other way to crop videos. That's the way I've installed it. I'm new user using ffmpeg , please help and thanks.

    


    

    

      $myvar="ffmpeg -i C:\Users\Computer\Desktop\videos\comercial-30-segundos-nextel-2.mp4 -vcodec copy -ss 00:00:15 -t 00:00:10 output.mp4";
      dd(system($myvar));

    


    


    



    variable value before doing system()

    


  • Docker build dependent on host Ubuntu version not on the actual Docker File

    26 mars 2021, par user8912375

    I'm facing an issue with my docker build.

    


    I have a dockerfile as follow :

    


    FROM python:3.6


RUN apt-get update && apt-get install -y libav-tools 
....


    


    The issue I'm facing is that I'm getting this error when building on ubuntu:20.04 LTS

    


    E: Package 'libav-tools' has no installation candidate


    


    I made some research and found out that ffmpeg should be a replacement for libav-tools

    


    FROM python:3.6


RUN apt-get update && apt-get install -y ffmpeg 
....


    


    I tried again without any issue.

    


    but when I tried to build the same image with ffmpeg on ubuntu:16.04 xenial I'm getting a message that

    


    E: Package 'ffmpeg' has no installation candidate


    


    after that, I replace the ffmpeg with libav-tools and it worked on ubuntu:16.04

    


    I'm confused now why docker build is dependant on the host ubuntu version that I'm using and not the actual dockerfile.

    


    shouldn't docker build be coherent whatever the ubuntu version I'm using.