Recherche avancée

Médias (91)

Autres articles (39)

  • 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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

  • lavc/ccaption_dec : implement special and extended character sets

    15 février 2016, par Aman Gupta
    lavc/ccaption_dec : implement special and extended character sets
    

    character sets implemented as defined in https://en.wikipedia.org/wiki/EIA-608#Characters

    • [DH] libavcodec/ccaption_dec.c
  • mov : allocate the tag value dynamically

    29 novembre 2014, par Thilo Borgmann
    mov : allocate the tag value dynamically
    

    This allows to load metadata entries longer than 1024 bytes.
    Displaying them is still limited to 1024 characters, but applications
    can load them fully now.

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DBH] libavformat/mov.c
  • ffmpeg eats up / cannot read variable names from script

    14 avril 2022, par mcExchange

    The following text file ("myTextFile.txt") is used to cut a video into chunks

    &#xA;

    00:00:00.0 video_name_1.mp4&#xA;00:10:00.1 video_name_2.mp4&#xA;00:20:00.1 video_name_3.mp4&#xA;

    &#xA;

    First columns are time stamps of cutting points [HH:MM:SS.millis].

    &#xA;

    I use the following command to read the txt file and cut a video called "input_video.mp4" into clips of 10 seconds each

    &#xA;

    while read line ; do &#xA;  start_time=$(echo $line | cut -d&#x27; &#x27; -f1);&#xA;  output_name=$(echo $line | cut -d&#x27; &#x27; -f2);&#xA;  ffmpeg -ss $start_time -t 00:00:10.0 -i input_video.mp4 ${output_name}; &#xA;done &lt; myTextFile.txt&#xA;

    &#xA;

    but it's not working. The output filenames are corrupt and I don't know why. I'm not using any special characters in the output filenames. Why is this happening ?

    &#xA;

    My current work around is printing the last line ("ffmpeg ...") into the console and then paste all commands into the console command and thereby executing them...

    &#xA;