Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (83)

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

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (6107)

  • Bad quality video after watermarking with ffmpeg with live video

    16 juillet 2014, par user3478006

    Im using ffmpeg to re-stream, only thing is im trying to add a watermark as well, here is my code :

    ffmpeg -i - -isync -maxrate 300k -vcodec copy -b 150k -acodec copy -b 48k -s 640x380 -vcodec libx264 -preset veryfast -vf "movie=img.png [watermark] ; [in][watermark] overlay=10:10 [out]" -f flv "rtmp ://xxx.xxx.xxx/live/stream flashver=FME/3.0\20(compatible ;\20FMSc/1.0)"

    The problem im getting is that the quality of the stream is terrible, compltetly unwatchable, audio is great but the video quality is madly bad, so how would i improve it please, im useless at this type of thing so if someone could give me the full code id be ever so grateful,

  • creating simple DVD structure ?

    24 mars 2016, par Rambo Actionha

    I’m trying to make a DVD builder using C# , and I know that DVD’s have a specific structure which I tried to find and I couldn’t see any thing helpful , however , I found some half-completed posts about this structure , which indicate the following :

    • all DVD videos must be in ’.VOB’ format
    • all DVD Videos must be in a folder named "VIDEO_TS" and DVD audios in a folder named "AUDIO_TS" (specifically)
    • "VIDEO_T" and "AUDIO_TS" must be burned to a DVD disk that follows a special filesystem called [UDF][1]

    My question is If I managed to convert my video to suitable ".VOB" format , then I burn it to a disk after adding it to those folders , would it be playable in any DVD player ? I mean is this enough to have a simple DVD disk , and if it wouldn’t .. what would be the simplest DVD structure I can make ( without menus and chapters and other extra stuff ) ? any links related to DVD would be great

  • Find videos that have certain audio encoding and re encode

    24 septembre 2017, par bdrilling33

    I when i download movies, sometimes they are downloaded in the wrong audio format (my player cant play it) i would like to create a script that is ran on a schedule that would loop through all my movies, fetching the Audio codec and checking to see if its DTS (or any variation of), if found, use FFMPEG to re encode the audio only to something else (AAC/AA3)

    I did this to start with, but had to use other means to find the audio codec, then put all the movies in a folder and run the script from there. below is what i ran (on Windows 8.1 machine) :

    set mypath=S:\Blu Ray\New folder\New folder\%f

    FOR %f IN (*.mkv) DO ffmpeg -i “%f” -vcodec copy -scodec copy -acodec ac3 -b:a 640k “%mypath%"

    Any help would be great !!!

    BD