Recherche avancée

Médias (91)

Autres articles (50)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (7171)

  • x265 Set max NAL/slice size via libx265

    7 juillet 2014, par Roland

    I want to send my encoded NAL packets via UDP as a fast webcam streaming program.
    Because of the MTU size, I want to set the NAL packets to a max size of around 1390 bytes.

    I’ve found another response on Stack Overflow explaining that one has to set the i_max_slice_size or something, but this was for x264. I’ve been trying to find the equivalent for x265 but I cannot see it anywhere.

    I am using the libx265 (using x265.h) library for encoding.

    Can anyone guide me in the right direction please ? All help is greatly appreciated !

  • x265 Set max NAL/slice size via libx265

    7 juillet 2014, par Roland

    I want to send my encoded NAL packets via UDP as a fast webcam streaming program.
    Because of the MTU size, I want to set the NAL packets to a max size of around 1390 bytes.

    I’ve found another response on Stack Overflow explaining that one has to set the i_max_slice_size or something, but this was for x264. I’ve been trying to find the equivalent for x265 but I cannot see it anywhere.

    I am using the libx265 (using x265.h) library for encoding.

    Can anyone guide me in the right direction please ? All help is greatly appreciated !

  • Is there a way to encode multiple audio and sub streams managed by language

    17 juillet 2020, par ScarVite

    so, i have a folder full of .mkv's, i have a one liner which can convert them all to mp4's
these new files now have multiple audio and subtitle streams, one eng, one ger one jap and for subtitles the same, is there an way with which i can easily specify use f.e. German audio and burn eng subtitles.
My One Liner :

    


    for /R %f IN (*.mkv) DO ffmpeg -i "%f" -c copy "%~nf.mp4"


    


    How would i have to modify this one Liner for it to work.
I found out that with -vf subtitles=foo.ass i can hardcode subtitles, but how do i select one audio and or subtitle stream from included with the file ?
and how would i select f.e. a audio atream but none subtitle stream

    


    I found out, that with

    


    -map 0:V -map 0:a:m:language:ger -map 0:s


    


    I can get a file with which only has the german audio files, but now i need the same for the subtitles, to only include the english ones