Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (62)

  • 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 ;

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • 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

Sur d’autres sites (6074)

  • Split 1 video with 16 audio into 16 unique video (each with 1 audio) and push to YT + FB ?

    24 avril 2017, par Haseeb

    We have SDI input using Black Magic studio express, using just one source stream with 1 video + 16 audio channels, we want to push this stream as 16 video streams. is it possible to split this video with 16 audio into 16 unique video (each with 1 audio) and push to YT + FB ?

  • Print results at conclusion of bash 'for loop'

    4 juin 2016, par Matthew Schwarz

    I’m a beginner.
    I have a Bash script that embeds subtitles into mkv files if they exist in a directory.

    for i in *.mkv; do
       if [ -f "${i%mkv}"*"srt" ]; then
           ffmpeg -i "$i" -f srt -i "${i%mkv}"*"srt" -map 0:0 -map 0:1 -map 1:0 -c:v copy -c:a copy -c:s srt $i.output.mkv
           mv "${i%mkv}"*"srt" "${i%mkv}srt".old
           mv $i $i.old
           mv $i.output.mkv $i
       else
           echo $i "does not have srt file"
       fi
    done

    It looks for all .mkv files that have an associated .srt file and does some ffmpeg magic to it. If it does not find an associated .srt file it says that the .mkv file "does not have srt file."

    How can I make it so that at the conclusion of the for loop I get a print out of all the .mkv files that did have an .srt file and did successfully do all the other actions ?

    Thank you.

  • ffmpeg crashes for large “-filter_complex_script” inputs

    7 février 2016, par user1605871

    I’m experiencing an issue where ffmpeg seg faults for very large "-filter_complex_script" input files (roughly 3MB). The input file consists of a very large number of drawbox filters. The same processing pipeline works fine for smaller files, but seems to have an issue as the file size increases. Is there a hard limit to how large this file can be ? If so, is there a "magic number" somewhere that we can increase and re-compile from source ?

    We tried looking at core-dump of error and nothing useful came of of it. The error message is ffmpeg execution failure, that’s all we have to off of.

    Does anyone have any other thoughts or advice ?

    Thanks in advance !