Recherche avancée

Médias (0)

Mot : - Tags -/gis

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

Autres articles (48)

  • 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

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (8391)

  • How to make a web video editor [closed]

    3 novembre 2020, par MR_AMDEV

    I am trying to develop a video editor web script, i have tried really hard to find tutorials or scripts that provides a video editor but found none.

    


    Go information about FFMpeg library and I would use PHP(Laravel framework) and other front end languages to handle it. As i have never developed such editor it could be a bitter start for me.

    


    I have following queries :

    


      

    1. How can i have a video preview before rendering the video ?
    2. 


    3. How i am able to create the gui for the video editor ?
    4. 


    5. I know by using FFMpeg library, i would be able to handle join/cut/trim/add overlay But how i would add effects/transitions/assets to the video ?
    6. 


    


    Is there any plugin or something available that can handle the gui ? Or i have to create it from zero ?

    


    Please provide me suggestions/ideas/solutions. I would be very much grateful.

    


  • Compiling FFMpeg Error — Need to recompile something with -fPIC, but don't know where the thing is

    1er mai 2014, par nectaris

    I’m trying to compile FFMpeg with make after running ./configure --enable-shared --enable-pic, but am getting the following error, which stops completion of the compilation :

    /usr/bin/ld: libavutil/intfloat_readwrite.o: relocation R_X86_64_PC32 against undefined symbol ldexp@@GLIBC_2.2.5' can not be used when making a shared object; recompile with -fPIC
    /usr/bin/ld: final link failed: Bad value

    I know I need to recompile something with -fPIC as indicated, but I’m not sure exactly what needs to be recompiled. I know that -fPIC is an option of GCC, but again, I just need a shove in the right direction as to what actual files need to be recompiled. Or should I modify the Makefile ?

    I apologize if the answer’s right in front of me or something — this is rather new territory.

  • FFpmeg attaching album cover to the audio is not working with Rails

    10 avril 2015, par Shilpi Agrawal

    I have some audio files of web format and i want to attach some album cover to those files. My native ffmpeg command works fine in terminal.

    ffmpeg -i audio.webm -i cover.jpg -map 0:0 -map 1:0 -metadata:s:v title="Album cover" -metadata:s:v comment="Cover (Front)" out.mp3

    But when i run the same command in my rails app, its telling me this error :
    Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument.

    Any suggestions ?