Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (52)

  • 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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (8700)

  • ffmpeg batch retains old filetype in name

    3 juin 2018, par InsertDisplayNameHere

    I’m using the following ffmpeg script to convert all .mp4 files in the folder to .webm.

    for %%A IN (*.mp4) DO ffmpeg -i "%%A" -c:v libvpx -crf 4 -b:v 3M -c:a libvorbis "%%A.webm"

    I am trying to make it go from "xxx.mp4" to "xxx.webm"

    However when I run the script the file name goes from "xxx.mp4" to "xxx.mp4.webm"

    Any suggestions are highly appreciated.

  • ffmpeg batch retains old filetype in name

    8 février 2015, par InsertDisplayNameHere

    I’m using the following ffmpeg script to convert all .mp4 files in the folder to .webm.

    for %%A IN (*.mp4) DO ffmpeg -i "%%A" -c:v libvpx -crf 4 -b:v 3M -c:a libvorbis "%%A.webm"

    I am trying to make it go from "xxx.mp4" to "xxx.webm"

    However when I run the script the file name goes from "xxx.mp4" to "xxx.mp4.webm"

    Any suggestions are highly appreciated.

  • Questions about shared objects through multithreading (Feat. FFmpeg)

    24 juillet 2018, par Junburg

    I am now working on the ability to combine cut and cut files every time a user requests a sound recording and a recorded file. Each time a user request comes in, a new thread performs the above process. But FFmpeg can only issue one command at a time, which is a problem.

    Here are some of the reasons I found : Creates a string array for the next command when the thread that is processing the command breaks the finish callback. In the meantime, it seems to be running FFmpeg on another thread. I tried to synchronize the getInstance method of FFmpeg to synchronize, or synchronized to the execute method, but the error was not resolved. How do you handle FFmpeg’s execute ? How do you approach it ?

    If there is anyone you know, I would like to thank you for your encouragement.

    Use open source library : https://github.com/WritingMinds/ffmpeg-android-java

    I can not post the code because of the character limit ...
    The onFinish callback is fired when you run the command to truncate the original mr file. At this time, we also perform a command to cut the voice of the singer. And once again the onFinish callback pops up, the user performs the task of joining the voice singer voice mr. It seems that other threads use FFmpeg between defining the command.