Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (62)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • 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

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

Sur d’autres sites (7718)

  • ffmpeg : combine two or three audios into one by lowering the volume of the other

    15 juin 2016, par somya bhargava

    Want to combine some audio files eg :

    1) one long audio file which will act as a background audio
    2) some audio files which will be replaced at specific intervals
    like at 10 sec of the first one

    So final output required is
    audio-1 60 sec
    audio-2 starting from 10 sec to 20 sec with audio-1 at 0.1 volume

  • FFmpeg fade audio to volume

    27 mai 2016, par Marshall House

    I have say 5 segments of audio and i want to set each segment to a specific volume but when i concat the segments i’d like there to be a fade from previous volume to the next volume.

    I see afade filter is for simply fading in/out. I see acrossfade which would more than likely be desirable except that the video the audio will play over will not be cross-faded.

    I’m wondering if this can be done with something like aeval or if there are any good ideas out there.

    Maybe someone can explain this filter function or where to learn about the syntax :

    Fade volume after time 10 with an annihilation period of 5 seconds:
    volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
  • FFmpeg : The filename, directory name or volume label syntax is incorrect

    15 mai 2015, par m_pro_m

    I am making an app which auto-converts videos recorded from another program. I am trying to use command line to exec ffmpeg conversion. This is the command I am typing to the console :

    cmd /c "C:\Users\Mark\IdeaProjects\Converter\ffmpeg\ffmpeg.exe" -i "C:\Users\Mark\Videos\Arma 3\Arma 3 05.10.2015 - 16.27.24.06.DVR.mp4" -b:v 15M -y "C:\Users\Mark\Videos\Converted\Arma 3 05.10.2015 - 16.27.24.06.DVR.mp4.avi"

    It returns error message

    The filename, directory name or volume label syntax is incorrect

    If I run that command without cmd /c part, it works like it should. I also tried adding /s but without success.

    EDIT

    I solved the problem using Apache Commons library (Java) for executing commands in Command Line.