Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (101)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

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

  • Trying to choose first audio stream of specific language in ffmpeg using python

    3 avril 2024, par R41D

    I have .mkv files that some of them have more than 1 audio stream in the same language so i need to first map the audio streams with specific language and then use only first of them to output .mp4 file. So it would need two -map audio arguments which doesn't work in ffmpeg.

    


    I found out that i could execute ffmpeg mapping audio with that specific language and then pipe the output to another ffmpeg command that would take the first audio stream from the first ffmpeg command and do the rest of things (scaling, burning-in subtitles, encoding it to different format), but i'm not sure how to pipe that output in python's Popen and if it is even possible in windows.

    


    The solution i found with piping :
FFMPEG Pick First Audio Stream of Specific Language

    


  • doc/developer : add a code behaviour section to development policy

    24 août 2023, par Anton Khirnov
    doc/developer : add a code behaviour section to development policy
    

    Document our longstanding de facto policies on things like correctness,
    thread-safety, undefined behaviour, etc.

    • [DH] doc/developer.texi
  • IOS development uses ffmpeg to slice videos into ts files, but the playback direction is incorrect

    12 septembre 2023, par 扬巴卡

    In iOS development, I used FFmpeg to slice the recorded video into ts and m3u8, and then uploaded it to the server. However, when pulling the playback link of m3u8, the displayed video did not have the same direction as the original video. Did the rotation information of the original video be deleted during the FFmpeg slicing process ? The FFmpeg command I used was

    


    ffmpeg - y - i inputPath - c copy - bsf: v h264_ MP4Toannexb - hls_ Time 6- hls_ List_ Size 0 outPath`your text`


    


    I do not know why,anyone can help me?