Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (90)

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

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

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

Sur d’autres sites (10270)

  • ffmpeg : convert subtitles from "hdmv_pgs_subtitle" to "mov_text" (needed in MP4)

    19 avril 2024, par rgr

    Is there any way to convert subtitles from "hdmv_pgs_subtitle" to "mov_text" (needed in MP4).

    



    I try :

    



    ffmpeg.exe i "%%F" c copy -scodec mov_text "test.mp4"


    



    but I get :
Error while opening encoder for output stream #0:2 - maybe incorrect parameters
such as bit_rate, rate, width or height

    



    Stream properties :

    



    Duration: 00:01:48.14, start: 4199.920000, bitrate: 12394 kb/s
Program 1
Stream #0:0[0x1011], 169, 1/90000: Video: h264 (High), 1 reference frame (HDMV / 0x564D4448), yuv420p(top first, left), 1920x1080 (1920x1088) [SAR 1:1 DAR 16:9], 0/1, 25 fps, 25 tbr, 90k tbn, 50 tbc
Stream #0:1[0x1100], 102, 1/90000: Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz, stereo, fltp, 256 kb/s
Stream #0:2[0x1200], 35, 1/90000: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090), 1920x1080


    


  • Revision f9404f2406 : Revert "Revert "SSSE3 convolution optimization"" This reverts commit b645257121

    13 janvier 2014, par Yunqing Wang

    Changed Paths :
     Modify /vp9/common/x86/vp9_asm_stubs.c


     Add /vp9/common/x86/vp9_subpixel_8t_intrin_ssse3.c


     Modify /vp9/vp9_common.mk



    Revert "Revert "SSSE3 convolution optimization""

    This reverts commit b645257121da20b422dbbebf02aae0fc6dff95d4.

    Change-Id : I60d1bf57ae8e9eb6127f42f2d5a780124ac51b45

  • FFMpeg printing "Option pixel_format not found" when using "pix_fmt"

    25 avril 2022, par boooba

    I'm trying to do a relatively simple task - convert a video from one pixel format to another by re-encoding. This is my current command :

    


    ffmpeg -hide_banner -loglevel error -pix_fmt yuv444p -i "%1" video.mp4


    


    Where %1 is the filename. However, strangely enough, ffmpeg prints out this :

    


    Option pixel_format not found.


    


    It's in red, so it's an error. Adding -loglevel verbose does not give any more information. I'm really confused about this - I did not define any "pixel_format" option. This issue occurs both when calling this command from a batch file and directly from a cmd.exe instance.

    


    Replacing "pix_fmt" with "pixel_format" and putting pix_fmt after -i does not solve the issue.