Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (63)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • 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

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

Sur d’autres sites (9557)

  • How to batch process with ffmpeg script, but do each step in a loop instead of two stages

    14 mai 2024, par Matt

    I'm a novice script editor. I convert MOV/AVI video files to MP4 format using a script with ffmpeg and then move the files after processing :

    


    for f in *.mov; do ffmpeg -y -i "$f" "${f%}.mp4"; done

mv -f *.mov /Users/me/Videos/mov
mv -f *.MOV /Users/me/Videos/mov
mv -f *.avi /Users/me/Videos/avi
mv -f *.AVI /Users/me/Videos/avi


    


      

    1. Currently the script converts all videos, then moves them all to the other folders. Please how can the script be adjusted so that each video is moved immediately after processing (instead of waiting until all are complete) ? This would be a great improvement, as sometimes there are a lot of videos and the script gets interrupted for some reason (not a fault of the script). It will make it easier to monitor progress.

      


    2. 


    3. Currently I manually tweak the first line changing *.mov for *.avi Please is there an easy way to handle either video file format/extension, within the same line ?

      


    4. 


    5. Is there a better way of handling the mv statements which have multiple lines for lower/uppercase ? They also give error if there are no files of that type.

      


    6. 


    


    Thank you

    


    The above script is functional but will be better with enhancements or changes.

    


  • libavutil/fifo : Fix fifo grow step

    3 juin 2016, par Jan Sebechlebsky
    libavutil/fifo : Fix fifo grow step
    

    Fifo was reallocating always to twice of the requested size.
    This fixes it to reallocate to requested size, or twice of the
    original size - whichever is greater.

    Signed-off-by : Jan Sebechlebsky <sebechlebskyjan@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/fifo.c
  • Trying to link Mingw-w64 compiled FFMpeg libraries in Visual Studio

    16 juin 2014, par LostBoy

    I’m trying to use the FFMpeg libraries in a Windows application. I use MingW-w64 to compile FFMpeg with static libraries with architecture once with x86 and once with x86_64.
    Currently I’m trying to link the 32bit x86 libraries with my VS2008 application.
    The libraries are added to the library path and VS does not complain about being unable to load a .a file.

    However I get several uneresolved symbol errors like
    ait_rtp_receiver.lib(ait_decoder_lib.obj) : error LNK2001 : unresolved external symbol _av_free

    I import the FFMpeg header files as extern C and I can see the symbols in the .a without the leading underscore.
    What can I do to make the name decoration of Mingw-w64’s gcc and of the VS compiler suite compatible ?