Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (34)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (6009)

  • avcodec/dca_parser : improve frame end search

    13 mai 2016, par foo86
    avcodec/dca_parser : improve frame end search
    

    Parse core frame size directly when searching for frame end instead of
    using value extracted from previous frame.

    Account for unused bits when calculating sync word distance for 14-bit
    streams to avoid alias sync detection.

    Parse EXSS frame size and skip over EXSS frame to avoid alias sync
    detection.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/dca_parser.c
  • How to scan a folder recursively in ffmpeg to check for presence of subtitles ?

    22 décembre 2022, par frosty

    I have a folder (with subfolders) of videos on my Raspberry Pi, some containing soft-embedded subtitles and some without.

    &#xA;

    I want to use ffmpeg to check for the presence of the soft-embedded subtitle, and return a result against each filename so that I can locate.

    &#xA;

    The videos may be mp4, mkv or avi.

    &#xA;

    I have been using this command successfully but in a limited way as it only works for .mp4 files and doesn't check recursively. The output is a nice list with either a 0 or 1 at the beginning of the line, where 1 means that there is no subtitle.

    &#xA;

    for f in *.mp4; do ffmpeg -i "$f" -c copy -map 0:s:0 -frames:s 1 -f null - -v 0 -hide_banner; echo $? "$f" ; done&#xA;

    &#xA;

    I have tried all manner of ways like find and -exec, read, xargs, all to no avail. The below is the closest I've got, but it doesn't deal with whitespaces properly so filenames including spaces are split over two lines and the command seems to run only one word at a time, so it fails and shows 1 for everything.

    &#xA;

    for f in `find /mnt/SSD/ | grep -E &#x27;(.mp4|.mkv|.avi)&#x27;`; do ffmpeg -i "$f" -c copy -map 0:s:0 -frames:s 1 -f null - -v 0 -hide_banner; echo $? "$f" ; done&#xA;

    &#xA;

    Any ideas what I'm doing wrong ?

    &#xA;

  • How to supply mufti filter_complex values using ffmpeg

    11 octobre 2022, par Mohammed Hamdan

    for single image being merged to video i use the following command to supply values for -filter_complex

    &#xA;

    String comand = &#x27;-y -i $videoPath -i $imagePath -filter_complex "[1:v]scale=300:300[ovrl];[0:v][ovrl]overlay=100:100" $outPutPath&#x27;;&#xA;

    &#xA;

    but what if i want merge more than one image (input) ?

    &#xA;

    How do we make a certain distinction for each input except $videoPath ?

    &#xA;

    String comand = &#x27;-y -i $videoPath -i $imagePath1 i $imagePath2 i $imagePath3  $outPutPath4&#x27;;&#xA;

    &#xA;

    How could i supply difference scale overlay rotate values for each input which is for $imagePath1 $imagePath2 $imagePath3 $imagePath4

    &#xA;

    in other word : evry input has it's own filter values ?

    &#xA;

    to be honest i have no idea what does [1:v] means but After several attempts, I was able to get successful command (my first command in my qwestion) to give values for one entry, and this was successful , but couldn't do it for many inputs

    &#xA;