Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (57)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

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

  • Finding the time of a thumbnail in a video

    10 mai 2013, par Liam

    I have a large set of pre-generated thumbnails and videos. What is the easiest way to figure out the specific time in the video of the associated thumbnail ?

    I'd imagine that I would have to use something to loop through all the frames in a video to find a match. What libraries should I use ? Something like OpenCV maybe ? ffmpeg ?

    Python is preferred but not required.

  • Merge commit ’c9527bf3444c5332fa04931d32997308784fc862’

    23 mars 2017, par Clément Bœsch
    Merge commit ’c9527bf3444c5332fa04931d32997308784fc862’
    

    * commit ’c9527bf3444c5332fa04931d32997308784fc862’ :
    Make the RELEASE file match with the most recent tag

    This commit is noop.

    Merged-by : Clément Bœsch <u@pkh.me>

  • Line 1 : unknown keyword ' file' ffmpeg

    6 janvier 2024, par pops64

    I am trying to run a concation of multiple files using ffmpeg. Followed directions in docs and getting

    &#xA;

    Line 1: unknown keyword &#x27;file&#x27;&#xA;[in#0 @ 000001b09b25e840] Error opening input: Invalid data found when processing input&#xA;Error opening input file mylist.txt.&#xA;Error opening input files: Invalid data found when processing input&#xA;

    &#xA;

    I am not sure what is going wrong. The text file appears to be in the correct format.

    &#xA;

    $clips = Get-ChildItem -Path Y:\****\Test -File -Filter "*.mp4"&#xA;$regex = "(?:\w&#x2B;)-(?:[i]&#x2B;-)?(?\d&#x2B;)-(?\d&#x2B;)-(?:\w&#x2B;)"&#xA;$groupedScenes = $clips | Group-Object {[regex]::Match($_.Name, $regex).Groups["scene_id"].value}&#xA;foreach($scene in $groupedScenes)&#xA;{&#xA;    $sortedScene = $scene.Group | Sort-Object {[regex]::Match($_.Name, $regex).Groups["clip_id"].value -as [int]} &#xA;    foreach($i in $sortedScene) &#xA;    {&#xA;        "file &#x27;Y:\*****\Test\$i&#x27;" | Out-File mylist.txt -Encoding utf8 -Append&#xA;    }&#xA;    .\ffmpeg.exe -f concat -safe 0 -i mylist.txt -map 0 -c:v hevc_amf -quality quality -rc cqp -qp_p 26 -qp_i 26 -c:a aac -b:a 128K -y Y:\*****\Test\Procssed\$sortedScene.mp4&#xA;    Remove-Item mylist.txt&#xA;}&#xA;

    &#xA;