Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (53)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (7963)

  • Intel QuickSync and Nvenc at same Time on Ubuntu Server

    15 mai 2019, par Ahmet Gürer

    Im setting up a new Ubuntu Server with an Intel i7 6700k and Nvidia Gpu 1080ti. Is it possible to use Intel iGPU and Nvidia Gpu at same time on transcoding ?

    Example :
    Stream 1 transcoding with iGPU
    Stream 2 transcoding with nvenc

    I will use it at same time. Is that possible ?

    • I Installed Nvidia Cuda Drivers and Intel SDK
    • Activated iGPU and Nvidia GPU
    • Try to start with iGPU but get the error that Driver not found
  • Anomalie #3506 (Nouveau) : jeu de caractères (charset) d’une connexion SQL externe

    18 juillet 2015, par Fil Up

    Lorsqu’on définit une connexion vers une base MySQL externe (non spip), on pouvait préciser une connexion en utf-8 en appliquant la recette suivante dans config/toto.php :

    ```
    spip_connect_db(…) ;
    mysql_query("SET NAMES ’utf8’") ;
    ```

    Avec le passe à mysqli ceci n’est plus fonctionnel et il faut remplacer par :
    ```
    $a = spip_connect_db(…) ;
    mysqli_query($a["link"], "SET NAMES ’utf8’") ;
    ```

    Comme on voit on a d’une part une régression, d’autre part une complication supplémentaire. Je crois que ça milite pour l’inclusion d’un nouveau paramètre dans `spip_connect_db`, qui permette de définir des options (charset de connexion, charset du contenu…). Pour faire simple, peut-être un énième paramètre sous forme de tableau nommé ?

    Je mets 3.1 car il s’agit d’une régression, mais si on le résout pas, avec un peu de doc ça ne sera pas gravissime.

  • find matching files using a.bat script and assign them to a variable ?

    2 octobre 2019, par A Person

    I am trying to assign a file to a variable in batch-file and then also assign anoter 2 files into anoter variable.

    However, i am having an issue.

    From research, i found how i can do the assigning but does anyone know how i can do the below.

    From a folder or text file (either is fine) find the .m2v video file and assign that to Var1 then find matching audio in .wav and put that in Var2 and the third is also an audio .wav with mathcing name and assign that to Var3.

    Problem i am having is that trying to find the matching 2 audio file to the video.

    The video file is named as PAV_PRG_13683Highc450277201906251802090353.m2v

    Audio 1 is : PAV_PRG_13683High01c450211201906251802090376.wav

    Audio 2 is : PAV_PRG_13683High00c450211201906251802090368.wav

    the file name matches until it sees the word High. Everything after High is not needed and is random string so trying to match is an issue.

    is there a way to find the match by comparing everything before High.

    Also as i will be using the variable and putting them through ffmpeg to merge, is there way to do it so that when the ffmpeg command is done, it moves to the next matching files and assigns them to the variable.

    files are store in 2 folders

    One folder has all the video files *.m2v

    and another folder has all the *.wav audio files in pairs of 2. Each video has exactly 2 audios (left right audio)

    is there any hel pon this subject, i have already come up empty in my research and have been checking for this over the last week spent almost 30 hours.