Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (95)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (11740)

  • Anomalie #3024 : spip_loader.php et IE8 (oui.... les pros du C/S traditionnels l’exigent !)

    26 janvier 2014, par Franck Dalot

    Bonjour
    Je l’ajoute à ce ticket, car il est possible que cela soit le même problème.

    Spip_loader ne fonctionne pas avec IE11, je viens de faire le test en php 5.4.21 chez OVH
    Je clique sur "commencer l’installation" et le pourcentage n’apparait même pas.
    A savoir que à la racine du site, j’ai la céation d’un dossier "SPIP-branche-3.0.zip" d’une taille de 9 253 006 octets et d’un dossier commençant par zip_

    Par contre, si je lance spip_loader avec firefox 26, je n’ai aucun problème.

    Il y a aussi des notices si j’ai configurer mes options, mais bon, ça c’est autre chose.

    Cordialement, Franck

  • ffmpeg hanging when input is not demuxed

    19 janvier 2018, par Sambir

    Hi i grab streams from my stb but sometimes the stb demuxer full occupied.

    so when i try to grab a stream from the demuxer ffmpeg just hangs. I ran ffmpeg with debugger on and it seems to hang at :

    Demuxer context update while decoder is open, closing and trying to
    re-open

    What can I do for FFMPEG to stop hanging and just terminate ? it should not just wait at that stage but terminate. Is there a command to terminate when it is hanging in this state ?

    The command is just fine. When the input stream is demuxed from the decoder all works fine.

    I just want ffmpeg to terminate when it has not been started transcoding in x seconds.

    it also seem to hang at :

    Before avformat_find_stream_info() pos : 0 bytes read:80016 seeks:0
    nb_streams:3

  • Subtract a specific string from a variable in a for loop

    14 octobre 2020, par Filip

    I am making a file converter with batch using FFMPEG.

    


    I have encountered a problem when trying to subtract the name of a file from the complete link to the file to get the directory of the folder it is in so after the file is converted it can be put into that directory.

    


    Can someone advise me on how I could subtract the string from the filename variable from the string in the directory

    


    My code :

    


    @echo off
SETLOCAL ENABLEDELAYEDEXPANSION
set filetype=.flac
for /R %%a in ("*%filetype%*") do (
    set directory=%%a
    set filename=%%~na%filetype%
    set convdir=!directory:%filename%=!
    echo !convdir!
    pause
    ffmpeg -i "%%a" "convdir%%~na.wav"
    echo Converted %%a
)
echo Convertion Done!
pause