Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (71)

  • 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 à (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

Sur d’autres sites (6034)

  • avcodec/dnxhdenc : check that qmax is within the supported range

    17 janvier 2014, par Michael Niedermayer
    avcodec/dnxhdenc : check that qmax is within the supported range
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/dnxhdenc.c
  • avfilter/vf_scale : use the inputs color range when its set and its not overridden

    25 juillet 2013, par Michael Niedermayer
    avfilter/vf_scale : use the inputs color range when its set and its not overridden
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavfilter/vf_scale.c
  • Segmenting .flac files with ffmpeg truncates audio but not file length

    5 avril 2022, par Yan White

    I am trying to get Twitter spaces audio (.ts) files into a format I can easily edit, on OSX.

    &#xA;

    So far I was able to convert the files in bulk to .flac with this :

    &#xA;

    for i in *.ts;&#xA;do name=`echo "$i" | cut -d&#x27;.&#x27; -f1`&#xA;echo "$name"&#xA;ffmpeg -i "$i" -sample_fmt s16 -ar 41000 "${name}.flac"&#xA;done&#xA;

    &#xA;

    That worked, and reduced the file sizes somewhat, but..&#xA;Because most of the files are around 7 hours long, my editor of choice cannot process that much audio in one file.

    &#xA;

    So I looked around and was able to find this command to segment the files into 3hr long sections.

    &#xA;

    ffmpeg -i space-1OdKrBealBqKX_0.flac -map 0 -f segment -segment_time 10800 -c copy space-1OdKrBealBqKX_0__%03d.flac&#xA;

    &#xA;

    This works, but each file contains as much empty / silent space at the end as the orginal file. That's going to be a problem for sharing with a team that will help edit these files, as each file has the original file's length and file size. There are a lot of files.&#xA;The audio segments and naming did work though.

    &#xA;

    How to truncate the actual length of the file to the audio segment ?

    &#xA;

    Caveat : I am no expert on any of these matters, I just managed to google and get this far, so if someone knows and wants to provide working code that would be very much appreciated !

    &#xA;