Recherche avancée

Médias (91)

Autres articles (90)

  • 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

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

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

Sur d’autres sites (4518)

  • avcodec/fic : Check available input space for cursor

    5 mai 2018, par Michael Niedermayer
    avcodec/fic : Check available input space for cursor
    

    Fixes : out of array read
    Fixes : 6546/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FIC_fuzzer-6317064647081984

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/fic.c
  • ffmpeg programatically set the export date to download date using python

    16 janvier 2021, par Vladimir Tarasov

    i'm currently using the code below to export a youtube-dl converted video (with ffmpeg and youtube-dl for python)&#xA;how could i programatically set the good options for ffmpeg to add the download date (at least today's date) to the .mp3 file ?

    &#xA;

    ydl_opts = {&#xA;    &#x27;format&#x27;: &#x27;bestaudio/best&#x27;,&#xA;    &#x27;outtmpl&#x27;: path &#x2B; urlToTitleYT(link) &#x2B; &#x27;.mp3&#x27;,&#xA;    &#x27;postprocessors&#x27;: [{&#xA;        &#x27;key&#x27;: &#x27;FFmpegExtractAudio&#x27;,&#xA;        &#x27;preferredcodec&#x27;: &#x27;mp3&#x27;,&#xA;        &#x27;preferredquality&#x27;: &#x27;320&#x27;,&#xA;    }],&#xA;}&#xA;&#xA;with youtube_dl.YoutubeDL(ydl_opts) as ydl:&#xA;    ydl.download([link])&#xA;&#xA;

    &#xA;

  • Special Characters are becoming ambiguous when using mencoder or ffmpeg

    10 janvier 2014, par mmuratusta

    i have subtitles encoded in iso-8859-1 at least thats what file -bi says..

    They have turkish special characters such as ğ,ü,ş,ç,ö.. When i try this command

    mencoder source.avi -sub source.srt -o output.avi -oac copy -ovc lavc \
     -lavcopts vbitrate=1200

    Turkish characters either is not showing or becoming ambiguous. Also i have tried to iconv to convert character encoding to utf-8 also didn't work.

    I have tried ffmpeg with -sub_charenc iso-8859-1, -sub_charenc cp1254, -sub_charenc&nbsp;iso-8859-9

    they all didn't work when i tried to make .ass file like this

    ffmpeg -sub_charenc utf8 -i test.srt test1.srt

    it showed subtitle lines ok on the screen. So i know that it can read lines but i couldn't render video with iso-8859-9(inc. turkish characters) subtitle.

    Is someone has any idea how can i do it ? People who have done it for their own language may help too. I mean i know that german and spanish has their own special characters.