Recherche avancée

Médias (0)

Mot : - Tags -/acrobat

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

Autres articles (81)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (12438)

  • lavfi/select : unbreak compatibility with older PICT_TYPE syntax

    10 mai 2013, par Paul B Mahol
    lavfi/select : unbreak compatibility with older PICT_TYPE syntax
    

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavfilter/f_select.c
  • Select song sample rate

    22 avril 2022, par Clamarc

    I have a folder with several mp3's and I needed to separate (copy) all the 4800 hz sample rate files to another folder.

    &#xA;

    I have a folder "General Audios" and I created another one called "Audios 48000 sample rate"

    &#xA;

    I'm running the ffprobe command that returns the sample rate value of each song.. but when I try to save the value in a string to be able to use the IF and copy only the ones with 48000 hz, I get a message that the command is a command input ? what is wrong ?

    &#xA;

    md "C:\Users\%username%\Desktop\&#xC1;udios 48000 sample rate"&#xA;&#xA;cd /d "C:\Users\%username%\Desktop\&#xC1;udios Gerais"&#xA;&#xA;for %%F IN (*) do (&#xA;   ffprobe -i "%%F" -v error -show_entries stream=sample_rate ˆ&#xA;       -of default=noprint_wrappers=1:nokey=1 set %%S if %%S==48000 ˆ&#xA;          "C:\Users\%username%\Desktop\&#xC1;udios 48000 sample rate\%%F"&#xA;   )&#xA;&#xA;pause&#xA;

    &#xA;

    EDITED :&#xA;I have no more code, this is the only one, I run the ffprobe command in a folder and I select the ones that have 48000Hz to copy to another folder, that's all !?!?

    &#xA;

  • FFMPEG Select audio stream by Codec or Bitrate

    25 juillet 2018, par CRS

    I’m trying to convert some TV recorded videos with ffmpeg.
    Target format should be : MP4/H264/AAC
    Most movies are in TS/MPEG2/MPEG2 audio

    Some movies also have an AC3 stereo or AC3 surround track.

    I want the ffmpeg to always prefer the AC3 track as a source if it exists because this usually has a better quality. If the Video is multichannel, that works anyway since ffmpeg automatically selects the track with the most channels. But if it is only 2 channels, often the MPEG2 Audio Track is used.

    Of course, I could achieve that for each movie individually with the map option, but I want to convert a few hundred movies by batch and the stream IDs are mixed thoroughly so I want ffmpeg to automatically select either the AC3 Track or the Track with the highest bitrate for conversion.

    Another Solution would be : Always convert the MPEG Stream to AAC and copy the AC3 one to the output file if it exists. I just don’t want to lose the AC3 Stream.