Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (98)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

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

  • libavformat/mov.c : allow QuickTime metadata to come after traks

    4 décembre 2015, par Neil Birkbeck
    libavformat/mov.c : allow QuickTime metadata to come after traks
    

    QuickTime metadata can come after trak data. Add indicator for which trak is being parsed (-1 if none) so that global metadata after the trak can be parsed.

    Signed-off-by : Neil Birkbeck <neil.birkbeck@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/isom.h
    • [DH] libavformat/mov.c
  • Android FFMPEG doesn't recognize file : protocol

    6 mai 2013, par kev

    I'm running an android ffmpeg build through the Runtime.getRuntime().exec() command
    Problem is that when i specify the input as a file i get this error :

    E/MainActivity(18168): file:/mnt/sdcard/young.flv: Protocol not found

    Initially i just specified the file name without the "file :" prefix and still get the same error. How can i specify input files ?

  • Building a CLI Batch for Windows upon usage of FFmpeg Video Conversor

    24 juillet 2020, par blueskuc

    Here what ive done for WINDOWS users :

    &#xA;

    but getting an error if any can help !

    &#xA;

    Check code :

    &#xA;

    @echo off&#xA;set /P file="Say the FILE EXTENTION.: "&#xA;&#xA;(for %i in (*.%file%) do (&#xA;    @echo ffmpeg.exe -i %i -vf scale=480:320 %i-.mp4 > %file%-em-lista.bat&#xA;    &#xA;    ))&#xA;&#xA;echo Now wait Batch File Created Started Convert, make sure having ffmpeg installed at system32&#xA;start %file%-em-lista.bat&#xA;

    &#xA;

    Also I noticed i got stucked, it does works out in CMD typed dirrecly :

    &#xA;

    Give a check, this command will enumerate all txt files at your folder :

    &#xA;

    FOR %f in (dir /b *.txt) do (echo %f)&#xA;

    &#xA;

    Guess its a not know code declaration or concatenation, im already at the 3th day trying it out of sevaral ways.

    &#xA;

    @echo off&#xA;&#xA;set /P fext="SAY VIDEO FORMAT.: "&#xA;set /P xpath="SAY FOLDER OR VIDEO LOCATION FOR BATCH CREATION.: "&#xA;set current_dir=%xpath%&#xA;&#xA;echo "Your Current Directory IS: %current_dir%"&#xA;&#xA;FOR /f %i in (dir /b *.%fext%) do (&#xA;        &#xA;        @echo ffmpeg.exe -i %i -vf scale=480:320 -v error -hwaccel cuda -hwaccel_device 0 %i.mp4 > %xext%-em-lista.bat&#xA;        &#xA;        )&#xA;echo "Starting Conversions"&#xA;start %fext%-em-lista.bat &#xA;echo Wait Conversions Finish&#xA;end&#xA;

    &#xA;

    Since yesterday : UPDATED code working Stable inside Videos Folder 24/07/20

    &#xA;

    @echo off&#xA;&#xA;echo ###Set the VideoExample.Ext you are going to converto to MP4####&#xA;&#xA;set /P file="Say the FILE EXTENTION.: "&#xA;&#xA;&#xA;REM going to make a if later for not Nvidia GC cuz of CUDA Aceleration not found in any Freeware Software REM&#xA;&#xA;(for %%i in (*.%file%) do @echo ffmpeg.exe -v error -hwaccel cuda -hwaccel_device 0  -i %%i -acodec copy -f mp4 -ac 2 -vf scale=480:320 %%i.mp4) > %file%-to-mp4-em-lista2.bat&#xA;&#xA;echo Wait Process Finish *-*&#xA;start %file%-to-mp4-em-lista2.bat&#xA;

    &#xA;

    As far now, need improvements for

    &#xA;

    Options :&#xA;[1] make a default folder for IN and OUT converted Videos&#xA;[2] make a inseted DIR-PATH workable IN and OUTPUT Videos

    &#xA;

    Videos to Audio and sort of FFMPEG options as we like.

    &#xA;