Recherche avancée

Médias (0)

Mot : - Tags -/configuration

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (43)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

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

  • Findstr for multiple string patterns matching text batch or bash output in ffmpeg [duplicate]

    24 novembre 2020, par code0001

    I have a single audio only file for example “green_yellow_red.mp3”.
I have also various mp4 videos without audio with different names for example red_blue_green.mp4 pink_yellow_red.mp4 blue_red.mp4
    
The number of color strings can vary from 1 to 10. I want to output a list of videos that match at least one color string of the mp3 file and output it on a text. I want to do this for one mp3 among all the videos…And also for all mp3 against all mp4s for batch processing. I can only make list of all videos like this for now. (for %%i in (*.mp4) do @echo file '%%i') > mylist.txt
Please help me. Thank you.
P.S the color code is for description only. You can use your own naming method if the scripting would be easier in another naming system.

    


  • lavf/url : fix relative url parsing when the query string or fragment has a colon

    17 octobre 2020, par ruiquan.crq
    lavf/url : fix relative url parsing when the query string or fragment has a colon
    

    This disallows the usage of ? and # in libavformat specific scheme options
    (e.g. subfile,,start,32815239,end,0,,:video.ts) but this change was considered
    acceptable.

    Signed-off-by : ruiquan.crq <caihaoning83@gmail.com>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/tests/url.c
    • [DH] libavformat/url.c
    • [DH] tests/ref/fate/url
  • 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.

    &#xA;

    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.

    &#xA;

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

    &#xA;

    My code :

    &#xA;

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

    &#xA;