Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

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

Autres articles (84)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

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

Sur d’autres sites (8264)

  • where can one find old patches/curated versions of ffmpeg for qsv (mpeg2_qsv) ?

    10 avril 2023, par CodeCalf

    for the past year or so the mpeg2_qsv encoder in ffmpeg/libmfx has been broken due to a idr interval problem (sends only one idr frame at the start of the video rather than sending idr frames at a certain interval) i have found a solution/workaround by adding the idr-interval option defined in h264_qsv.c to the mpeg2_qsv.c provided in ffmpeg it does work but the quality of the output is subpar even after applying heavy post processing filters and i have been working on this exact platform for the past 4 years so i know for a fact that it used to work way better hence i have been trying to revert the changes made to ffmpeg in the past 1-2 years unsuccessfully as i am not able to find old patches that i could use as reference.

    


    i understand that for this problem a lot of people suggest using ffmpeg 2.8 which apparently is the best for old qsv behaviour but due to mediasdk version mismatches i haven't been able to build it successfully on any new OS after ubuntu 18.04 but i cannot use ubuntu 18.04 or below because of a hardware issue on my platform which messes with the xserver introducing a lot of weird errors if anyone has any suggestions of how i can overcome this then please help as i am all ears

    


    i am new to this website so i apologize in advance if i have made a mistake in asking this question.

    


    thank you for your patience and guidance

    


  • Absolute timestamp as MP4 start time

    14 juin 2016, par galbarm

    I’d like to store the exact start time a video was recorded on, inside its mp4 container.
    I need a millisecond accuracy (i.e. year,month,day,hour,sec,milli).
    Such an accuracy requires 8 bytes.

    The only standard way I found to store a video creation time is to use the mvhd/tkhd/mdhd boxes creation_time field.
    But according to the base media file format spec, the field only gives a granularity of seconds :

    creation_time is an integer that declares the creation time of this
    track (in seconds since midnight, Jan. 1, 1904, in UTC time)

    In version 0 the field size was 4 bytes, while in version 1 it was increased to 8 bytes. But the description remained unchanged so it can still only reflect a timestamp in up to second granularity. (for maintaining backward compatibility maybe ?)

    So finally, is there a standard way to store a single absolute timestamp with millisecond accuracy in a mp4 container ?
    If the only way to do it, is to store it as a custom metadata, is there an agreed common way to do it according to ?

  • creating thumbnail image through ffmpeg.exe

    18 septembre 2017, par Aniruddha Das

    I am creating thumbnail image(small size) from a big image. for same images it unable to create the thumbnail. if i move the image from one place to another it works.

    case :

    if image x is created in year 2000 and i tried to extract thumbnail from that and let i failed. then i moved the same image to another place and again try to extracted the thumbanil and it successfully extracted the thumbnail. even if i am again transforming the same image to the same place it is working.

    Edit : The command is :

    C:/xampp/htdocs/jcert6/seyretfiles/tools/converter/ffmpeg.exe
      -i "\\myip\knowledge base\videos\user_62\RHSSNet_Image_Library\images\Touchport_II\CD302_14_TPII_17in_PPR_Scanner.jpg"
      -y -f mjpeg -s 72x92 -vframes 1
      -an c:/xampp/htdocs/jcert6/seyretfiles/uploads/thumbnails/user_62/user_62_tz2jliomkfunsrhd1291976903_0.jpg –

    While debugging, I found that if any images do not have created date is not processed by the ffmpeg and generate error image codec parameter.

    is it possible to process images without having a create date in ffmpeg ???