Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (104)

  • À propos des documents

    21 juin 2013, par

    Que faire quand un document ne passe pas en traitement, dont le rendu ne correspond pas aux attentes ?
    Document bloqué en file d’attente ?
    Voici une liste d’actions ordonnée et empirique possible pour tenter de débloquer la situation : Relancer le traitement du document qui ne passe pas Retenter l’insertion du document sur le site MédiaSPIP Dans le cas d’un média de type video ou audio, retravailler le média produit à l’aide d’un éditeur ou un transcodeur. Convertir le document dans un format (...)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (8075)

  • lavu/rational : add more info regarding floor(x+0.5) usage

    25 février 2016, par Ganesh Ajjanagadde
    lavu/rational : add more info regarding floor(x+0.5) usage
    

    Add some more verbose info regarding why the imprecise and slow floor(x+0.5) hack
    is used ; helpful for future maintenance.

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Ganesh Ajjanagadde <gajjanag@gmail.com>

    • [DH] libavutil/rational.c
  • mp4 files / SSTS info

    3 avril 2017, par Thomas

    I am trying to find the fastest way to get a list of all I-frames in a movie.

    So far, I tried ffprobe, but it is quite slow and I have been looking for a faster solution.

    The other option I found is using the mp4parser tool ; it outputs a file with this sectio, the SSTS info :

    -------------------------------------------------------------------------
    /moov/trak/mdia/minf/stbl/stss                              @ 0x1c152d8
     Box size: 0x44    version: 0x0    flags: 0x0
     entry_count:              0xd
       sample_number:
        0x1    0x12d    0x259    0x385    ....

    I can see that I have 13 I frames and they’re spaced 300 frames apart (from the 4 values displayed)

    Is the spacing of I frames constant through movies ? or do I need to write my own SSTS parser to get the whole list ?

  • ffmpeg - trying to add a reversed section of original video to the back (boomerang effect)

    23 janvier 2020, par sn0ep

    I have a ffmpeg command as follows which basically scales the video down to 720p. Now i want to add a section to my command which will make a concatination of the video but in reverse. So that the video will also be in a loop like this :

    0s -> 10s -> 0s

    original command :

    ffmpeg -ss 0.0 -to 10.0 -i in.mp4 -filter_complex "fps=15,scale=720:-1" -y out.mp4

    Command after my edits :

    ffmpeg -ss 0.0 -to 10.0 -i in.mp4 -filter_complex "[0:v]fps=15,scale=720:-1,reverse,fifo[r];[0:v][r] concat=n=2:v=1 [v]" -map "[v]" -y out.mp4

    When executing im getting following erorrs :

    Parsed_concat_4 @ 0x7feb89d01d40] Input link in1:v0 parameters (size 720x1280, SAR 1:1) do not match the corresponding output link in0:v0 parameters (1080x1920, SAR 1:1)
    [Parsed_concat_4 @ 0x7feb89d01d40] Failed to configure output pad on Parsed_concat_4
    Error reinitializing filters!
    Failed to inject frame into filter network: Invalid argument
    Error while processing the decoded data for stream #0:1

    I’m very new into coding advanced ffmpeg commands.